2024-04-14T15:09:04.410 INFO:root:teuthology version: 0.0.1.dev267+g6c63784 2024-04-14T15:09:04.410 DEBUG:teuthology.run:Teuthology command: teuthology --archive /home/teuthworker/archive/teuthology-2024-04-08_20:08:14-orch-main-distro-default-smithi/7646092 --description orch/cephadm/workunits/{0-distro/ubuntu_22.04 agent/on mon_election/classic task/test_host_drain} --owner scheduled_teuthology@teuthology --name teuthology-2024-04-08_20:08:14-orch-main-distro-default-smithi --verbose -- /home/teuthworker/archive/teuthology-2024-04-08_20:08:14-orch-main-distro-default-smithi/7646092/orig.config.yaml 2024-04-14T15:09:04.440 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-14T15:09:04.534 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-04-08_20:08:14-orch-main-distro-default-smithi/7646092 branch: main description: orch/cephadm/workunits/{0-distro/ubuntu_22.04 agent/on mon_election/classic task/test_host_drain} email: ceph-qa@ceph.com first_in_suite: false job_id: '7646092' kernel: kdb: 1 sha1: distro ktype: distro last_in_suite: false machine_type: smithi name: teuthology-2024-04-08_20:08:14-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 - mons down - mon down - out of quorum sha1: a971fd5f5719038c70b817bafacd6d5400b1d888 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: a971fd5f5719038c70b817bafacd6d5400b1d888 workunit: branch: main sha1: 05c9d46e7de5db2cb434c177a6bbfc56f472d09b owner: scheduled_teuthology@teuthology priority: 950 repo: https://git.ceph.com/ceph.git roles: - - host.a - mon.a - mgr.a - osd.0 - osd.1 - - host.b - mon.b - mgr.b - osd.2 - osd.3 - - host.c - mon.c - osd.4 - osd.5 seed: 6509 sha1: a971fd5f5719038c70b817bafacd6d5400b1d888 sleep_before_teardown: 0 subset: 21/64 suite: orch suite_branch: main suite_path: /home/teuthworker/src/git.ceph.com_ceph_05c9d46e7de5db2cb434c177a6bbfc56f472d09b/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph.git suite_sha1: 05c9d46e7de5db2cb434c177a6bbfc56f472d09b targets: smithi047.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBO7OBskDcf1chVCNKbqePFjX4/i1c1ZvaemLn1FeRvHbyX02JV7pIr/l7IUflzQ2kAJMQKjWnIMDiMg8KSIrCpM= smithi110.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBBMnHOexUYtwOQMw8Mezh90X3r4brokcIxCwvADpuOJ0+jCL8yohqLqwyb+OkdQFK74JmkVBbQX8E9sCMvLtOyY= smithi138.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBJaCMVvxL05LXz2/7Yd3ga8Ts64AzQHz/6DxV5h9Ud241jbCpmxMu1uws5yM96hNh8L29kELj2CoQjcv0aIbWII= tasks: - install: null - cephadm: null - cephadm.shell: host.a: - "set -ex\nHOSTNAMES=$(ceph orch host ls --format json | jq -r '.[] | .hostname')\n\ for host in $HOSTNAMES; do\n # find the hostname for \"host.c\" which will\ \ have no mgr\n HAS_MGRS=$(ceph orch ps --hostname ${host} --format json |\ \ jq 'any(.daemon_type == \"mgr\")')\n if [ \"$HAS_MGRS\" == \"false\" ]; then\n\ \ HOST_C=\"${host}\"\n fi\ndone\n# One last thing to worry about before\ \ draining the host\n# is that the teuthology test tends to put the explicit\n\ # hostnames in the placement for the mon service.\n# We want to make sure we\ \ can drain without providing\n# --force and there is a check for the host being\ \ removed\n# being listed explicitly in the placements. Therefore,\n# we should\ \ remove it from the mon placement.\nceph orch ls mon --export > mon.yaml\n\ sed /\"$HOST_C\"/d mon.yaml > mon_adjusted.yaml\nceph orch apply -i mon_adjusted.yaml\n\ # now drain that host\nceph orch host drain $HOST_C --zap-osd-devices\n# wait\ \ for drain to complete\nHOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C)\n\ while [ \"$HOST_C_DAEMONS\" != \"No daemons reported\" ]; do\n sleep 15\n \ \ HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C)\ndone\n# we want to check\ \ the ability to remove the host from\n# the CRUSH map, so we should first verify\ \ the host is in\n# the CRUSH map.\nceph osd getcrushmap -o compiled-crushmap\n\ crushtool -d compiled-crushmap -o crushmap.txt\nCRUSH_MAP=$(cat crushmap.txt)\n\ if ! grep -q \"$HOST_C\" <<< \"$CRUSH_MAP\"; then\n printf \"Expected to see\ \ $HOST_C in CRUSH map. Saw:\\n\\n$CRUSH_MAP\"\n exit 1\nfi\n# If the drain\ \ was successful, we should be able to remove the\n# host without force with\ \ no issues. If there are still daemons\n# we will get a response telling us\ \ to drain the host and a\n# non-zero return code\nceph orch host rm $HOST_C\ \ --rm-crush-entry\n# verify we've successfully removed the host from the CRUSH\ \ map\nsleep 30\nceph osd getcrushmap -o compiled-crushmap\ncrushtool -d compiled-crushmap\ \ -o crushmap.txt\nCRUSH_MAP=$(cat crushmap.txt)\nif grep -q \"$HOST_C\" <<<\ \ \"$CRUSH_MAP\"; then\n printf \"Saw $HOST_C in CRUSH map after it should\ \ have been removed.\\n\\n$CRUSH_MAP\"\n exit 1\nfi\n" teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: main teuthology_sha1: 6c637841c215537a4502385240412f1966e0faab timestamp: 2024-04-08_20:08:14 tube: smithi user: teuthology verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2226885 2024-04-14T15:09:04.534 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_05c9d46e7de5db2cb434c177a6bbfc56f472d09b/qa; will attempt to use it 2024-04-14T15:09:04.535 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_05c9d46e7de5db2cb434c177a6bbfc56f472d09b/qa/tasks 2024-04-14T15:09:04.535 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-04-14T15:09:04.536 INFO:teuthology.task.internal:Checking packages... 2024-04-14T15:09:04.558 INFO:teuthology.task.internal:Checking packages for os_type 'ubuntu', flavor 'default' and ceph hash 'a971fd5f5719038c70b817bafacd6d5400b1d888' 2024-04-14T15:09:04.559 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-04-14T15:09:04.559 INFO:teuthology.packaging:ref: None 2024-04-14T15:09:04.559 INFO:teuthology.packaging:tag: None 2024-04-14T15:09:04.559 INFO:teuthology.packaging:branch: main 2024-04-14T15:09:04.559 INFO:teuthology.packaging:sha1: a971fd5f5719038c70b817bafacd6d5400b1d888 2024-04-14T15:09:04.559 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&ref=main 2024-04-14T15:09:04.771 INFO:teuthology.task.internal:Found packages for ceph version 19.0.0-3080-gc2d8c315-1jammy 2024-04-14T15:09:04.772 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-04-14T15:09:04.779 INFO:teuthology.task.internal:no buildpackages task found 2024-04-14T15:09:04.779 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-04-14T15:09:04.799 INFO:teuthology.task.internal:Saving configuration 2024-04-14T15:09:04.811 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-04-14T15:09:04.819 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-14T15:09:04.845 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi047.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-08_20:08:14-orch-main-distro-default-smithi/7646092', '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-14 15:02:53.319328', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAo+Fjd2vP0WP8qmDaYm0y6f4t5dFUPd17BUNe7CBFx/'} 2024-04-14T15:09:04.866 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi110.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-08_20:08:14-orch-main-distro-default-smithi/7646092', '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-14 15:02:53.316259', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMd0zqFxDqkqU1/3pvTZTxP38vsukd1XrUQ6Jl4kW/lF'} 2024-04-14T15:09:04.889 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi138.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-08_20:08:14-orch-main-distro-default-smithi/7646092', '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-14 15:02:53.317927', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAQ0uNpj3NkNlGTgrGe5kh1yOoCVqcHI+XNSK5+KTOFi'} 2024-04-14T15:09:04.889 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-04-14T15:09:04.896 INFO:teuthology.task.internal:roles: ubuntu@smithi047.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2024-04-14T15:09:04.896 INFO:teuthology.task.internal:roles: ubuntu@smithi110.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2024-04-14T15:09:04.896 INFO:teuthology.task.internal:roles: ubuntu@smithi138.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2024-04-14T15:09:04.896 INFO:teuthology.run_tasks:Running task console_log... 2024-04-14T15:09:05.008 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f32c3c7a280>, signals=[15]) 2024-04-14T15:09:05.009 INFO:teuthology.run_tasks:Running task internal.connect... 2024-04-14T15:09:05.018 INFO:teuthology.task.internal:Opening connections... 2024-04-14T15:09:05.018 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi047.front.sepia.ceph.com 2024-04-14T15:09:05.020 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi047.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-14T15:09:05.099 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi110.front.sepia.ceph.com 2024-04-14T15:09:05.100 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi110.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-14T15:09:05.176 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi138.front.sepia.ceph.com 2024-04-14T15:09:05.177 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi138.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-14T15:09:05.256 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-04-14T15:09:05.268 DEBUG:teuthology.orchestra.run.smithi047:> uname -m 2024-04-14T15:09:05.274 INFO:teuthology.orchestra.run.smithi047.stdout:x86_64 2024-04-14T15:09:05.274 DEBUG:teuthology.orchestra.run.smithi047:> cat /etc/os-release 2024-04-14T15:09:05.323 INFO:teuthology.orchestra.run.smithi047.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-04-14T15:09:05.323 INFO:teuthology.orchestra.run.smithi047.stdout:NAME="Ubuntu" 2024-04-14T15:09:05.323 INFO:teuthology.orchestra.run.smithi047.stdout:VERSION_ID="22.04" 2024-04-14T15:09:05.323 INFO:teuthology.orchestra.run.smithi047.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-04-14T15:09:05.323 INFO:teuthology.orchestra.run.smithi047.stdout:VERSION_CODENAME=jammy 2024-04-14T15:09:05.323 INFO:teuthology.orchestra.run.smithi047.stdout:ID=ubuntu 2024-04-14T15:09:05.323 INFO:teuthology.orchestra.run.smithi047.stdout:ID_LIKE=debian 2024-04-14T15:09:05.324 INFO:teuthology.orchestra.run.smithi047.stdout:HOME_URL="https://www.ubuntu.com/" 2024-04-14T15:09:05.324 INFO:teuthology.orchestra.run.smithi047.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-04-14T15:09:05.324 INFO:teuthology.orchestra.run.smithi047.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-04-14T15:09:05.324 INFO:teuthology.orchestra.run.smithi047.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-04-14T15:09:05.324 INFO:teuthology.orchestra.run.smithi047.stdout:UBUNTU_CODENAME=jammy 2024-04-14T15:09:05.324 INFO:teuthology.lock.ops:Updating smithi047.front.sepia.ceph.com on lock server 2024-04-14T15:09:05.361 DEBUG:teuthology.orchestra.run.smithi110:> uname -m 2024-04-14T15:09:05.367 INFO:teuthology.orchestra.run.smithi110.stdout:x86_64 2024-04-14T15:09:05.367 DEBUG:teuthology.orchestra.run.smithi110:> cat /etc/os-release 2024-04-14T15:09:05.416 INFO:teuthology.orchestra.run.smithi110.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-04-14T15:09:05.416 INFO:teuthology.orchestra.run.smithi110.stdout:NAME="Ubuntu" 2024-04-14T15:09:05.416 INFO:teuthology.orchestra.run.smithi110.stdout:VERSION_ID="22.04" 2024-04-14T15:09:05.416 INFO:teuthology.orchestra.run.smithi110.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-04-14T15:09:05.417 INFO:teuthology.orchestra.run.smithi110.stdout:VERSION_CODENAME=jammy 2024-04-14T15:09:05.417 INFO:teuthology.orchestra.run.smithi110.stdout:ID=ubuntu 2024-04-14T15:09:05.417 INFO:teuthology.orchestra.run.smithi110.stdout:ID_LIKE=debian 2024-04-14T15:09:05.417 INFO:teuthology.orchestra.run.smithi110.stdout:HOME_URL="https://www.ubuntu.com/" 2024-04-14T15:09:05.417 INFO:teuthology.orchestra.run.smithi110.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-04-14T15:09:05.417 INFO:teuthology.orchestra.run.smithi110.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-04-14T15:09:05.417 INFO:teuthology.orchestra.run.smithi110.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-04-14T15:09:05.417 INFO:teuthology.orchestra.run.smithi110.stdout:UBUNTU_CODENAME=jammy 2024-04-14T15:09:05.417 INFO:teuthology.lock.ops:Updating smithi110.front.sepia.ceph.com on lock server 2024-04-14T15:09:05.444 DEBUG:teuthology.orchestra.run.smithi138:> uname -m 2024-04-14T15:09:05.450 INFO:teuthology.orchestra.run.smithi138.stdout:x86_64 2024-04-14T15:09:05.450 DEBUG:teuthology.orchestra.run.smithi138:> cat /etc/os-release 2024-04-14T15:09:05.496 INFO:teuthology.orchestra.run.smithi138.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-04-14T15:09:05.496 INFO:teuthology.orchestra.run.smithi138.stdout:NAME="Ubuntu" 2024-04-14T15:09:05.496 INFO:teuthology.orchestra.run.smithi138.stdout:VERSION_ID="22.04" 2024-04-14T15:09:05.496 INFO:teuthology.orchestra.run.smithi138.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-04-14T15:09:05.496 INFO:teuthology.orchestra.run.smithi138.stdout:VERSION_CODENAME=jammy 2024-04-14T15:09:05.496 INFO:teuthology.orchestra.run.smithi138.stdout:ID=ubuntu 2024-04-14T15:09:05.497 INFO:teuthology.orchestra.run.smithi138.stdout:ID_LIKE=debian 2024-04-14T15:09:05.497 INFO:teuthology.orchestra.run.smithi138.stdout:HOME_URL="https://www.ubuntu.com/" 2024-04-14T15:09:05.497 INFO:teuthology.orchestra.run.smithi138.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-04-14T15:09:05.497 INFO:teuthology.orchestra.run.smithi138.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-04-14T15:09:05.497 INFO:teuthology.orchestra.run.smithi138.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-04-14T15:09:05.497 INFO:teuthology.orchestra.run.smithi138.stdout:UBUNTU_CODENAME=jammy 2024-04-14T15:09:05.497 INFO:teuthology.lock.ops:Updating smithi138.front.sepia.ceph.com on lock server 2024-04-14T15:09:05.527 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-04-14T15:09:05.536 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-04-14T15:09:05.548 INFO:teuthology.task.internal:Checking for old test directory... 2024-04-14T15:09:05.549 DEBUG:teuthology.orchestra.run.smithi047:> test '!' -e /home/ubuntu/cephtest 2024-04-14T15:09:05.551 DEBUG:teuthology.orchestra.run.smithi110:> test '!' -e /home/ubuntu/cephtest 2024-04-14T15:09:05.553 DEBUG:teuthology.orchestra.run.smithi138:> test '!' -e /home/ubuntu/cephtest 2024-04-14T15:09:05.558 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-04-14T15:09:05.569 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-04-14T15:09:05.570 DEBUG:teuthology.orchestra.run.smithi047:> test -z $(ls -A /var/lib/ceph) 2024-04-14T15:09:05.600 DEBUG:teuthology.orchestra.run.smithi110:> test -z $(ls -A /var/lib/ceph) 2024-04-14T15:09:05.603 DEBUG:teuthology.orchestra.run.smithi138:> test -z $(ls -A /var/lib/ceph) 2024-04-14T15:09:05.624 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-04-14T15:09:05.699 INFO:teuthology.run_tasks:Running task kernel... 2024-04-14T15:09:05.715 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-04-14T15:09:05.716 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-14T15:09:05.716 DEBUG:teuthology.orchestra.run.smithi047:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-14T15:09:05.716 DEBUG:teuthology.orchestra.run.smithi110:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-14T15:09:05.717 DEBUG:teuthology.orchestra.run.smithi138:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-14T15:09:05.722 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-14T15:09:05.722 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-14T15:09:05.723 DEBUG:teuthology.orchestra.run.smithi138:> uname -r 2024-04-14T15:09:05.723 DEBUG:teuthology.orchestra.run.smithi110:> uname -r 2024-04-14T15:09:05.724 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-14T15:09:05.724 DEBUG:teuthology.orchestra.run.smithi047:> uname -r 2024-04-14T15:09:05.769 INFO:teuthology.orchestra.run.smithi138.stdout:5.15.0-56-generic 2024-04-14T15:09:05.769 INFO:teuthology.task.kernel:Running kernel on smithi138: 5.15.0-56-generic 2024-04-14T15:09:05.769 DEBUG:teuthology.orchestra.run.smithi138:> sudo apt-get clean 2024-04-14T15:09:05.771 INFO:teuthology.orchestra.run.smithi047.stdout:5.15.0-56-generic 2024-04-14T15:09:05.771 INFO:teuthology.task.kernel:Running kernel on smithi047: 5.15.0-56-generic 2024-04-14T15:09:05.771 DEBUG:teuthology.orchestra.run.smithi047:> sudo apt-get clean 2024-04-14T15:09:05.772 INFO:teuthology.orchestra.run.smithi110.stdout:5.15.0-56-generic 2024-04-14T15:09:05.772 INFO:teuthology.task.kernel:Running kernel on smithi110: 5.15.0-56-generic 2024-04-14T15:09:05.773 DEBUG:teuthology.orchestra.run.smithi110:> sudo apt-get clean 2024-04-14T15:09:05.894 DEBUG:teuthology.orchestra.run.smithi138:> sudo apt-get update 2024-04-14T15:09:05.899 DEBUG:teuthology.orchestra.run.smithi047:> sudo apt-get update 2024-04-14T15:09:05.902 DEBUG:teuthology.orchestra.run.smithi110:> sudo apt-get update 2024-04-14T15:09:06.066 INFO:teuthology.orchestra.run.smithi110.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-14T15:09:06.081 INFO:teuthology.orchestra.run.smithi047.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-14T15:09:06.082 INFO:teuthology.orchestra.run.smithi047.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB] 2024-04-14T15:09:06.082 INFO:teuthology.orchestra.run.smithi047.stdout:Get:3 http://security.ubuntu.com/ubuntu jammy-security InRelease [110 kB] 2024-04-14T15:09:06.082 INFO:teuthology.orchestra.run.smithi110.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB] 2024-04-14T15:09:06.155 INFO:teuthology.orchestra.run.smithi110.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [109 kB] 2024-04-14T15:09:06.171 INFO:teuthology.orchestra.run.smithi047.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [109 kB] 2024-04-14T15:09:06.176 INFO:teuthology.orchestra.run.smithi110.stdout:Get:4 http://security.ubuntu.com/ubuntu jammy-security InRelease [110 kB] 2024-04-14T15:09:06.181 INFO:teuthology.orchestra.run.smithi138.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-14T15:09:06.181 INFO:teuthology.orchestra.run.smithi138.stdout:Get:2 http://security.ubuntu.com/ubuntu jammy-security InRelease [110 kB] 2024-04-14T15:09:06.231 INFO:teuthology.orchestra.run.smithi138.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB] 2024-04-14T15:09:06.310 INFO:teuthology.orchestra.run.smithi110.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [610 kB] 2024-04-14T15:09:06.319 INFO:teuthology.orchestra.run.smithi047.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [444 kB] 2024-04-14T15:09:06.393 INFO:teuthology.orchestra.run.smithi047.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1,562 kB] 2024-04-14T15:09:06.399 INFO:teuthology.orchestra.run.smithi110.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1,562 kB] 2024-04-14T15:09:06.402 INFO:teuthology.orchestra.run.smithi047.stdout:Get:7 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,343 kB] 2024-04-14T15:09:06.445 INFO:teuthology.orchestra.run.smithi110.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [297 kB] 2024-04-14T15:09:06.452 INFO:teuthology.orchestra.run.smithi110.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [16.1 kB] 2024-04-14T15:09:06.453 INFO:teuthology.orchestra.run.smithi110.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [35.7 kB] 2024-04-14T15:09:06.453 INFO:teuthology.orchestra.run.smithi110.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [1,702 kB] 2024-04-14T15:09:06.456 INFO:teuthology.orchestra.run.smithi047.stdout:Get:8 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [237 kB] 2024-04-14T15:09:06.464 INFO:teuthology.orchestra.run.smithi047.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [11.4 kB] 2024-04-14T15:09:06.465 INFO:teuthology.orchestra.run.smithi047.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [1,670 kB] 2024-04-14T15:09:06.492 INFO:teuthology.orchestra.run.smithi110.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [286 kB] 2024-04-14T15:09:06.519 INFO:teuthology.orchestra.run.smithi047.stdout:Get:11 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [34.1 kB] 2024-04-14T15:09:06.521 INFO:teuthology.orchestra.run.smithi047.stdout:Get:12 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [280 kB] 2024-04-14T15:09:06.526 INFO:teuthology.orchestra.run.smithi110.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [520 B] 2024-04-14T15:09:06.526 INFO:teuthology.orchestra.run.smithi110.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [699 kB] 2024-04-14T15:09:06.527 INFO:teuthology.orchestra.run.smithi110.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,074 kB] 2024-04-14T15:09:06.529 INFO:teuthology.orchestra.run.smithi047.stdout:Get:13 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [520 B] 2024-04-14T15:09:06.529 INFO:teuthology.orchestra.run.smithi047.stdout:Get:14 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [852 kB] 2024-04-14T15:09:06.537 INFO:teuthology.orchestra.run.smithi110.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [245 kB] 2024-04-14T15:09:06.543 INFO:teuthology.orchestra.run.smithi110.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [22.1 kB] 2024-04-14T15:09:06.548 INFO:teuthology.orchestra.run.smithi110.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [49.7 kB] 2024-04-14T15:09:06.548 INFO:teuthology.orchestra.run.smithi110.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [6,028 B] 2024-04-14T15:09:06.549 INFO:teuthology.orchestra.run.smithi110.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [12.1 kB] 2024-04-14T15:09:06.553 INFO:teuthology.orchestra.run.smithi047.stdout:Get:15 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [600 kB] 2024-04-14T15:09:06.561 INFO:teuthology.orchestra.run.smithi047.stdout:Get:16 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [163 kB] 2024-04-14T15:09:06.564 INFO:teuthology.orchestra.run.smithi047.stdout:Get:17 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [16.8 kB] 2024-04-14T15:09:06.569 INFO:teuthology.orchestra.run.smithi110.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [472 B] 2024-04-14T15:09:06.569 INFO:teuthology.orchestra.run.smithi110.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.1 kB] 2024-04-14T15:09:06.569 INFO:teuthology.orchestra.run.smithi110.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.2 kB] 2024-04-14T15:09:06.570 INFO:teuthology.orchestra.run.smithi110.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.0 kB] 2024-04-14T15:09:06.570 INFO:teuthology.orchestra.run.smithi110.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-04-14T15:09:06.572 INFO:teuthology.orchestra.run.smithi110.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.2 kB] 2024-04-14T15:09:06.572 INFO:teuthology.orchestra.run.smithi110.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.4 kB] 2024-04-14T15:09:06.586 INFO:teuthology.orchestra.run.smithi047.stdout:Get:18 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-04-14T15:09:06.586 INFO:teuthology.orchestra.run.smithi047.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [610 kB] 2024-04-14T15:09:06.587 INFO:teuthology.orchestra.run.smithi138.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [109 kB] 2024-04-14T15:09:06.587 INFO:teuthology.orchestra.run.smithi047.stdout:Get:20 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-04-14T15:09:06.587 INFO:teuthology.orchestra.run.smithi047.stdout:Get:21 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-04-14T15:09:06.588 INFO:teuthology.orchestra.run.smithi138.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,343 kB] 2024-04-14T15:09:06.591 INFO:teuthology.orchestra.run.smithi047.stdout:Get:22 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [260 B] 2024-04-14T15:09:06.592 INFO:teuthology.orchestra.run.smithi110.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.2 kB] 2024-04-14T15:09:06.592 INFO:teuthology.orchestra.run.smithi110.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [644 B] 2024-04-14T15:09:06.598 INFO:teuthology.orchestra.run.smithi047.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [297 kB] 2024-04-14T15:09:06.604 INFO:teuthology.orchestra.run.smithi047.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [16.1 kB] 2024-04-14T15:09:06.605 INFO:teuthology.orchestra.run.smithi047.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [35.7 kB] 2024-04-14T15:09:06.606 INFO:teuthology.orchestra.run.smithi047.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [1,702 kB] 2024-04-14T15:09:06.608 INFO:teuthology.orchestra.run.smithi110.stdout:Get:29 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,343 kB] 2024-04-14T15:09:06.637 INFO:teuthology.orchestra.run.smithi047.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [286 kB] 2024-04-14T15:09:06.642 INFO:teuthology.orchestra.run.smithi047.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [520 B] 2024-04-14T15:09:06.643 INFO:teuthology.orchestra.run.smithi047.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [699 kB] 2024-04-14T15:09:06.652 INFO:teuthology.orchestra.run.smithi047.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,074 kB] 2024-04-14T15:09:06.665 INFO:teuthology.orchestra.run.smithi047.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [245 kB] 2024-04-14T15:09:06.667 INFO:teuthology.orchestra.run.smithi047.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [22.1 kB] 2024-04-14T15:09:06.668 INFO:teuthology.orchestra.run.smithi047.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [6,028 B] 2024-04-14T15:09:06.668 INFO:teuthology.orchestra.run.smithi047.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [49.7 kB] 2024-04-14T15:09:06.669 INFO:teuthology.orchestra.run.smithi047.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [12.1 kB] 2024-04-14T15:09:06.689 INFO:teuthology.orchestra.run.smithi047.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [472 B] 2024-04-14T15:09:06.689 INFO:teuthology.orchestra.run.smithi047.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.1 kB] 2024-04-14T15:09:06.690 INFO:teuthology.orchestra.run.smithi047.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.2 kB] 2024-04-14T15:09:06.691 INFO:teuthology.orchestra.run.smithi047.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.0 kB] 2024-04-14T15:09:06.691 INFO:teuthology.orchestra.run.smithi047.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-04-14T15:09:06.709 INFO:teuthology.orchestra.run.smithi047.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.4 kB] 2024-04-14T15:09:06.710 INFO:teuthology.orchestra.run.smithi047.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.2 kB] 2024-04-14T15:09:06.710 INFO:teuthology.orchestra.run.smithi047.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.2 kB] 2024-04-14T15:09:06.711 INFO:teuthology.orchestra.run.smithi047.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [644 B] 2024-04-14T15:09:06.723 INFO:teuthology.orchestra.run.smithi138.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [610 kB] 2024-04-14T15:09:06.924 INFO:teuthology.orchestra.run.smithi138.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1,562 kB] 2024-04-14T15:09:07.007 INFO:teuthology.orchestra.run.smithi138.stdout:Get:8 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [444 kB] 2024-04-14T15:09:07.014 INFO:teuthology.orchestra.run.smithi110.stdout:Get:30 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [444 kB] 2024-04-14T15:09:07.025 INFO:teuthology.orchestra.run.smithi138.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [237 kB] 2024-04-14T15:09:07.032 INFO:teuthology.orchestra.run.smithi110.stdout:Get:31 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [237 kB] 2024-04-14T15:09:07.034 INFO:teuthology.orchestra.run.smithi138.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [11.4 kB] 2024-04-14T15:09:07.035 INFO:teuthology.orchestra.run.smithi138.stdout:Get:11 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [1,670 kB] 2024-04-14T15:09:07.042 INFO:teuthology.orchestra.run.smithi110.stdout:Get:32 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [11.4 kB] 2024-04-14T15:09:07.042 INFO:teuthology.orchestra.run.smithi110.stdout:Get:33 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [1,670 kB] 2024-04-14T15:09:07.072 INFO:teuthology.orchestra.run.smithi138.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [297 kB] 2024-04-14T15:09:07.086 INFO:teuthology.orchestra.run.smithi138.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [16.1 kB] 2024-04-14T15:09:07.087 INFO:teuthology.orchestra.run.smithi138.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [1,702 kB] 2024-04-14T15:09:07.127 INFO:teuthology.orchestra.run.smithi138.stdout:Get:15 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [34.1 kB] 2024-04-14T15:09:07.129 INFO:teuthology.orchestra.run.smithi138.stdout:Get:16 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [280 kB] 2024-04-14T15:09:07.134 INFO:teuthology.orchestra.run.smithi110.stdout:Get:34 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [34.1 kB] 2024-04-14T15:09:07.135 INFO:teuthology.orchestra.run.smithi110.stdout:Get:35 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [280 kB] 2024-04-14T15:09:07.139 INFO:teuthology.orchestra.run.smithi138.stdout:Get:17 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [520 B] 2024-04-14T15:09:07.146 INFO:teuthology.orchestra.run.smithi110.stdout:Get:36 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [520 B] 2024-04-14T15:09:07.146 INFO:teuthology.orchestra.run.smithi110.stdout:Get:37 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [600 kB] 2024-04-14T15:09:07.167 INFO:teuthology.orchestra.run.smithi110.stdout:Get:38 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [852 kB] 2024-04-14T15:09:07.180 INFO:teuthology.orchestra.run.smithi138.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [35.7 kB] 2024-04-14T15:09:07.180 INFO:teuthology.orchestra.run.smithi138.stdout:Get:19 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [600 kB] 2024-04-14T15:09:07.180 INFO:teuthology.orchestra.run.smithi138.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [286 kB] 2024-04-14T15:09:07.186 INFO:teuthology.orchestra.run.smithi138.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [520 B] 2024-04-14T15:09:07.190 INFO:teuthology.orchestra.run.smithi138.stdout:Get:22 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [852 kB] 2024-04-14T15:09:07.350 INFO:teuthology.orchestra.run.smithi138.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [699 kB] 2024-04-14T15:09:07.352 INFO:teuthology.orchestra.run.smithi110.stdout:Get:39 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [163 kB] 2024-04-14T15:09:07.368 INFO:teuthology.orchestra.run.smithi138.stdout:Get:24 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [163 kB] 2024-04-14T15:09:07.760 INFO:teuthology.orchestra.run.smithi110.stdout:Get:40 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [16.8 kB] 2024-04-14T15:09:07.766 INFO:teuthology.orchestra.run.smithi110.stdout:Get:41 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-04-14T15:09:07.766 INFO:teuthology.orchestra.run.smithi138.stdout:Get:25 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [16.8 kB] 2024-04-14T15:09:07.766 INFO:teuthology.orchestra.run.smithi110.stdout:Get:42 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-04-14T15:09:07.772 INFO:teuthology.orchestra.run.smithi138.stdout:Get:26 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-04-14T15:09:07.782 INFO:teuthology.orchestra.run.smithi110.stdout:Get:43 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-04-14T15:09:07.783 INFO:teuthology.orchestra.run.smithi110.stdout:Get:44 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [260 B] 2024-04-14T15:09:07.785 INFO:teuthology.orchestra.run.smithi138.stdout:Get:27 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-04-14T15:09:07.786 INFO:teuthology.orchestra.run.smithi138.stdout:Get:28 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-04-14T15:09:07.789 INFO:teuthology.orchestra.run.smithi138.stdout:Get:29 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [260 B] 2024-04-14T15:09:07.936 INFO:teuthology.orchestra.run.smithi138.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,074 kB] 2024-04-14T15:09:08.048 INFO:teuthology.orchestra.run.smithi138.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [245 kB] 2024-04-14T15:09:08.068 INFO:teuthology.orchestra.run.smithi138.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [22.1 kB] 2024-04-14T15:09:08.070 INFO:teuthology.orchestra.run.smithi138.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [49.7 kB] 2024-04-14T15:09:08.073 INFO:teuthology.orchestra.run.smithi138.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [6,028 B] 2024-04-14T15:09:08.074 INFO:teuthology.orchestra.run.smithi138.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [12.1 kB] 2024-04-14T15:09:08.075 INFO:teuthology.orchestra.run.smithi138.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [472 B] 2024-04-14T15:09:08.075 INFO:teuthology.orchestra.run.smithi138.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.2 kB] 2024-04-14T15:09:08.078 INFO:teuthology.orchestra.run.smithi138.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.1 kB] 2024-04-14T15:09:08.083 INFO:teuthology.orchestra.run.smithi138.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.0 kB] 2024-04-14T15:09:08.248 INFO:teuthology.orchestra.run.smithi138.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-04-14T15:09:08.331 INFO:teuthology.orchestra.run.smithi138.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.4 kB] 2024-04-14T15:09:08.438 INFO:teuthology.orchestra.run.smithi138.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.2 kB] 2024-04-14T15:09:08.496 INFO:teuthology.orchestra.run.smithi138.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.2 kB] 2024-04-14T15:09:08.530 INFO:teuthology.orchestra.run.smithi138.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [644 B] 2024-04-14T15:09:12.105 INFO:teuthology.orchestra.run.smithi110.stdout:Fetched 12.9 MB in 2s (7,137 kB/s) 2024-04-14T15:09:12.622 INFO:teuthology.orchestra.run.smithi047.stdout:Fetched 12.9 MB in 2s (6,795 kB/s) 2024-04-14T15:09:12.753 INFO:teuthology.orchestra.run.smithi138.stdout:Fetched 12.9 MB in 3s (5,009 kB/s) 2024-04-14T15:09:13.398 INFO:teuthology.orchestra.run.smithi110.stdout:Reading package lists... 2024-04-14T15:09:13.414 DEBUG:teuthology.orchestra.run.smithi110:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-04-14T15:09:13.465 INFO:teuthology.orchestra.run.smithi110.stdout:Reading package lists... 2024-04-14T15:09:13.647 INFO:teuthology.orchestra.run.smithi110.stdout:Building dependency tree... 2024-04-14T15:09:13.647 INFO:teuthology.orchestra.run.smithi110.stdout:Reading state information... 2024-04-14T15:09:13.807 INFO:teuthology.orchestra.run.smithi110.stdout:The following packages were automatically installed and are no longer required: 2024-04-14T15:09:13.808 INFO:teuthology.orchestra.run.smithi110.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-14T15:09:13.808 INFO:teuthology.orchestra.run.smithi110.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-14T15:09:13.808 INFO:teuthology.orchestra.run.smithi110.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-14T15:09:13.808 INFO:teuthology.orchestra.run.smithi110.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-04-14T15:09:13.809 INFO:teuthology.orchestra.run.smithi110.stdout: python2.7-minimal 2024-04-14T15:09:13.809 INFO:teuthology.orchestra.run.smithi110.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-14T15:09:13.809 INFO:teuthology.orchestra.run.smithi110.stdout:The following additional packages will be installed: 2024-04-14T15:09:13.809 INFO:teuthology.orchestra.run.smithi110.stdout: linux-generic linux-headers-5.15.0-102 linux-headers-5.15.0-102-generic 2024-04-14T15:09:13.809 INFO:teuthology.orchestra.run.smithi110.stdout: linux-headers-generic linux-image-5.15.0-102-generic 2024-04-14T15:09:13.810 INFO:teuthology.orchestra.run.smithi110.stdout: linux-modules-5.15.0-102-generic linux-modules-extra-5.15.0-102-generic 2024-04-14T15:09:13.811 INFO:teuthology.orchestra.run.smithi110.stdout:Suggested packages: 2024-04-14T15:09:13.811 INFO:teuthology.orchestra.run.smithi110.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-04-14T15:09:13.811 INFO:teuthology.orchestra.run.smithi110.stdout:Recommended packages: 2024-04-14T15:09:13.811 INFO:teuthology.orchestra.run.smithi110.stdout: thermald 2024-04-14T15:09:13.868 INFO:teuthology.orchestra.run.smithi110.stdout:The following NEW packages will be installed: 2024-04-14T15:09:13.868 INFO:teuthology.orchestra.run.smithi110.stdout: linux-headers-5.15.0-102 linux-headers-5.15.0-102-generic 2024-04-14T15:09:13.868 INFO:teuthology.orchestra.run.smithi110.stdout: linux-image-5.15.0-102-generic linux-modules-5.15.0-102-generic 2024-04-14T15:09:13.869 INFO:teuthology.orchestra.run.smithi110.stdout: linux-modules-extra-5.15.0-102-generic 2024-04-14T15:09:13.870 INFO:teuthology.orchestra.run.smithi110.stdout:The following packages will be upgraded: 2024-04-14T15:09:13.871 INFO:teuthology.orchestra.run.smithi110.stdout: linux-generic linux-headers-generic linux-image-generic 2024-04-14T15:09:13.951 INFO:teuthology.orchestra.run.smithi110.stdout:3 upgraded, 5 newly installed, 0 to remove and 313 not upgraded. 2024-04-14T15:09:13.951 INFO:teuthology.orchestra.run.smithi110.stdout:Need to get 113 MB of archives. 2024-04-14T15:09:13.951 INFO:teuthology.orchestra.run.smithi110.stdout:After this operation, 583 MB of additional disk space will be used. 2024-04-14T15:09:13.951 INFO:teuthology.orchestra.run.smithi110.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-14T15:09:14.101 INFO:teuthology.orchestra.run.smithi047.stdout:Reading package lists... 2024-04-14T15:09:14.120 DEBUG:teuthology.orchestra.run.smithi047:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-04-14T15:09:14.171 INFO:teuthology.orchestra.run.smithi138.stdout:Reading package lists... 2024-04-14T15:09:14.184 INFO:teuthology.orchestra.run.smithi047.stdout:Reading package lists... 2024-04-14T15:09:14.187 DEBUG:teuthology.orchestra.run.smithi138:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-04-14T15:09:14.247 INFO:teuthology.orchestra.run.smithi138.stdout:Reading package lists... 2024-04-14T15:09:14.387 INFO:teuthology.orchestra.run.smithi047.stdout:Building dependency tree... 2024-04-14T15:09:14.388 INFO:teuthology.orchestra.run.smithi047.stdout:Reading state information... 2024-04-14T15:09:14.443 INFO:teuthology.orchestra.run.smithi138.stdout:Building dependency tree... 2024-04-14T15:09:14.444 INFO:teuthology.orchestra.run.smithi138.stdout:Reading state information... 2024-04-14T15:09:14.568 INFO:teuthology.orchestra.run.smithi047.stdout:The following packages were automatically installed and are no longer required: 2024-04-14T15:09:14.568 INFO:teuthology.orchestra.run.smithi047.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-14T15:09:14.568 INFO:teuthology.orchestra.run.smithi047.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-14T15:09:14.569 INFO:teuthology.orchestra.run.smithi047.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-14T15:09:14.569 INFO:teuthology.orchestra.run.smithi047.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-04-14T15:09:14.569 INFO:teuthology.orchestra.run.smithi047.stdout: python2.7-minimal 2024-04-14T15:09:14.569 INFO:teuthology.orchestra.run.smithi047.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-14T15:09:14.570 INFO:teuthology.orchestra.run.smithi047.stdout:The following additional packages will be installed: 2024-04-14T15:09:14.570 INFO:teuthology.orchestra.run.smithi047.stdout: linux-generic linux-headers-5.15.0-102 linux-headers-5.15.0-102-generic 2024-04-14T15:09:14.570 INFO:teuthology.orchestra.run.smithi047.stdout: linux-headers-generic linux-image-5.15.0-102-generic 2024-04-14T15:09:14.571 INFO:teuthology.orchestra.run.smithi047.stdout: linux-modules-5.15.0-102-generic linux-modules-extra-5.15.0-102-generic 2024-04-14T15:09:14.572 INFO:teuthology.orchestra.run.smithi047.stdout:Suggested packages: 2024-04-14T15:09:14.572 INFO:teuthology.orchestra.run.smithi047.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-04-14T15:09:14.572 INFO:teuthology.orchestra.run.smithi047.stdout:Recommended packages: 2024-04-14T15:09:14.572 INFO:teuthology.orchestra.run.smithi047.stdout: thermald 2024-04-14T15:09:14.602 INFO:teuthology.orchestra.run.smithi110.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-14T15:09:14.618 INFO:teuthology.orchestra.run.smithi138.stdout:The following packages were automatically installed and are no longer required: 2024-04-14T15:09:14.618 INFO:teuthology.orchestra.run.smithi138.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-14T15:09:14.618 INFO:teuthology.orchestra.run.smithi138.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-14T15:09:14.618 INFO:teuthology.orchestra.run.smithi138.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-14T15:09:14.619 INFO:teuthology.orchestra.run.smithi138.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-04-14T15:09:14.619 INFO:teuthology.orchestra.run.smithi138.stdout: python2.7-minimal 2024-04-14T15:09:14.619 INFO:teuthology.orchestra.run.smithi138.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-14T15:09:14.620 INFO:teuthology.orchestra.run.smithi138.stdout:The following additional packages will be installed: 2024-04-14T15:09:14.620 INFO:teuthology.orchestra.run.smithi138.stdout: linux-generic linux-headers-5.15.0-102 linux-headers-5.15.0-102-generic 2024-04-14T15:09:14.620 INFO:teuthology.orchestra.run.smithi138.stdout: linux-headers-generic linux-image-5.15.0-102-generic 2024-04-14T15:09:14.620 INFO:teuthology.orchestra.run.smithi138.stdout: linux-modules-5.15.0-102-generic linux-modules-extra-5.15.0-102-generic 2024-04-14T15:09:14.622 INFO:teuthology.orchestra.run.smithi138.stdout:Suggested packages: 2024-04-14T15:09:14.622 INFO:teuthology.orchestra.run.smithi138.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-04-14T15:09:14.622 INFO:teuthology.orchestra.run.smithi138.stdout:Recommended packages: 2024-04-14T15:09:14.622 INFO:teuthology.orchestra.run.smithi138.stdout: thermald 2024-04-14T15:09:14.638 INFO:teuthology.orchestra.run.smithi047.stdout:The following NEW packages will be installed: 2024-04-14T15:09:14.638 INFO:teuthology.orchestra.run.smithi047.stdout: linux-headers-5.15.0-102 linux-headers-5.15.0-102-generic 2024-04-14T15:09:14.638 INFO:teuthology.orchestra.run.smithi047.stdout: linux-image-5.15.0-102-generic linux-modules-5.15.0-102-generic 2024-04-14T15:09:14.639 INFO:teuthology.orchestra.run.smithi047.stdout: linux-modules-extra-5.15.0-102-generic 2024-04-14T15:09:14.640 INFO:teuthology.orchestra.run.smithi047.stdout:The following packages will be upgraded: 2024-04-14T15:09:14.640 INFO:teuthology.orchestra.run.smithi047.stdout: linux-generic linux-headers-generic linux-image-generic 2024-04-14T15:09:14.678 INFO:teuthology.orchestra.run.smithi138.stdout:The following NEW packages will be installed: 2024-04-14T15:09:14.678 INFO:teuthology.orchestra.run.smithi138.stdout: linux-headers-5.15.0-102 linux-headers-5.15.0-102-generic 2024-04-14T15:09:14.678 INFO:teuthology.orchestra.run.smithi138.stdout: linux-image-5.15.0-102-generic linux-modules-5.15.0-102-generic 2024-04-14T15:09:14.679 INFO:teuthology.orchestra.run.smithi138.stdout: linux-modules-extra-5.15.0-102-generic 2024-04-14T15:09:14.680 INFO:teuthology.orchestra.run.smithi138.stdout:The following packages will be upgraded: 2024-04-14T15:09:14.681 INFO:teuthology.orchestra.run.smithi138.stdout: linux-generic linux-headers-generic linux-image-generic 2024-04-14T15:09:14.738 INFO:teuthology.orchestra.run.smithi047.stdout:3 upgraded, 5 newly installed, 0 to remove and 313 not upgraded. 2024-04-14T15:09:14.738 INFO:teuthology.orchestra.run.smithi047.stdout:Need to get 113 MB of archives. 2024-04-14T15:09:14.738 INFO:teuthology.orchestra.run.smithi047.stdout:After this operation, 583 MB of additional disk space will be used. 2024-04-14T15:09:14.738 INFO:teuthology.orchestra.run.smithi047.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-14T15:09:14.761 INFO:teuthology.orchestra.run.smithi110.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-14T15:09:14.788 INFO:teuthology.orchestra.run.smithi138.stdout:3 upgraded, 5 newly installed, 0 to remove and 313 not upgraded. 2024-04-14T15:09:14.788 INFO:teuthology.orchestra.run.smithi138.stdout:Need to get 113 MB of archives. 2024-04-14T15:09:14.788 INFO:teuthology.orchestra.run.smithi138.stdout:After this operation, 583 MB of additional disk space will be used. 2024-04-14T15:09:14.788 INFO:teuthology.orchestra.run.smithi138.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-14T15:09:15.997 INFO:teuthology.orchestra.run.smithi047.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-14T15:09:16.019 INFO:teuthology.orchestra.run.smithi138.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-14T15:09:16.423 INFO:teuthology.orchestra.run.smithi138.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-14T15:09:16.458 INFO:teuthology.orchestra.run.smithi047.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-14T15:09:16.771 INFO:teuthology.orchestra.run.smithi110.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-14T15:09:16.772 INFO:teuthology.orchestra.run.smithi110.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-14T15:09:16.772 INFO:teuthology.orchestra.run.smithi110.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-14T15:09:17.215 INFO:teuthology.orchestra.run.smithi110.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-14T15:09:17.292 INFO:teuthology.orchestra.run.smithi110.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-14T15:09:17.676 INFO:teuthology.orchestra.run.smithi110.stdout:Fetched 113 MB in 3s (33.2 MB/s) 2024-04-14T15:09:17.855 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package linux-modules-5.15.0-102-generic. 2024-04-14T15:09:18.188 INFO:teuthology.orchestra.run.smithi138.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-14T15:09:18.189 INFO:teuthology.orchestra.run.smithi138.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-14T15:09:18.189 INFO:teuthology.orchestra.run.smithi138.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-14T15:09:18.352 INFO:teuthology.orchestra.run.smithi138.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-14T15:09:18.384 INFO:teuthology.orchestra.run.smithi138.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-14T15:09:18.421 INFO:teuthology.orchestra.run.smithi047.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-14T15:09:18.421 INFO:teuthology.orchestra.run.smithi047.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-14T15:09:18.421 INFO:teuthology.orchestra.run.smithi047.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-14T15:09:18.566 INFO:teuthology.orchestra.run.smithi047.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-14T15:09:18.597 INFO:teuthology.orchestra.run.smithi047.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-14T15:09:18.780 INFO:teuthology.orchestra.run.smithi138.stdout:Fetched 113 MB in 4s (30.7 MB/s) 2024-04-14T15:09:18.949 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package linux-modules-5.15.0-102-generic. 2024-04-14T15:09:19.008 INFO:teuthology.orchestra.run.smithi047.stdout:Fetched 113 MB in 4s (28.7 MB/s) 2024-04-14T15:09:19.214 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package linux-modules-5.15.0-102-generic. 2024-04-14T15:09:19.855 INFO:teuthology.orchestra.run.smithi110.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-14T15:09:19.862 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../0-linux-modules-5.15.0-102-generic_5.15.0-102.112_amd64.deb ... 2024-04-14T15:09:19.945 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking linux-modules-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-14T15:09:21.002 INFO:teuthology.orchestra.run.smithi138.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-14T15:09:21.007 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../0-linux-modules-5.15.0-102-generic_5.15.0-102.112_amd64.deb ... 2024-04-14T15:09:21.162 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking linux-modules-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-14T15:09:21.228 INFO:teuthology.orchestra.run.smithi047.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-14T15:09:21.233 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../0-linux-modules-5.15.0-102-generic_5.15.0-102.112_amd64.deb ... 2024-04-14T15:09:21.386 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking linux-modules-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-14T15:09:21.981 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package linux-image-5.15.0-102-generic. 2024-04-14T15:09:22.002 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../1-linux-image-5.15.0-102-generic_5.15.0-102.112_amd64.deb ... 2024-04-14T15:09:22.077 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking linux-image-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-14T15:09:22.517 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-102-generic. 2024-04-14T15:09:22.538 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-102-generic_5.15.0-102.112_amd64.deb ... 2024-04-14T15:09:22.575 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking linux-modules-extra-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-14T15:09:23.655 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package linux-image-5.15.0-102-generic. 2024-04-14T15:09:23.663 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package linux-image-5.15.0-102-generic. 2024-04-14T15:09:23.676 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../1-linux-image-5.15.0-102-generic_5.15.0-102.112_amd64.deb ... 2024-04-14T15:09:23.684 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../1-linux-image-5.15.0-102-generic_5.15.0-102.112_amd64.deb ... 2024-04-14T15:09:23.760 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking linux-image-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-14T15:09:23.803 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking linux-image-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-14T15:09:24.225 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-102-generic. 2024-04-14T15:09:24.245 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-102-generic_5.15.0-102.112_amd64.deb ... 2024-04-14T15:09:24.283 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking linux-modules-extra-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-14T15:09:24.291 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-102-generic. 2024-04-14T15:09:24.311 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-102-generic_5.15.0-102.112_amd64.deb ... 2024-04-14T15:09:24.349 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking linux-modules-extra-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-14T15:09:28.970 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../3-linux-generic_5.15.0.102.99_amd64.deb ... 2024-04-14T15:09:29.089 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking linux-generic (5.15.0.102.99) over (5.15.0.56.54) ... 2024-04-14T15:09:29.421 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.102.99_amd64.deb ... 2024-04-14T15:09:29.543 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking linux-image-generic (5.15.0.102.99) over (5.15.0.56.54) ... 2024-04-14T15:09:29.863 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package linux-headers-5.15.0-102. 2024-04-14T15:09:29.873 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../5-linux-headers-5.15.0-102_5.15.0-102.112_all.deb ... 2024-04-14T15:09:29.904 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking linux-headers-5.15.0-102 (5.15.0-102.112) ... 2024-04-14T15:09:30.816 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../3-linux-generic_5.15.0.102.99_amd64.deb ... 2024-04-14T15:09:30.943 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking linux-generic (5.15.0.102.99) over (5.15.0.56.54) ... 2024-04-14T15:09:31.260 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.102.99_amd64.deb ... 2024-04-14T15:09:31.388 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking linux-image-generic (5.15.0.102.99) over (5.15.0.56.54) ... 2024-04-14T15:09:31.576 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../3-linux-generic_5.15.0.102.99_amd64.deb ... 2024-04-14T15:09:31.683 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package linux-headers-5.15.0-102. 2024-04-14T15:09:31.694 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../5-linux-headers-5.15.0-102_5.15.0-102.112_all.deb ... 2024-04-14T15:09:31.711 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking linux-generic (5.15.0.102.99) over (5.15.0.56.54) ... 2024-04-14T15:09:31.733 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking linux-headers-5.15.0-102 (5.15.0-102.112) ... 2024-04-14T15:09:32.069 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.102.99_amd64.deb ... 2024-04-14T15:09:32.223 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking linux-image-generic (5.15.0.102.99) over (5.15.0.56.54) ... 2024-04-14T15:09:32.584 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package linux-headers-5.15.0-102. 2024-04-14T15:09:32.607 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../5-linux-headers-5.15.0-102_5.15.0-102.112_all.deb ... 2024-04-14T15:09:32.642 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking linux-headers-5.15.0-102 (5.15.0-102.112) ... 2024-04-14T15:09:35.876 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package linux-headers-5.15.0-102-generic. 2024-04-14T15:09:35.894 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../6-linux-headers-5.15.0-102-generic_5.15.0-102.112_amd64.deb ... 2024-04-14T15:09:35.926 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking linux-headers-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-14T15:09:37.264 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package linux-headers-5.15.0-102-generic. 2024-04-14T15:09:37.302 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../6-linux-headers-5.15.0-102-generic_5.15.0-102.112_amd64.deb ... 2024-04-14T15:09:37.339 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking linux-headers-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-14T15:09:38.492 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.102.99_amd64.deb ... 2024-04-14T15:09:38.615 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking linux-headers-generic (5.15.0.102.99) over (5.15.0.56.54) ... 2024-04-14T15:09:38.957 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up linux-headers-5.15.0-102 (5.15.0-102.112) ... 2024-04-14T15:09:39.078 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up linux-headers-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-14T15:09:39.204 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up linux-headers-generic (5.15.0.102.99) ... 2024-04-14T15:09:39.242 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package linux-headers-5.15.0-102-generic. 2024-04-14T15:09:39.279 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../6-linux-headers-5.15.0-102-generic_5.15.0-102.112_amd64.deb ... 2024-04-14T15:09:39.333 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up linux-image-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-14T15:09:39.333 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking linux-headers-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-14T15:09:40.011 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.102.99_amd64.deb ... 2024-04-14T15:09:40.128 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking linux-headers-generic (5.15.0.102.99) over (5.15.0.56.54) ... 2024-04-14T15:09:40.453 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up linux-headers-5.15.0-102 (5.15.0-102.112) ... 2024-04-14T15:09:40.575 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up linux-headers-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-14T15:09:40.652 INFO:teuthology.orchestra.run.smithi110.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-04-14T15:09:40.652 INFO:teuthology.orchestra.run.smithi110.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-04-14T15:09:40.652 INFO:teuthology.orchestra.run.smithi110.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-102-generic 2024-04-14T15:09:40.653 INFO:teuthology.orchestra.run.smithi110.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-102-generic 2024-04-14T15:09:40.701 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up linux-headers-generic (5.15.0.102.99) ... 2024-04-14T15:09:40.811 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up linux-modules-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-14T15:09:40.830 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up linux-image-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-14T15:09:42.165 INFO:teuthology.orchestra.run.smithi138.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-04-14T15:09:42.166 INFO:teuthology.orchestra.run.smithi138.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-04-14T15:09:42.166 INFO:teuthology.orchestra.run.smithi138.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-102-generic 2024-04-14T15:09:42.166 INFO:teuthology.orchestra.run.smithi138.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-102-generic 2024-04-14T15:09:42.358 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up linux-modules-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-14T15:09:42.529 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up linux-modules-extra-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-14T15:09:43.238 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.102.99_amd64.deb ... 2024-04-14T15:09:43.393 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking linux-headers-generic (5.15.0.102.99) over (5.15.0.56.54) ... 2024-04-14T15:09:43.743 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up linux-modules-extra-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-14T15:09:43.772 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up linux-headers-5.15.0-102 (5.15.0-102.112) ... 2024-04-14T15:09:43.906 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up linux-image-generic (5.15.0.102.99) ... 2024-04-14T15:09:43.926 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up linux-headers-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-14T15:09:44.031 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up linux-generic (5.15.0.102.99) ... 2024-04-14T15:09:44.086 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up linux-headers-generic (5.15.0.102.99) ... 2024-04-14T15:09:44.149 INFO:teuthology.orchestra.run.smithi110.stdout:Processing triggers for linux-image-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-14T15:09:44.214 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up linux-image-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-14T15:09:44.218 INFO:teuthology.orchestra.run.smithi110.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-04-14T15:09:44.218 INFO:teuthology.orchestra.run.smithi110.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-102-generic 2024-04-14T15:09:45.203 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up linux-image-generic (5.15.0.102.99) ... 2024-04-14T15:09:45.328 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up linux-generic (5.15.0.102.99) ... 2024-04-14T15:09:45.455 INFO:teuthology.orchestra.run.smithi138.stdout:Processing triggers for linux-image-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-14T15:09:45.522 INFO:teuthology.orchestra.run.smithi138.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-04-14T15:09:45.522 INFO:teuthology.orchestra.run.smithi138.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-102-generic 2024-04-14T15:09:45.594 INFO:teuthology.orchestra.run.smithi047.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-04-14T15:09:45.594 INFO:teuthology.orchestra.run.smithi047.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-04-14T15:09:45.594 INFO:teuthology.orchestra.run.smithi047.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-102-generic 2024-04-14T15:09:45.594 INFO:teuthology.orchestra.run.smithi047.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-102-generic 2024-04-14T15:09:45.757 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up linux-modules-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-14T15:09:47.200 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up linux-modules-extra-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-14T15:09:48.627 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up linux-image-generic (5.15.0.102.99) ... 2024-04-14T15:09:48.778 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up linux-generic (5.15.0.102.99) ... 2024-04-14T15:09:49.087 INFO:teuthology.orchestra.run.smithi047.stdout:Processing triggers for linux-image-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-14T15:09:49.193 INFO:teuthology.orchestra.run.smithi047.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-04-14T15:09:49.193 INFO:teuthology.orchestra.run.smithi047.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-102-generic 2024-04-14T15:09:58.168 INFO:teuthology.orchestra.run.smithi110.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-04-14T15:09:58.169 INFO:teuthology.orchestra.run.smithi110.stdout:Sourcing file `/etc/default/grub' 2024-04-14T15:09:58.190 INFO:teuthology.orchestra.run.smithi110.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-04-14T15:09:58.245 INFO:teuthology.orchestra.run.smithi110.stdout:Generating grub configuration file ... 2024-04-14T15:09:58.580 INFO:teuthology.orchestra.run.smithi110.stdout:Found linux image: /boot/vmlinuz-5.15.0-102-generic 2024-04-14T15:09:58.601 INFO:teuthology.orchestra.run.smithi110.stdout:Found initrd image: /boot/initrd.img-5.15.0-102-generic 2024-04-14T15:09:58.953 INFO:teuthology.orchestra.run.smithi110.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-04-14T15:09:58.960 INFO:teuthology.orchestra.run.smithi110.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-04-14T15:09:59.027 INFO:teuthology.orchestra.run.smithi110.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-04-14T15:09:59.032 INFO:teuthology.orchestra.run.smithi110.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-04-14T15:09:59.203 INFO:teuthology.orchestra.run.smithi110.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-04-14T15:09:59.203 INFO:teuthology.orchestra.run.smithi110.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-04-14T15:09:59.203 INFO:teuthology.orchestra.run.smithi110.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-04-14T15:09:59.243 INFO:teuthology.orchestra.run.smithi110.stdout:done 2024-04-14T15:09:59.721 INFO:teuthology.orchestra.run.smithi138.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-04-14T15:09:59.721 INFO:teuthology.orchestra.run.smithi138.stdout:Sourcing file `/etc/default/grub' 2024-04-14T15:09:59.740 DEBUG:teuthology.orchestra.run.smithi110:> dpkg -s linux-image-generic 2024-04-14T15:09:59.741 INFO:teuthology.orchestra.run.smithi138.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-04-14T15:09:59.760 INFO:teuthology.orchestra.run.smithi138.stdout:Generating grub configuration file ... 2024-04-14T15:09:59.760 INFO:teuthology.orchestra.run.smithi110.stdout:Package: linux-image-generic 2024-04-14T15:09:59.761 INFO:teuthology.orchestra.run.smithi110.stdout:Status: install ok installed 2024-04-14T15:09:59.761 INFO:teuthology.orchestra.run.smithi110.stdout:Priority: optional 2024-04-14T15:09:59.761 INFO:teuthology.orchestra.run.smithi110.stdout:Section: kernel 2024-04-14T15:09:59.761 INFO:teuthology.orchestra.run.smithi110.stdout:Installed-Size: 21 2024-04-14T15:09:59.761 INFO:teuthology.orchestra.run.smithi110.stdout:Maintainer: Ubuntu Kernel Team 2024-04-14T15:09:59.761 INFO:teuthology.orchestra.run.smithi110.stdout:Architecture: amd64 2024-04-14T15:09:59.761 INFO:teuthology.orchestra.run.smithi110.stdout:Source: linux-meta 2024-04-14T15:09:59.761 INFO:teuthology.orchestra.run.smithi110.stdout:Version: 5.15.0.102.99 2024-04-14T15:09:59.761 INFO:teuthology.orchestra.run.smithi110.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-14T15:09:59.761 INFO:teuthology.orchestra.run.smithi110.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-14T15:09:59.761 INFO:teuthology.orchestra.run.smithi110.stdout:Recommends: thermald 2024-04-14T15:09:59.761 INFO:teuthology.orchestra.run.smithi110.stdout:Description: Generic Linux kernel image 2024-04-14T15:09:59.761 INFO:teuthology.orchestra.run.smithi110.stdout: This package will always depend on the latest generic kernel image 2024-04-14T15:09:59.762 INFO:teuthology.orchestra.run.smithi110.stdout: available. 2024-04-14T15:09:59.762 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-102-generic 2024-04-14T15:09:59.763 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-14T15:09:59.763 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-14T15:09:59.763 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-04-14T15:09:59.763 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi110.front.sepia.ceph.com, path=None, version=distro) 2024-04-14T15:09:59.763 DEBUG:teuthology.orchestra.run.smithi110:> sudo apt-get clean 2024-04-14T15:09:59.927 DEBUG:teuthology.orchestra.run.smithi110:> sudo apt-get update 2024-04-14T15:10:00.044 INFO:teuthology.orchestra.run.smithi110.stdout:Hit:1 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-04-14T15:10:00.116 INFO:teuthology.orchestra.run.smithi138.stdout:Found linux image: /boot/vmlinuz-5.15.0-102-generic 2024-04-14T15:10:00.140 INFO:teuthology.orchestra.run.smithi138.stdout:Found initrd image: /boot/initrd.img-5.15.0-102-generic 2024-04-14T15:10:00.161 INFO:teuthology.orchestra.run.smithi110.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-14T15:10:00.243 INFO:teuthology.orchestra.run.smithi110.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-04-14T15:10:00.324 INFO:teuthology.orchestra.run.smithi110.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-04-14T15:10:00.523 INFO:teuthology.orchestra.run.smithi138.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-04-14T15:10:00.529 INFO:teuthology.orchestra.run.smithi138.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-04-14T15:10:00.596 INFO:teuthology.orchestra.run.smithi138.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-04-14T15:10:00.602 INFO:teuthology.orchestra.run.smithi138.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-04-14T15:10:00.750 INFO:teuthology.orchestra.run.smithi138.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-04-14T15:10:00.750 INFO:teuthology.orchestra.run.smithi138.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-04-14T15:10:00.751 INFO:teuthology.orchestra.run.smithi138.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-04-14T15:10:00.792 INFO:teuthology.orchestra.run.smithi138.stdout:done 2024-04-14T15:10:01.296 DEBUG:teuthology.orchestra.run.smithi138:> dpkg -s linux-image-generic 2024-04-14T15:10:01.315 INFO:teuthology.orchestra.run.smithi138.stdout:Package: linux-image-generic 2024-04-14T15:10:01.315 INFO:teuthology.orchestra.run.smithi138.stdout:Status: install ok installed 2024-04-14T15:10:01.315 INFO:teuthology.orchestra.run.smithi138.stdout:Priority: optional 2024-04-14T15:10:01.315 INFO:teuthology.orchestra.run.smithi138.stdout:Section: kernel 2024-04-14T15:10:01.316 INFO:teuthology.orchestra.run.smithi138.stdout:Installed-Size: 21 2024-04-14T15:10:01.316 INFO:teuthology.orchestra.run.smithi138.stdout:Maintainer: Ubuntu Kernel Team 2024-04-14T15:10:01.316 INFO:teuthology.orchestra.run.smithi138.stdout:Architecture: amd64 2024-04-14T15:10:01.316 INFO:teuthology.orchestra.run.smithi138.stdout:Source: linux-meta 2024-04-14T15:10:01.316 INFO:teuthology.orchestra.run.smithi138.stdout:Version: 5.15.0.102.99 2024-04-14T15:10:01.316 INFO:teuthology.orchestra.run.smithi138.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-14T15:10:01.316 INFO:teuthology.orchestra.run.smithi138.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-14T15:10:01.316 INFO:teuthology.orchestra.run.smithi138.stdout:Recommends: thermald 2024-04-14T15:10:01.316 INFO:teuthology.orchestra.run.smithi138.stdout:Description: Generic Linux kernel image 2024-04-14T15:10:01.316 INFO:teuthology.orchestra.run.smithi138.stdout: This package will always depend on the latest generic kernel image 2024-04-14T15:10:01.316 INFO:teuthology.orchestra.run.smithi138.stdout: available. 2024-04-14T15:10:01.316 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-102-generic 2024-04-14T15:10:01.317 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-14T15:10:01.317 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-14T15:10:01.317 INFO:teuthology.task.kernel:Installing distro kernel on host.c... 2024-04-14T15:10:01.317 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi138.front.sepia.ceph.com, path=None, version=distro) 2024-04-14T15:10:01.317 DEBUG:teuthology.orchestra.run.smithi138:> sudo apt-get clean 2024-04-14T15:10:01.470 INFO:teuthology.orchestra.run.smithi110.stdout:Reading package lists... 2024-04-14T15:10:01.475 DEBUG:teuthology.orchestra.run.smithi138:> sudo apt-get update 2024-04-14T15:10:01.488 DEBUG:teuthology.orchestra.run.smithi110:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-04-14T15:10:01.545 INFO:teuthology.orchestra.run.smithi110.stdout:Reading package lists... 2024-04-14T15:10:01.630 INFO:teuthology.orchestra.run.smithi138.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-14T15:10:01.630 INFO:teuthology.orchestra.run.smithi138.stdout:Hit:2 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-04-14T15:10:01.634 INFO:teuthology.orchestra.run.smithi138.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-04-14T15:10:01.655 INFO:teuthology.orchestra.run.smithi138.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-04-14T15:10:01.743 INFO:teuthology.orchestra.run.smithi110.stdout:Building dependency tree... 2024-04-14T15:10:01.748 INFO:teuthology.orchestra.run.smithi110.stdout:Reading state information... 2024-04-14T15:10:01.914 INFO:teuthology.orchestra.run.smithi110.stdout:linux-image-generic is already the newest version (5.15.0.102.99). 2024-04-14T15:10:01.914 INFO:teuthology.orchestra.run.smithi110.stdout:The following packages were automatically installed and are no longer required: 2024-04-14T15:10:01.914 INFO:teuthology.orchestra.run.smithi110.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-14T15:10:01.914 INFO:teuthology.orchestra.run.smithi110.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-14T15:10:01.914 INFO:teuthology.orchestra.run.smithi110.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-14T15:10:01.914 INFO:teuthology.orchestra.run.smithi110.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-04-14T15:10:01.915 INFO:teuthology.orchestra.run.smithi110.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-04-14T15:10:01.915 INFO:teuthology.orchestra.run.smithi110.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-14T15:10:01.952 INFO:teuthology.orchestra.run.smithi110.stdout:0 upgraded, 0 newly installed, 0 to remove and 313 not upgraded. 2024-04-14T15:10:01.954 DEBUG:teuthology.orchestra.run.smithi110:> dpkg -s linux-image-generic 2024-04-14T15:10:02.010 INFO:teuthology.orchestra.run.smithi110.stdout:Package: linux-image-generic 2024-04-14T15:10:02.010 INFO:teuthology.orchestra.run.smithi110.stdout:Status: install ok installed 2024-04-14T15:10:02.010 INFO:teuthology.orchestra.run.smithi110.stdout:Priority: optional 2024-04-14T15:10:02.010 INFO:teuthology.orchestra.run.smithi110.stdout:Section: kernel 2024-04-14T15:10:02.010 INFO:teuthology.orchestra.run.smithi110.stdout:Installed-Size: 21 2024-04-14T15:10:02.010 INFO:teuthology.orchestra.run.smithi110.stdout:Maintainer: Ubuntu Kernel Team 2024-04-14T15:10:02.010 INFO:teuthology.orchestra.run.smithi110.stdout:Architecture: amd64 2024-04-14T15:10:02.010 INFO:teuthology.orchestra.run.smithi110.stdout:Source: linux-meta 2024-04-14T15:10:02.010 INFO:teuthology.orchestra.run.smithi110.stdout:Version: 5.15.0.102.99 2024-04-14T15:10:02.011 INFO:teuthology.orchestra.run.smithi110.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-14T15:10:02.011 INFO:teuthology.orchestra.run.smithi110.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-14T15:10:02.011 INFO:teuthology.orchestra.run.smithi110.stdout:Recommends: thermald 2024-04-14T15:10:02.011 INFO:teuthology.orchestra.run.smithi110.stdout:Description: Generic Linux kernel image 2024-04-14T15:10:02.011 INFO:teuthology.orchestra.run.smithi110.stdout: This package will always depend on the latest generic kernel image 2024-04-14T15:10:02.011 INFO:teuthology.orchestra.run.smithi110.stdout: available. 2024-04-14T15:10:02.011 DEBUG:teuthology.orchestra.run.smithi110:> mktemp 2024-04-14T15:10:02.055 INFO:teuthology.orchestra.run.smithi110.stdout:/tmp/tmp.HQthH51Nkv 2024-04-14T15:10:02.055 DEBUG:teuthology.orchestra.run.smithi110:> sudo cp /boot/grub/grub.cfg /tmp/tmp.HQthH51Nkv 2024-04-14T15:10:02.109 DEBUG:teuthology.orchestra.run.smithi110:> sudo chmod 0666 /tmp/tmp.HQthH51Nkv 2024-04-14T15:10:02.223 DEBUG:teuthology.orchestra.remote:smithi110:/tmp/tmp.HQthH51Nkv is 10KB 2024-04-14T15:10:02.236 DEBUG:teuthology.orchestra.run.smithi110:> rm -fr /tmp/tmp.HQthH51Nkv 2024-04-14T15:10:02.241 DEBUG:teuthology.orchestra.run.smithi110:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-04-14T15:10:02.294 DEBUG:teuthology.orchestra.run.smithi110:> set -ex 2024-04-14T15:10:02.294 DEBUG:teuthology.orchestra.run.smithi110:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-04-14T15:10:02.294 DEBUG:teuthology.orchestra.run.smithi110:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-04-14T15:10:02.358 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-102-generic 2024-04-14T15:10:02.358 DEBUG:teuthology.orchestra.run.smithi110:> sudo update-grub 2024-04-14T15:10:03.020 INFO:teuthology.orchestra.run.smithi138.stdout:Reading package lists... 2024-04-14T15:10:03.038 DEBUG:teuthology.orchestra.run.smithi138:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-04-14T15:10:03.097 INFO:teuthology.orchestra.run.smithi138.stdout:Reading package lists... 2024-04-14T15:10:03.292 INFO:teuthology.orchestra.run.smithi138.stdout:Building dependency tree... 2024-04-14T15:10:03.292 INFO:teuthology.orchestra.run.smithi138.stdout:Reading state information... 2024-04-14T15:10:03.465 INFO:teuthology.orchestra.run.smithi138.stdout:linux-image-generic is already the newest version (5.15.0.102.99). 2024-04-14T15:10:03.465 INFO:teuthology.orchestra.run.smithi138.stdout:The following packages were automatically installed and are no longer required: 2024-04-14T15:10:03.465 INFO:teuthology.orchestra.run.smithi138.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-14T15:10:03.465 INFO:teuthology.orchestra.run.smithi138.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-14T15:10:03.465 INFO:teuthology.orchestra.run.smithi138.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-14T15:10:03.465 INFO:teuthology.orchestra.run.smithi138.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-04-14T15:10:03.465 INFO:teuthology.orchestra.run.smithi138.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-04-14T15:10:03.465 INFO:teuthology.orchestra.run.smithi138.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-14T15:10:03.505 INFO:teuthology.orchestra.run.smithi138.stdout:0 upgraded, 0 newly installed, 0 to remove and 313 not upgraded. 2024-04-14T15:10:03.506 DEBUG:teuthology.orchestra.run.smithi138:> dpkg -s linux-image-generic 2024-04-14T15:10:03.562 INFO:teuthology.orchestra.run.smithi138.stdout:Package: linux-image-generic 2024-04-14T15:10:03.562 INFO:teuthology.orchestra.run.smithi138.stdout:Status: install ok installed 2024-04-14T15:10:03.562 INFO:teuthology.orchestra.run.smithi138.stdout:Priority: optional 2024-04-14T15:10:03.562 INFO:teuthology.orchestra.run.smithi138.stdout:Section: kernel 2024-04-14T15:10:03.562 INFO:teuthology.orchestra.run.smithi138.stdout:Installed-Size: 21 2024-04-14T15:10:03.562 INFO:teuthology.orchestra.run.smithi138.stdout:Maintainer: Ubuntu Kernel Team 2024-04-14T15:10:03.562 INFO:teuthology.orchestra.run.smithi138.stdout:Architecture: amd64 2024-04-14T15:10:03.562 INFO:teuthology.orchestra.run.smithi138.stdout:Source: linux-meta 2024-04-14T15:10:03.562 INFO:teuthology.orchestra.run.smithi138.stdout:Version: 5.15.0.102.99 2024-04-14T15:10:03.562 INFO:teuthology.orchestra.run.smithi138.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-14T15:10:03.563 INFO:teuthology.orchestra.run.smithi138.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-14T15:10:03.563 INFO:teuthology.orchestra.run.smithi138.stdout:Recommends: thermald 2024-04-14T15:10:03.563 INFO:teuthology.orchestra.run.smithi138.stdout:Description: Generic Linux kernel image 2024-04-14T15:10:03.563 INFO:teuthology.orchestra.run.smithi138.stdout: This package will always depend on the latest generic kernel image 2024-04-14T15:10:03.563 INFO:teuthology.orchestra.run.smithi138.stdout: available. 2024-04-14T15:10:03.563 DEBUG:teuthology.orchestra.run.smithi138:> mktemp 2024-04-14T15:10:03.566 INFO:teuthology.orchestra.run.smithi110.stderr:Sourcing file `/etc/default/grub' 2024-04-14T15:10:03.567 INFO:teuthology.orchestra.run.smithi110.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-04-14T15:10:03.569 INFO:teuthology.orchestra.run.smithi110.stderr:Generating grub configuration file ... 2024-04-14T15:10:03.607 INFO:teuthology.orchestra.run.smithi138.stdout:/tmp/tmp.cXaXTumK3e 2024-04-14T15:10:03.608 DEBUG:teuthology.orchestra.run.smithi138:> sudo cp /boot/grub/grub.cfg /tmp/tmp.cXaXTumK3e 2024-04-14T15:10:03.665 DEBUG:teuthology.orchestra.run.smithi138:> sudo chmod 0666 /tmp/tmp.cXaXTumK3e 2024-04-14T15:10:03.779 DEBUG:teuthology.orchestra.remote:smithi138:/tmp/tmp.cXaXTumK3e is 10KB 2024-04-14T15:10:03.793 DEBUG:teuthology.orchestra.run.smithi138:> rm -fr /tmp/tmp.cXaXTumK3e 2024-04-14T15:10:03.798 DEBUG:teuthology.orchestra.run.smithi138:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-04-14T15:10:03.807 INFO:teuthology.orchestra.run.smithi110.stderr:Found linux image: /boot/vmlinuz-5.15.0-102-generic 2024-04-14T15:10:03.814 INFO:teuthology.orchestra.run.smithi110.stderr:Found initrd image: /boot/initrd.img-5.15.0-102-generic 2024-04-14T15:10:03.851 DEBUG:teuthology.orchestra.run.smithi138:> set -ex 2024-04-14T15:10:03.851 DEBUG:teuthology.orchestra.run.smithi138:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-04-14T15:10:03.851 DEBUG:teuthology.orchestra.run.smithi138:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-04-14T15:10:03.928 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-102-generic 2024-04-14T15:10:03.928 DEBUG:teuthology.orchestra.run.smithi138:> sudo update-grub 2024-04-14T15:10:04.084 INFO:teuthology.orchestra.run.smithi110.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-04-14T15:10:04.089 INFO:teuthology.orchestra.run.smithi110.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-04-14T15:10:04.130 INFO:teuthology.orchestra.run.smithi110.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-04-14T15:10:04.135 INFO:teuthology.orchestra.run.smithi110.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-04-14T15:10:04.153 INFO:teuthology.orchestra.run.smithi047.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-04-14T15:10:04.153 INFO:teuthology.orchestra.run.smithi047.stdout:Sourcing file `/etc/default/grub' 2024-04-14T15:10:04.186 INFO:teuthology.orchestra.run.smithi047.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-04-14T15:10:04.207 INFO:teuthology.orchestra.run.smithi047.stdout:Generating grub configuration file ... 2024-04-14T15:10:04.270 INFO:teuthology.orchestra.run.smithi110.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-04-14T15:10:04.270 INFO:teuthology.orchestra.run.smithi110.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-04-14T15:10:04.270 INFO:teuthology.orchestra.run.smithi110.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-04-14T15:10:04.291 INFO:teuthology.orchestra.run.smithi110.stderr:done 2024-04-14T15:10:04.300 DEBUG:teuthology.orchestra.run.smithi110:> sudo shutdown -r now 2024-04-14T15:10:04.549 INFO:teuthology.orchestra.run.smithi047.stdout:Found linux image: /boot/vmlinuz-5.15.0-102-generic 2024-04-14T15:10:04.574 INFO:teuthology.orchestra.run.smithi047.stdout:Found initrd image: /boot/initrd.img-5.15.0-102-generic 2024-04-14T15:10:04.872 INFO:teuthology.orchestra.run.smithi047.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-04-14T15:10:04.878 INFO:teuthology.orchestra.run.smithi047.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-04-14T15:10:04.950 INFO:teuthology.orchestra.run.smithi047.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-04-14T15:10:04.955 INFO:teuthology.orchestra.run.smithi047.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-04-14T15:10:05.145 INFO:teuthology.orchestra.run.smithi047.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-04-14T15:10:05.145 INFO:teuthology.orchestra.run.smithi047.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-04-14T15:10:05.145 INFO:teuthology.orchestra.run.smithi047.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-04-14T15:10:05.182 INFO:teuthology.orchestra.run.smithi047.stdout:done 2024-04-14T15:10:05.245 INFO:teuthology.orchestra.run.smithi138.stderr:Sourcing file `/etc/default/grub' 2024-04-14T15:10:05.246 INFO:teuthology.orchestra.run.smithi138.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-04-14T15:10:05.253 INFO:teuthology.orchestra.run.smithi138.stderr:Generating grub configuration file ... 2024-04-14T15:10:05.431 INFO:teuthology.orchestra.run.smithi138.stderr:Found linux image: /boot/vmlinuz-5.15.0-102-generic 2024-04-14T15:10:05.437 INFO:teuthology.orchestra.run.smithi138.stderr:Found initrd image: /boot/initrd.img-5.15.0-102-generic 2024-04-14T15:10:05.743 DEBUG:teuthology.orchestra.run.smithi047:> dpkg -s linux-image-generic 2024-04-14T15:10:05.768 INFO:teuthology.orchestra.run.smithi047.stdout:Package: linux-image-generic 2024-04-14T15:10:05.768 INFO:teuthology.orchestra.run.smithi047.stdout:Status: install ok installed 2024-04-14T15:10:05.768 INFO:teuthology.orchestra.run.smithi047.stdout:Priority: optional 2024-04-14T15:10:05.768 INFO:teuthology.orchestra.run.smithi047.stdout:Section: kernel 2024-04-14T15:10:05.768 INFO:teuthology.orchestra.run.smithi047.stdout:Installed-Size: 21 2024-04-14T15:10:05.768 INFO:teuthology.orchestra.run.smithi047.stdout:Maintainer: Ubuntu Kernel Team 2024-04-14T15:10:05.768 INFO:teuthology.orchestra.run.smithi047.stdout:Architecture: amd64 2024-04-14T15:10:05.768 INFO:teuthology.orchestra.run.smithi047.stdout:Source: linux-meta 2024-04-14T15:10:05.768 INFO:teuthology.orchestra.run.smithi047.stdout:Version: 5.15.0.102.99 2024-04-14T15:10:05.768 INFO:teuthology.orchestra.run.smithi047.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-14T15:10:05.768 INFO:teuthology.orchestra.run.smithi047.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-14T15:10:05.769 INFO:teuthology.orchestra.run.smithi047.stdout:Recommends: thermald 2024-04-14T15:10:05.769 INFO:teuthology.orchestra.run.smithi047.stdout:Description: Generic Linux kernel image 2024-04-14T15:10:05.769 INFO:teuthology.orchestra.run.smithi047.stdout: This package will always depend on the latest generic kernel image 2024-04-14T15:10:05.769 INFO:teuthology.orchestra.run.smithi047.stdout: available. 2024-04-14T15:10:05.770 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-102-generic 2024-04-14T15:10:05.770 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-14T15:10:05.770 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-14T15:10:05.770 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-04-14T15:10:05.770 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi047.front.sepia.ceph.com, path=None, version=distro) 2024-04-14T15:10:05.770 DEBUG:teuthology.orchestra.run.smithi047:> sudo apt-get clean 2024-04-14T15:10:05.786 INFO:teuthology.orchestra.run.smithi138.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-04-14T15:10:05.792 INFO:teuthology.orchestra.run.smithi138.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-04-14T15:10:05.837 INFO:teuthology.orchestra.run.smithi138.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-04-14T15:10:05.843 INFO:teuthology.orchestra.run.smithi138.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-04-14T15:10:05.964 DEBUG:teuthology.orchestra.run.smithi047:> sudo apt-get update 2024-04-14T15:10:05.972 INFO:teuthology.orchestra.run.smithi138.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-04-14T15:10:05.972 INFO:teuthology.orchestra.run.smithi138.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-04-14T15:10:05.972 INFO:teuthology.orchestra.run.smithi138.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-04-14T15:10:05.982 INFO:teuthology.orchestra.run.smithi138.stderr:done 2024-04-14T15:10:05.994 DEBUG:teuthology.orchestra.run.smithi138:> sudo shutdown -r now 2024-04-14T15:10:06.165 INFO:teuthology.orchestra.run.smithi047.stdout:Hit:1 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-04-14T15:10:06.165 INFO:teuthology.orchestra.run.smithi047.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-14T15:10:06.202 INFO:teuthology.orchestra.run.smithi047.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-04-14T15:10:06.244 INFO:teuthology.orchestra.run.smithi047.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-04-14T15:10:07.615 INFO:teuthology.orchestra.run.smithi047.stdout:Reading package lists... 2024-04-14T15:10:07.634 DEBUG:teuthology.orchestra.run.smithi047:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-04-14T15:10:07.694 INFO:teuthology.orchestra.run.smithi047.stdout:Reading package lists... 2024-04-14T15:10:07.894 INFO:teuthology.orchestra.run.smithi047.stdout:Building dependency tree... 2024-04-14T15:10:07.895 INFO:teuthology.orchestra.run.smithi047.stdout:Reading state information... 2024-04-14T15:10:08.078 INFO:teuthology.orchestra.run.smithi047.stdout:linux-image-generic is already the newest version (5.15.0.102.99). 2024-04-14T15:10:08.079 INFO:teuthology.orchestra.run.smithi047.stdout:The following packages were automatically installed and are no longer required: 2024-04-14T15:10:08.079 INFO:teuthology.orchestra.run.smithi047.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-14T15:10:08.079 INFO:teuthology.orchestra.run.smithi047.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-14T15:10:08.079 INFO:teuthology.orchestra.run.smithi047.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-14T15:10:08.079 INFO:teuthology.orchestra.run.smithi047.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-04-14T15:10:08.079 INFO:teuthology.orchestra.run.smithi047.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-04-14T15:10:08.079 INFO:teuthology.orchestra.run.smithi047.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-14T15:10:08.118 INFO:teuthology.orchestra.run.smithi047.stdout:0 upgraded, 0 newly installed, 0 to remove and 313 not upgraded. 2024-04-14T15:10:08.121 DEBUG:teuthology.orchestra.run.smithi047:> dpkg -s linux-image-generic 2024-04-14T15:10:08.137 INFO:teuthology.orchestra.run.smithi047.stdout:Package: linux-image-generic 2024-04-14T15:10:08.137 INFO:teuthology.orchestra.run.smithi047.stdout:Status: install ok installed 2024-04-14T15:10:08.137 INFO:teuthology.orchestra.run.smithi047.stdout:Priority: optional 2024-04-14T15:10:08.137 INFO:teuthology.orchestra.run.smithi047.stdout:Section: kernel 2024-04-14T15:10:08.137 INFO:teuthology.orchestra.run.smithi047.stdout:Installed-Size: 21 2024-04-14T15:10:08.137 INFO:teuthology.orchestra.run.smithi047.stdout:Maintainer: Ubuntu Kernel Team 2024-04-14T15:10:08.137 INFO:teuthology.orchestra.run.smithi047.stdout:Architecture: amd64 2024-04-14T15:10:08.137 INFO:teuthology.orchestra.run.smithi047.stdout:Source: linux-meta 2024-04-14T15:10:08.137 INFO:teuthology.orchestra.run.smithi047.stdout:Version: 5.15.0.102.99 2024-04-14T15:10:08.137 INFO:teuthology.orchestra.run.smithi047.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-14T15:10:08.137 INFO:teuthology.orchestra.run.smithi047.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-14T15:10:08.137 INFO:teuthology.orchestra.run.smithi047.stdout:Recommends: thermald 2024-04-14T15:10:08.138 INFO:teuthology.orchestra.run.smithi047.stdout:Description: Generic Linux kernel image 2024-04-14T15:10:08.138 INFO:teuthology.orchestra.run.smithi047.stdout: This package will always depend on the latest generic kernel image 2024-04-14T15:10:08.138 INFO:teuthology.orchestra.run.smithi047.stdout: available. 2024-04-14T15:10:08.138 DEBUG:teuthology.orchestra.run.smithi047:> mktemp 2024-04-14T15:10:08.182 INFO:teuthology.orchestra.run.smithi047.stdout:/tmp/tmp.FjVdcbHl3O 2024-04-14T15:10:08.182 DEBUG:teuthology.orchestra.run.smithi047:> sudo cp /boot/grub/grub.cfg /tmp/tmp.FjVdcbHl3O 2024-04-14T15:10:08.237 DEBUG:teuthology.orchestra.run.smithi047:> sudo chmod 0666 /tmp/tmp.FjVdcbHl3O 2024-04-14T15:10:08.355 DEBUG:teuthology.orchestra.remote:smithi047:/tmp/tmp.FjVdcbHl3O is 10KB 2024-04-14T15:10:08.368 DEBUG:teuthology.orchestra.run.smithi047:> rm -fr /tmp/tmp.FjVdcbHl3O 2024-04-14T15:10:08.373 DEBUG:teuthology.orchestra.run.smithi047:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-04-14T15:10:08.430 DEBUG:teuthology.orchestra.run.smithi047:> set -ex 2024-04-14T15:10:08.430 DEBUG:teuthology.orchestra.run.smithi047:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-04-14T15:10:08.430 DEBUG:teuthology.orchestra.run.smithi047:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-04-14T15:10:08.517 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-102-generic 2024-04-14T15:10:08.517 DEBUG:teuthology.orchestra.run.smithi047:> sudo update-grub 2024-04-14T15:10:09.952 INFO:teuthology.orchestra.run.smithi047.stderr:Sourcing file `/etc/default/grub' 2024-04-14T15:10:09.953 INFO:teuthology.orchestra.run.smithi047.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-04-14T15:10:09.957 INFO:teuthology.orchestra.run.smithi047.stderr:Generating grub configuration file ... 2024-04-14T15:10:10.204 INFO:teuthology.orchestra.run.smithi047.stderr:Found linux image: /boot/vmlinuz-5.15.0-102-generic 2024-04-14T15:10:10.212 INFO:teuthology.orchestra.run.smithi047.stderr:Found initrd image: /boot/initrd.img-5.15.0-102-generic 2024-04-14T15:10:10.506 INFO:teuthology.orchestra.run.smithi047.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-04-14T15:10:10.512 INFO:teuthology.orchestra.run.smithi047.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-04-14T15:10:10.554 INFO:teuthology.orchestra.run.smithi047.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-04-14T15:10:10.560 INFO:teuthology.orchestra.run.smithi047.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-04-14T15:10:10.674 INFO:teuthology.orchestra.run.smithi047.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-04-14T15:10:10.674 INFO:teuthology.orchestra.run.smithi047.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-04-14T15:10:10.674 INFO:teuthology.orchestra.run.smithi047.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-04-14T15:10:10.705 INFO:teuthology.orchestra.run.smithi047.stderr:done 2024-04-14T15:10:10.707 DEBUG:teuthology.orchestra.run.smithi047:> sudo shutdown -r now 2024-04-14T15:10:34.315 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-04-14T15:10:34.315 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi110.front.sepia.ceph.com' 2024-04-14T15:10:34.316 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi110.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-14T15:10:35.998 INFO:teuthology.task.kernel:Checking client host.c for new kernel version... 2024-04-14T15:10:35.998 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi138.front.sepia.ceph.com' 2024-04-14T15:10:35.999 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi138.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-14T15:10:40.756 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-04-14T15:10:40.757 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi047.front.sepia.ceph.com' 2024-04-14T15:10:40.757 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi047.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-14T15:10:52.702 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.110 2024-04-14T15:10:54.498 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.138 2024-04-14T15:10:59.106 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.47 2024-04-14T15:11:01.705 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi110.front.sepia.ceph.com' 2024-04-14T15:11:01.706 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi110.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-14T15:11:03.501 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi138.front.sepia.ceph.com' 2024-04-14T15:11:03.501 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi138.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-14T15:11:04.766 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.110 2024-04-14T15:11:06.558 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.138 2024-04-14T15:11:08.109 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi047.front.sepia.ceph.com' 2024-04-14T15:11:08.109 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi047.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-14T15:11:16.773 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi110.front.sepia.ceph.com' 2024-04-14T15:11:16.774 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi110.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-14T15:11:18.561 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi138.front.sepia.ceph.com' 2024-04-14T15:11:18.562 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi138.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-14T15:11:35.202 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.110 2024-04-14T15:11:50.204 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi110.front.sepia.ceph.com' 2024-04-14T15:11:50.205 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi110.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-14T15:11:50.491 DEBUG:teuthology.orchestra.run.smithi110:> true 2024-04-14T15:11:50.689 DEBUG:teuthology.orchestra.run.smithi138:> true 2024-04-14T15:11:51.110 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi110.front.sepia.ceph.com' 2024-04-14T15:11:51.110 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.15.0-102-generic"... 2024-04-14T15:11:51.111 DEBUG:teuthology.orchestra.run.smithi110:> uname -r 2024-04-14T15:11:51.159 INFO:teuthology.orchestra.run.smithi110.stdout:5.15.0-102-generic 2024-04-14T15:11:51.159 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-102-generic vs 5.15.0-102-generic 2024-04-14T15:11:51.159 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-14T15:11:51.159 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-04-14T15:11:51.488 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi138.front.sepia.ceph.com' 2024-04-14T15:11:51.488 INFO:teuthology.task.kernel:Checking kernel version of host.c, want "5.15.0-102-generic"... 2024-04-14T15:11:51.489 DEBUG:teuthology.orchestra.run.smithi138:> uname -r 2024-04-14T15:11:51.538 INFO:teuthology.orchestra.run.smithi138.stdout:5.15.0-102-generic 2024-04-14T15:11:51.538 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-102-generic vs 5.15.0-102-generic 2024-04-14T15:11:51.538 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-14T15:11:51.538 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-04-14T15:11:52.160 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-04-14T15:11:52.160 DEBUG:teuthology.orchestra.run.smithi110:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-14T15:11:52.252 INFO:teuthology.orchestra.run.smithi110.stdout:ttyS1 2024-04-14T15:11:52.285 DEBUG:teuthology.parallel:result is None 2024-04-14T15:11:52.538 INFO:teuthology.task.kernel:Enabling kdb on host.c... 2024-04-14T15:11:52.539 DEBUG:teuthology.orchestra.run.smithi138:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-14T15:11:52.625 INFO:teuthology.orchestra.run.smithi138.stdout:ttyS1 2024-04-14T15:11:52.654 DEBUG:teuthology.parallel:result is None 2024-04-14T15:12:08.111 DEBUG:teuthology.orchestra.remote:timed out 2024-04-14T15:12:20.113 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi047.front.sepia.ceph.com' 2024-04-14T15:12:20.114 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi047.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-14T15:12:20.401 DEBUG:teuthology.orchestra.run.smithi047:> true 2024-04-14T15:12:20.981 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi047.front.sepia.ceph.com' 2024-04-14T15:12:20.981 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.15.0-102-generic"... 2024-04-14T15:12:20.982 DEBUG:teuthology.orchestra.run.smithi047:> uname -r 2024-04-14T15:12:21.030 INFO:teuthology.orchestra.run.smithi047.stdout:5.15.0-102-generic 2024-04-14T15:12:21.030 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-102-generic vs 5.15.0-102-generic 2024-04-14T15:12:21.030 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-14T15:12:21.030 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-04-14T15:12:22.032 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-04-14T15:12:22.032 DEBUG:teuthology.orchestra.run.smithi047:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-14T15:12:22.102 INFO:teuthology.orchestra.run.smithi047.stdout:ttyS1 2024-04-14T15:12:22.120 DEBUG:teuthology.parallel:result is None 2024-04-14T15:12:22.120 INFO:teuthology.run_tasks:Running task internal.base... 2024-04-14T15:12:22.127 INFO:teuthology.task.internal:Creating test directory... 2024-04-14T15:12:22.128 DEBUG:teuthology.orchestra.run.smithi047:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-14T15:12:22.130 DEBUG:teuthology.orchestra.run.smithi110:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-14T15:12:22.133 DEBUG:teuthology.orchestra.run.smithi138:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-14T15:12:22.140 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-04-14T15:12:22.146 INFO:teuthology.run_tasks:Running task internal.archive... 2024-04-14T15:12:22.153 INFO:teuthology.task.internal:Creating archive directory... 2024-04-14T15:12:22.153 DEBUG:teuthology.orchestra.run.smithi047:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-14T15:12:22.179 DEBUG:teuthology.orchestra.run.smithi110:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-14T15:12:22.182 DEBUG:teuthology.orchestra.run.smithi138:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-14T15:12:22.386 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-04-14T15:12:22.392 INFO:teuthology.task.internal:Enabling coredump saving... 2024-04-14T15:12:22.392 DEBUG:teuthology.orchestra.run.smithi047:> 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-14T15:12:22.395 DEBUG:teuthology.orchestra.run.smithi110:> 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-14T15:12:22.398 DEBUG:teuthology.orchestra.run.smithi138:> 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-14T15:12:22.409 INFO:teuthology.orchestra.run.smithi047.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-14T15:12:22.417 INFO:teuthology.orchestra.run.smithi047.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-14T15:12:22.420 INFO:teuthology.orchestra.run.smithi138.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-14T15:12:22.428 INFO:teuthology.orchestra.run.smithi110.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-14T15:12:22.428 INFO:teuthology.orchestra.run.smithi138.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-14T15:12:22.436 INFO:teuthology.orchestra.run.smithi110.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-14T15:12:22.437 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-04-14T15:12:22.445 INFO:teuthology.task.internal:Configuring sudo... 2024-04-14T15:12:22.446 DEBUG:teuthology.orchestra.run.smithi047:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-14T15:12:22.467 DEBUG:teuthology.orchestra.run.smithi110:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-14T15:12:22.480 DEBUG:teuthology.orchestra.run.smithi138:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-14T15:12:22.492 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-04-14T15:12:22.502 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-04-14T15:12:22.502 DEBUG:teuthology.orchestra.run.smithi047:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-14T15:12:22.523 DEBUG:teuthology.orchestra.run.smithi110:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-14T15:12:22.536 DEBUG:teuthology.orchestra.run.smithi138:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-14T15:12:22.541 DEBUG:teuthology.orchestra.run.smithi047:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-14T15:12:22.574 DEBUG:teuthology.orchestra.run.smithi047:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-14T15:12:22.622 DEBUG:teuthology.orchestra.run.smithi047:> set -ex 2024-04-14T15:12:22.623 DEBUG:teuthology.orchestra.run.smithi047:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-14T15:12:22.689 DEBUG:teuthology.orchestra.run.smithi110:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-14T15:12:22.695 DEBUG:teuthology.orchestra.run.smithi110:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-14T15:12:22.743 DEBUG:teuthology.orchestra.run.smithi110:> set -ex 2024-04-14T15:12:22.744 DEBUG:teuthology.orchestra.run.smithi110:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-14T15:12:22.803 DEBUG:teuthology.orchestra.run.smithi138:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-14T15:12:22.809 DEBUG:teuthology.orchestra.run.smithi138:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-14T15:12:22.857 DEBUG:teuthology.orchestra.run.smithi138:> set -ex 2024-04-14T15:12:22.857 DEBUG:teuthology.orchestra.run.smithi138:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-14T15:12:22.925 DEBUG:teuthology.orchestra.run.smithi047:> sudo service rsyslog restart 2024-04-14T15:12:22.928 DEBUG:teuthology.orchestra.run.smithi110:> sudo service rsyslog restart 2024-04-14T15:12:22.930 DEBUG:teuthology.orchestra.run.smithi138:> sudo service rsyslog restart 2024-04-14T15:12:22.997 INFO:teuthology.run_tasks:Running task internal.timer... 2024-04-14T15:12:23.005 INFO:teuthology.task.internal:Starting timer... 2024-04-14T15:12:23.006 INFO:teuthology.run_tasks:Running task pcp... 2024-04-14T15:12:23.016 INFO:teuthology.run_tasks:Running task selinux... 2024-04-14T15:12:23.025 DEBUG:teuthology.task.selinux:Excluding smithi047: OS 'ubuntu' does not support SELinux 2024-04-14T15:12:23.025 DEBUG:teuthology.task.selinux:Excluding smithi110: OS 'ubuntu' does not support SELinux 2024-04-14T15:12:23.025 DEBUG:teuthology.task.selinux:Excluding smithi138: OS 'ubuntu' does not support SELinux 2024-04-14T15:12:23.026 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-04-14T15:12:23.026 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2024-04-14T15:12:23.026 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-04-14T15:12:23.026 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-04-14T15:12:23.039 DEBUG:teuthology.repo_utils:Setting repo remote to https://git.ceph.com/ceph-cm-ansible.git 2024-04-14T15:12:23.045 INFO:teuthology.repo_utils:Fetching git.ceph.com_ceph-cm-ansible_main from origin 2024-04-14T15:12:23.174 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-04-14T15:12:23.190 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-14T15:12:23.191 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi047.front.sepia.ceph.com,smithi110.front.sepia.ceph.com,smithi138.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-04-14T15:19:31.042 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi047.front.sepia.ceph.com'), Remote(name='ubuntu@smithi110.front.sepia.ceph.com'), Remote(name='ubuntu@smithi138.front.sepia.ceph.com')] 2024-04-14T15:19:31.044 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi047.front.sepia.ceph.com' 2024-04-14T15:19:31.045 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi047.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-14T15:19:31.127 DEBUG:teuthology.orchestra.run.smithi047:> true 2024-04-14T15:19:31.203 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi047.front.sepia.ceph.com' 2024-04-14T15:19:31.203 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi110.front.sepia.ceph.com' 2024-04-14T15:19:31.204 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi110.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-14T15:19:31.284 DEBUG:teuthology.orchestra.run.smithi110:> true 2024-04-14T15:19:31.362 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi110.front.sepia.ceph.com' 2024-04-14T15:19:31.362 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi138.front.sepia.ceph.com' 2024-04-14T15:19:31.363 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi138.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-14T15:19:31.445 DEBUG:teuthology.orchestra.run.smithi138:> true 2024-04-14T15:19:31.522 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi138.front.sepia.ceph.com' 2024-04-14T15:19:31.523 INFO:teuthology.run_tasks:Running task clock... 2024-04-14T15:19:31.537 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-04-14T15:19:31.537 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-14T15:19:31.538 DEBUG:teuthology.orchestra.run.smithi047:> 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-14T15:19:31.540 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-14T15:19:31.540 DEBUG:teuthology.orchestra.run.smithi110:> 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-14T15:19:31.543 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-14T15:19:31.543 DEBUG:teuthology.orchestra.run.smithi138:> 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-14T15:19:31.566 INFO:teuthology.orchestra.run.smithi047.stdout:14 Apr 15:19:31 ntpd[17141]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-04-14T15:19:31.566 INFO:teuthology.orchestra.run.smithi047.stdout:14 Apr 15:19:31 ntpd[17141]: Command line: ntpd -gq 2024-04-14T15:19:31.566 INFO:teuthology.orchestra.run.smithi047.stdout:14 Apr 15:19:31 ntpd[17141]: ---------------------------------------------------- 2024-04-14T15:19:31.566 INFO:teuthology.orchestra.run.smithi047.stdout:14 Apr 15:19:31 ntpd[17141]: ntp-4 is maintained by Network Time Foundation, 2024-04-14T15:19:31.567 INFO:teuthology.orchestra.run.smithi047.stdout:14 Apr 15:19:31 ntpd[17141]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-04-14T15:19:31.567 INFO:teuthology.orchestra.run.smithi047.stdout:14 Apr 15:19:31 ntpd[17141]: corporation. Support and training for ntp-4 are 2024-04-14T15:19:31.567 INFO:teuthology.orchestra.run.smithi047.stdout:14 Apr 15:19:31 ntpd[17141]: available at https://www.nwtime.org/support 2024-04-14T15:19:31.567 INFO:teuthology.orchestra.run.smithi047.stdout:14 Apr 15:19:31 ntpd[17141]: ---------------------------------------------------- 2024-04-14T15:19:31.568 INFO:teuthology.orchestra.run.smithi047.stdout:14 Apr 15:19:31 ntpd[17141]: proto: precision = 0.120 usec (-23) 2024-04-14T15:19:31.568 INFO:teuthology.orchestra.run.smithi047.stdout:14 Apr 15:19:31 ntpd[17141]: basedate set to 2022-02-04 2024-04-14T15:19:31.568 INFO:teuthology.orchestra.run.smithi047.stdout:14 Apr 15:19:31 ntpd[17141]: gps base set to 2022-02-06 (week 2196) 2024-04-14T15:19:31.568 INFO:teuthology.orchestra.run.smithi047.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-04-14T15:19:31.569 INFO:teuthology.orchestra.run.smithi047.stdout:14 Apr 15:19:31 ntpd[17141]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-04-14T15:19:31.569 INFO:teuthology.orchestra.run.smithi047.stdout:14 Apr 15:19:31 ntpd[17141]: restrict ::: KOD does nothing without LIMITED. 2024-04-14T15:19:31.569 INFO:teuthology.orchestra.run.smithi047.stderr:restrict ::: KOD does nothing without LIMITED. 2024-04-14T15:19:31.570 INFO:teuthology.orchestra.run.smithi047.stdout:14 Apr 15:19:31 ntpd[17141]: Listen and drop on 0 v6wildcard [::]:123 2024-04-14T15:19:31.570 INFO:teuthology.orchestra.run.smithi047.stdout:14 Apr 15:19:31 ntpd[17141]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-04-14T15:19:31.570 INFO:teuthology.orchestra.run.smithi047.stdout:14 Apr 15:19:31 ntpd[17141]: Listen normally on 2 lo 127.0.0.1:123 2024-04-14T15:19:31.570 INFO:teuthology.orchestra.run.smithi047.stdout:14 Apr 15:19:31 ntpd[17141]: Listen normally on 3 ens1f0 172.21.15.47:123 2024-04-14T15:19:31.570 INFO:teuthology.orchestra.run.smithi047.stdout:14 Apr 15:19:31 ntpd[17141]: Listen normally on 4 lo [::1]:123 2024-04-14T15:19:31.570 INFO:teuthology.orchestra.run.smithi047.stdout:14 Apr 15:19:31 ntpd[17141]: Listen normally on 5 ens1f0 [fe80::ec4:7aff:febd:148e%4]:123 2024-04-14T15:19:31.570 INFO:teuthology.orchestra.run.smithi047.stdout:14 Apr 15:19:31 ntpd[17141]: Listening on routing socket on fd #22 for interface updates 2024-04-14T15:19:31.571 INFO:teuthology.orchestra.run.smithi110.stdout:14 Apr 15:19:31 ntpd[17204]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-04-14T15:19:31.571 INFO:teuthology.orchestra.run.smithi110.stdout:14 Apr 15:19:31 ntpd[17204]: Command line: ntpd -gq 2024-04-14T15:19:31.571 INFO:teuthology.orchestra.run.smithi110.stdout:14 Apr 15:19:31 ntpd[17204]: ---------------------------------------------------- 2024-04-14T15:19:31.572 INFO:teuthology.orchestra.run.smithi110.stdout:14 Apr 15:19:31 ntpd[17204]: ntp-4 is maintained by Network Time Foundation, 2024-04-14T15:19:31.572 INFO:teuthology.orchestra.run.smithi110.stdout:14 Apr 15:19:31 ntpd[17204]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-04-14T15:19:31.572 INFO:teuthology.orchestra.run.smithi110.stdout:14 Apr 15:19:31 ntpd[17204]: corporation. Support and training for ntp-4 are 2024-04-14T15:19:31.572 INFO:teuthology.orchestra.run.smithi110.stdout:14 Apr 15:19:31 ntpd[17204]: available at https://www.nwtime.org/support 2024-04-14T15:19:31.572 INFO:teuthology.orchestra.run.smithi110.stdout:14 Apr 15:19:31 ntpd[17204]: ---------------------------------------------------- 2024-04-14T15:19:31.572 INFO:teuthology.orchestra.run.smithi110.stdout:14 Apr 15:19:31 ntpd[17204]: proto: precision = 0.044 usec (-24) 2024-04-14T15:19:31.572 INFO:teuthology.orchestra.run.smithi110.stdout:14 Apr 15:19:31 ntpd[17204]: basedate set to 2022-02-04 2024-04-14T15:19:31.572 INFO:teuthology.orchestra.run.smithi110.stdout:14 Apr 15:19:31 ntpd[17204]: gps base set to 2022-02-06 (week 2196) 2024-04-14T15:19:31.572 INFO:teuthology.orchestra.run.smithi110.stdout:14 Apr 15:19:31 ntpd[17204]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-04-14T15:19:31.572 INFO:teuthology.orchestra.run.smithi110.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-04-14T15:19:31.572 INFO:teuthology.orchestra.run.smithi110.stderr:restrict ::: KOD does nothing without LIMITED. 2024-04-14T15:19:31.573 INFO:teuthology.orchestra.run.smithi110.stdout:14 Apr 15:19:31 ntpd[17204]: restrict ::: KOD does nothing without LIMITED. 2024-04-14T15:19:31.573 INFO:teuthology.orchestra.run.smithi110.stdout:14 Apr 15:19:31 ntpd[17204]: Listen and drop on 0 v6wildcard [::]:123 2024-04-14T15:19:31.573 INFO:teuthology.orchestra.run.smithi110.stdout:14 Apr 15:19:31 ntpd[17204]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-04-14T15:19:31.574 INFO:teuthology.orchestra.run.smithi110.stdout:14 Apr 15:19:31 ntpd[17204]: Listen normally on 2 lo 127.0.0.1:123 2024-04-14T15:19:31.574 INFO:teuthology.orchestra.run.smithi110.stdout:14 Apr 15:19:31 ntpd[17204]: Listen normally on 3 enp3s0f1 172.21.15.110:123 2024-04-14T15:19:31.574 INFO:teuthology.orchestra.run.smithi110.stdout:14 Apr 15:19:31 ntpd[17204]: Listen normally on 4 lo [::1]:123 2024-04-14T15:19:31.574 INFO:teuthology.orchestra.run.smithi110.stdout:14 Apr 15:19:31 ntpd[17204]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe8f:cc35%5]:123 2024-04-14T15:19:31.574 INFO:teuthology.orchestra.run.smithi110.stdout:14 Apr 15:19:31 ntpd[17204]: Listening on routing socket on fd #22 for interface updates 2024-04-14T15:19:31.593 INFO:teuthology.orchestra.run.smithi138.stdout:14 Apr 15:19:31 ntpd[17171]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-04-14T15:19:31.593 INFO:teuthology.orchestra.run.smithi138.stdout:14 Apr 15:19:31 ntpd[17171]: Command line: ntpd -gq 2024-04-14T15:19:31.593 INFO:teuthology.orchestra.run.smithi138.stdout:14 Apr 15:19:31 ntpd[17171]: ---------------------------------------------------- 2024-04-14T15:19:31.593 INFO:teuthology.orchestra.run.smithi138.stdout:14 Apr 15:19:31 ntpd[17171]: ntp-4 is maintained by Network Time Foundation, 2024-04-14T15:19:31.593 INFO:teuthology.orchestra.run.smithi138.stdout:14 Apr 15:19:31 ntpd[17171]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-04-14T15:19:31.593 INFO:teuthology.orchestra.run.smithi138.stdout:14 Apr 15:19:31 ntpd[17171]: corporation. Support and training for ntp-4 are 2024-04-14T15:19:31.593 INFO:teuthology.orchestra.run.smithi138.stdout:14 Apr 15:19:31 ntpd[17171]: available at https://www.nwtime.org/support 2024-04-14T15:19:31.594 INFO:teuthology.orchestra.run.smithi138.stdout:14 Apr 15:19:31 ntpd[17171]: ---------------------------------------------------- 2024-04-14T15:19:31.594 INFO:teuthology.orchestra.run.smithi138.stdout:14 Apr 15:19:31 ntpd[17171]: proto: precision = 0.061 usec (-24) 2024-04-14T15:19:31.594 INFO:teuthology.orchestra.run.smithi138.stdout:14 Apr 15:19:31 ntpd[17171]: basedate set to 2022-02-04 2024-04-14T15:19:31.594 INFO:teuthology.orchestra.run.smithi138.stdout:14 Apr 15:19:31 ntpd[17171]: gps base set to 2022-02-06 (week 2196) 2024-04-14T15:19:31.595 INFO:teuthology.orchestra.run.smithi138.stdout:14 Apr 15:19:31 ntpd[17171]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-04-14T15:19:31.595 INFO:teuthology.orchestra.run.smithi138.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-04-14T15:19:31.595 INFO:teuthology.orchestra.run.smithi138.stderr:restrict ::: KOD does nothing without LIMITED. 2024-04-14T15:19:31.596 INFO:teuthology.orchestra.run.smithi138.stdout:14 Apr 15:19:31 ntpd[17171]: restrict ::: KOD does nothing without LIMITED. 2024-04-14T15:19:31.596 INFO:teuthology.orchestra.run.smithi138.stdout:14 Apr 15:19:31 ntpd[17171]: Listen and drop on 0 v6wildcard [::]:123 2024-04-14T15:19:31.596 INFO:teuthology.orchestra.run.smithi138.stdout:14 Apr 15:19:31 ntpd[17171]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-04-14T15:19:31.596 INFO:teuthology.orchestra.run.smithi138.stdout:14 Apr 15:19:31 ntpd[17171]: Listen normally on 2 lo 127.0.0.1:123 2024-04-14T15:19:31.596 INFO:teuthology.orchestra.run.smithi138.stdout:14 Apr 15:19:31 ntpd[17171]: Listen normally on 3 enp3s0f1 172.21.15.138:123 2024-04-14T15:19:31.596 INFO:teuthology.orchestra.run.smithi138.stdout:14 Apr 15:19:31 ntpd[17171]: Listen normally on 4 lo [::1]:123 2024-04-14T15:19:31.596 INFO:teuthology.orchestra.run.smithi138.stdout:14 Apr 15:19:31 ntpd[17171]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe88:6f71%5]:123 2024-04-14T15:19:31.596 INFO:teuthology.orchestra.run.smithi138.stdout:14 Apr 15:19:31 ntpd[17171]: Listening on routing socket on fd #22 for interface updates 2024-04-14T15:19:32.567 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:32 ntpd[17141]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:32.567 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:32 ntpd[17141]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:32.570 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:32 ntpd[17204]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:32.570 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:32 ntpd[17204]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:32.593 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:32 ntpd[17171]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:32.593 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:32 ntpd[17171]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:33.567 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:33 ntpd[17141]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:33.567 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:33 ntpd[17141]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:33.567 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:33 ntpd[17141]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:33.567 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:33 ntpd[17141]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:33.567 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:33 ntpd[17141]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-14T15:19:33.567 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:33 ntpd[17141]: can't open /var/log/ntpstats/peerstats.20240414: Permission denied 2024-04-14T15:19:34.571 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:34 ntpd[17204]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:34.571 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:34 ntpd[17204]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:34.571 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:34 ntpd[17204]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:34.571 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:34 ntpd[17204]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:34.571 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:34 ntpd[17204]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-14T15:19:34.571 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:34 ntpd[17204]: can't open /var/log/ntpstats/peerstats.20240414: Permission denied 2024-04-14T15:19:34.594 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:34 ntpd[17171]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:34.594 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:34 ntpd[17171]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:34.594 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:34 ntpd[17171]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:34.594 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:34 ntpd[17171]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:34.594 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:34 ntpd[17171]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:34.594 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:34 ntpd[17171]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:34.595 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:34 ntpd[17171]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-14T15:19:34.595 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:34 ntpd[17171]: can't open /var/log/ntpstats/peerstats.20240414: Permission denied 2024-04-14T15:19:34.595 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:34 ntpd[17171]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:34.595 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:34 ntpd[17171]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:34.595 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:34 ntpd[17171]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-14T15:19:34.595 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:34 ntpd[17171]: can't open /var/log/ntpstats/peerstats.20240414: Permission denied 2024-04-14T15:19:35.567 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:35 ntpd[17141]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:35.568 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:35 ntpd[17141]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:35.568 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:35 ntpd[17141]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:35.568 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:35 ntpd[17141]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:35.568 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:35 ntpd[17141]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:35.568 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:35 ntpd[17141]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:35.568 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:35 ntpd[17141]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:35.568 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:35 ntpd[17141]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:35.568 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:35 ntpd[17141]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-14T15:19:35.568 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:35 ntpd[17141]: can't open /var/log/ntpstats/peerstats.20240414: Permission denied 2024-04-14T15:19:35.568 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:35 ntpd[17141]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:35.568 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:35 ntpd[17141]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:35.568 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:35 ntpd[17141]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-14T15:19:35.568 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:35 ntpd[17141]: can't open /var/log/ntpstats/peerstats.20240414: Permission denied 2024-04-14T15:19:35.569 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:35 ntpd[17141]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:35.569 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:35 ntpd[17141]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:35.569 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:35 ntpd[17141]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-14T15:19:35.569 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:35 ntpd[17141]: can't open /var/log/ntpstats/peerstats.20240414: Permission denied 2024-04-14T15:19:35.571 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:35 ntpd[17204]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:35.571 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:35 ntpd[17204]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:35.571 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:35 ntpd[17204]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:35.571 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:35 ntpd[17204]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:35.571 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:35 ntpd[17204]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-14T15:19:35.571 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:35 ntpd[17204]: can't open /var/log/ntpstats/peerstats.20240414: Permission denied 2024-04-14T15:19:35.594 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:35 ntpd[17171]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:35.594 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:35 ntpd[17171]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:35.594 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:35 ntpd[17171]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:35.594 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:35 ntpd[17171]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:35.594 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:35 ntpd[17171]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-14T15:19:35.594 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:35 ntpd[17171]: can't open /var/log/ntpstats/peerstats.20240414: Permission denied 2024-04-14T15:19:36.571 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:36 ntpd[17204]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:36.572 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:36 ntpd[17204]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:36.572 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:36 ntpd[17204]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:36.572 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:36 ntpd[17204]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:36.572 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:36 ntpd[17204]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:36.572 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:36 ntpd[17204]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:36.572 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:36 ntpd[17204]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-14T15:19:36.572 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:36 ntpd[17204]: can't open /var/log/ntpstats/peerstats.20240414: Permission denied 2024-04-14T15:19:36.572 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:36 ntpd[17204]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:36.572 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:36 ntpd[17204]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:36.572 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:36 ntpd[17204]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-14T15:19:36.572 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:36 ntpd[17204]: can't open /var/log/ntpstats/peerstats.20240414: Permission denied 2024-04-14T15:19:36.594 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:36 ntpd[17171]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:36.594 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:36 ntpd[17171]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:36.594 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:36 ntpd[17171]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:36.594 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:36 ntpd[17171]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:36.594 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:36 ntpd[17171]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:36.594 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:36 ntpd[17171]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:36.595 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:36 ntpd[17171]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-14T15:19:36.595 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:36 ntpd[17171]: can't open /var/log/ntpstats/peerstats.20240414: Permission denied 2024-04-14T15:19:36.595 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:36 ntpd[17171]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:36.595 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:36 ntpd[17171]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:36.595 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:36 ntpd[17171]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-14T15:19:36.595 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:36 ntpd[17171]: can't open /var/log/ntpstats/peerstats.20240414: Permission denied 2024-04-14T15:19:37.567 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:37 ntpd[17141]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:37.568 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:37 ntpd[17141]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:37.568 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:37 ntpd[17141]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:37.568 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:37 ntpd[17141]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:37.568 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:37 ntpd[17141]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:37.568 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:37 ntpd[17141]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:37.568 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:37 ntpd[17141]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:37.568 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:37 ntpd[17141]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:37.568 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:37 ntpd[17141]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-14T15:19:37.568 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:37 ntpd[17141]: can't open /var/log/ntpstats/peerstats.20240414: Permission denied 2024-04-14T15:19:37.568 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:37 ntpd[17141]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:37.568 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:37 ntpd[17141]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:37.568 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:37 ntpd[17141]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-14T15:19:37.568 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:37 ntpd[17141]: can't open /var/log/ntpstats/peerstats.20240414: Permission denied 2024-04-14T15:19:37.568 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:37 ntpd[17141]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:37.568 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:37 ntpd[17141]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:37.569 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:37 ntpd[17141]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-14T15:19:37.569 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:37 ntpd[17141]: can't open /var/log/ntpstats/peerstats.20240414: Permission denied 2024-04-14T15:19:37.571 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:37 ntpd[17204]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:37.571 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:37 ntpd[17204]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:37.571 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:37 ntpd[17204]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:37.571 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:37 ntpd[17204]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:37.571 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:37 ntpd[17204]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-14T15:19:37.571 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:37 ntpd[17204]: can't open /var/log/ntpstats/peerstats.20240414: Permission denied 2024-04-14T15:19:37.594 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:37 ntpd[17171]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:37.594 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:37 ntpd[17171]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:37.594 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:37 ntpd[17171]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:37.594 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:37 ntpd[17171]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:37.594 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:37 ntpd[17171]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-14T15:19:37.594 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:37 ntpd[17171]: can't open /var/log/ntpstats/peerstats.20240414: Permission denied 2024-04-14T15:19:38.571 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:38 ntpd[17204]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:38.572 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:38 ntpd[17204]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:38.572 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:38 ntpd[17204]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:38.572 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:38 ntpd[17204]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:38.572 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:38 ntpd[17204]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:38.572 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:38 ntpd[17204]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:38.572 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:38 ntpd[17204]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-14T15:19:38.572 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:38 ntpd[17204]: can't open /var/log/ntpstats/peerstats.20240414: Permission denied 2024-04-14T15:19:38.572 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:38 ntpd[17204]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:38.572 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:38 ntpd[17204]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:38.572 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:38 ntpd[17204]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-14T15:19:38.572 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:38 ntpd[17204]: can't open /var/log/ntpstats/peerstats.20240414: Permission denied 2024-04-14T15:19:38.594 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:38 ntpd[17171]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:38.594 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:38 ntpd[17171]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:38.594 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:38 ntpd[17171]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:38.594 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:38 ntpd[17171]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:38.594 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:38 ntpd[17171]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:38.594 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:38 ntpd[17171]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:38.595 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:38 ntpd[17171]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-14T15:19:38.595 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:38 ntpd[17171]: can't open /var/log/ntpstats/peerstats.20240414: Permission denied 2024-04-14T15:19:38.595 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:38 ntpd[17171]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:38.595 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:38 ntpd[17171]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:38.595 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:38 ntpd[17171]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-14T15:19:38.595 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:38 ntpd[17171]: can't open /var/log/ntpstats/peerstats.20240414: Permission denied 2024-04-14T15:19:39.567 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:39 ntpd[17141]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:39.567 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:39 ntpd[17141]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:39.567 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:39 ntpd[17141]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:39.567 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:39 ntpd[17141]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:39.568 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:39 ntpd[17141]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:39.568 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:39 ntpd[17141]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:39.568 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:39 ntpd[17141]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:39.568 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:39 ntpd[17141]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:39.568 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:39 ntpd[17141]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-14T15:19:39.568 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:39 ntpd[17141]: can't open /var/log/ntpstats/peerstats.20240414: Permission denied 2024-04-14T15:19:39.568 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:39 ntpd[17141]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:39.568 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:39 ntpd[17141]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:39.568 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:39 ntpd[17141]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-14T15:19:39.568 INFO:teuthology.orchestra.run.smithi047.stdout:14 Apr 15:19:39 ntpd[17141]: ntpd: time slew +0.001215 s 2024-04-14T15:19:39.568 INFO:teuthology.orchestra.run.smithi047.stdout:ntpd: time slew +0.001215s 2024-04-14T15:19:39.569 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:39 ntpd[17141]: can't open /var/log/ntpstats/peerstats.20240414: Permission denied 2024-04-14T15:19:39.569 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:39 ntpd[17141]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-04-14T15:19:39.569 INFO:teuthology.orchestra.run.smithi047.stderr:14 Apr 15:19:39 ntpd[17141]: can't open /var/log/ntpstats/loopstats.20240414: Permission denied 2024-04-14T15:19:39.571 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:39 ntpd[17204]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:39.571 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:39 ntpd[17204]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:39.571 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:39 ntpd[17204]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:39.571 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:39 ntpd[17204]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:39.571 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:39 ntpd[17204]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-14T15:19:39.571 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:39 ntpd[17204]: can't open /var/log/ntpstats/peerstats.20240414: Permission denied 2024-04-14T15:19:39.593 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:39 ntpd[17171]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:39.593 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:39 ntpd[17171]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:39.594 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:39 ntpd[17171]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:39.594 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:39 ntpd[17171]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:39.594 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:39 ntpd[17171]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-14T15:19:39.594 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:39 ntpd[17171]: can't open /var/log/ntpstats/peerstats.20240414: Permission denied 2024-04-14T15:19:39.623 INFO:teuthology.orchestra.run.smithi047.stdout: remote refid st t when poll reach delay offset jitter 2024-04-14T15:19:39.623 INFO:teuthology.orchestra.run.smithi047.stdout:============================================================================== 2024-04-14T15:19:39.623 INFO:teuthology.orchestra.run.smithi047.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-14T15:19:39.623 INFO:teuthology.orchestra.run.smithi047.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-14T15:19:39.624 INFO:teuthology.orchestra.run.smithi047.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-14T15:19:39.624 INFO:teuthology.orchestra.run.smithi047.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-14T15:19:40.572 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:40 ntpd[17204]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:40.572 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:40 ntpd[17204]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:40.572 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:40 ntpd[17204]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:40.572 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:40 ntpd[17204]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:40.572 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:40 ntpd[17204]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:40.572 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:40 ntpd[17204]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:40.572 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:40 ntpd[17204]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-14T15:19:40.572 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:40 ntpd[17204]: can't open /var/log/ntpstats/peerstats.20240414: Permission denied 2024-04-14T15:19:40.572 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:40 ntpd[17204]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:40.572 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:40 ntpd[17204]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:40.572 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:40 ntpd[17204]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-14T15:19:40.572 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:40 ntpd[17204]: can't open /var/log/ntpstats/peerstats.20240414: Permission denied 2024-04-14T15:19:40.573 INFO:teuthology.orchestra.run.smithi110.stdout:14 Apr 15:19:40 ntpd[17204]: ntpd: time slew +0.003065 s 2024-04-14T15:19:40.573 INFO:teuthology.orchestra.run.smithi110.stdout:ntpd: time slew +0.003065s 2024-04-14T15:19:40.573 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:40 ntpd[17204]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-04-14T15:19:40.573 INFO:teuthology.orchestra.run.smithi110.stderr:14 Apr 15:19:40 ntpd[17204]: can't open /var/log/ntpstats/loopstats.20240414: Permission denied 2024-04-14T15:19:40.594 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:40 ntpd[17171]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:40.594 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:40 ntpd[17171]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:40.594 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:40 ntpd[17171]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:40.594 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:40 ntpd[17171]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:40.594 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:40 ntpd[17171]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-14T15:19:40.594 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:40 ntpd[17171]: can't open /var/log/ntpstats/rawstats.20240414: Permission denied 2024-04-14T15:19:40.594 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:40 ntpd[17171]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-14T15:19:40.594 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:40 ntpd[17171]: can't open /var/log/ntpstats/peerstats.20240414: Permission denied 2024-04-14T15:19:40.594 INFO:teuthology.orchestra.run.smithi138.stdout:14 Apr 15:19:40 ntpd[17171]: ntpd: time slew -0.000664 s 2024-04-14T15:19:40.595 INFO:teuthology.orchestra.run.smithi138.stdout:ntpd: time slew -0.000664s 2024-04-14T15:19:40.595 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:40 ntpd[17171]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-04-14T15:19:40.595 INFO:teuthology.orchestra.run.smithi138.stderr:14 Apr 15:19:40 ntpd[17171]: can't open /var/log/ntpstats/loopstats.20240414: Permission denied 2024-04-14T15:19:40.630 INFO:teuthology.orchestra.run.smithi110.stdout: remote refid st t when poll reach delay offset jitter 2024-04-14T15:19:40.630 INFO:teuthology.orchestra.run.smithi110.stdout:============================================================================== 2024-04-14T15:19:40.630 INFO:teuthology.orchestra.run.smithi110.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-14T15:19:40.630 INFO:teuthology.orchestra.run.smithi110.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-14T15:19:40.630 INFO:teuthology.orchestra.run.smithi110.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-14T15:19:40.630 INFO:teuthology.orchestra.run.smithi110.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-14T15:19:40.653 INFO:teuthology.orchestra.run.smithi138.stdout: remote refid st t when poll reach delay offset jitter 2024-04-14T15:19:40.653 INFO:teuthology.orchestra.run.smithi138.stdout:============================================================================== 2024-04-14T15:19:40.653 INFO:teuthology.orchestra.run.smithi138.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-14T15:19:40.653 INFO:teuthology.orchestra.run.smithi138.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-14T15:19:40.653 INFO:teuthology.orchestra.run.smithi138.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-14T15:19:40.653 INFO:teuthology.orchestra.run.smithi138.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-14T15:19:40.654 INFO:teuthology.run_tasks:Running task install... 2024-04-14T15:19:40.662 DEBUG:teuthology.task.install:project ceph 2024-04-14T15:19:40.663 DEBUG:teuthology.task.install:INSTALL overrides: {'ceph': {'flavor': 'default', 'sha1': 'a971fd5f5719038c70b817bafacd6d5400b1d888'}} 2024-04-14T15:19:40.663 DEBUG:teuthology.task.install:config {'flavor': 'default', 'sha1': 'a971fd5f5719038c70b817bafacd6d5400b1d888'} 2024-04-14T15:19:40.663 INFO:teuthology.task.install:Using flavor: default 2024-04-14T15:19:40.668 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-14T15:19:40.668 INFO:teuthology.task.install:extra packages: [] 2024-04-14T15:19:40.669 DEBUG:teuthology.orchestra.run.smithi047:> sudo apt-key list | grep Ceph 2024-04-14T15:19:40.669 DEBUG:teuthology.orchestra.run.smithi110:> sudo apt-key list | grep Ceph 2024-04-14T15:19:40.669 DEBUG:teuthology.orchestra.run.smithi138:> sudo apt-key list | grep Ceph 2024-04-14T15:19:40.731 INFO:teuthology.orchestra.run.smithi110.stderr:Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)). 2024-04-14T15:19:40.735 INFO:teuthology.orchestra.run.smithi047.stderr:Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)). 2024-04-14T15:19:40.753 INFO:teuthology.orchestra.run.smithi138.stderr:Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)). 2024-04-14T15:19:40.759 INFO:teuthology.orchestra.run.smithi110.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-04-14T15:19:40.759 INFO:teuthology.orchestra.run.smithi110.stdout:uid [ unknown] Ceph.com (release key) 2024-04-14T15:19:40.760 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-14T15:19:40.760 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=a971fd5f5719038c70b817bafacd6d5400b1d888 2024-04-14T15:19:40.765 INFO:teuthology.orchestra.run.smithi047.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-04-14T15:19:40.765 INFO:teuthology.orchestra.run.smithi047.stdout:uid [ unknown] Ceph.com (release key) 2024-04-14T15:19:40.765 INFO:teuthology.task.install.deb:Installing packages: ceph, cephadm, ceph-mds, ceph-mgr, ceph-common, ceph-fuse, ceph-test, ceph-volume, radosgw, python3-rados, python3-rgw, python3-cephfs, python3-rbd, libcephfs2, libcephfs-dev, librados2, librbd1, rbd-fuse on remote deb x86_64 2024-04-14T15:19:40.765 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=a971fd5f5719038c70b817bafacd6d5400b1d888 2024-04-14T15:19:40.781 INFO:teuthology.orchestra.run.smithi138.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-04-14T15:19:40.781 INFO:teuthology.orchestra.run.smithi138.stdout:uid [ unknown] Ceph.com (release key) 2024-04-14T15:19:40.782 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-14T15:19:40.782 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=a971fd5f5719038c70b817bafacd6d5400b1d888 2024-04-14T15:19:40.902 INFO:teuthology.task.install.deb:Pulling from https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default/ 2024-04-14T15:19:40.903 INFO:teuthology.task.install.deb:Package version is 19.0.0-2778-ga971fd5f-1jammy 2024-04-14T15:19:40.980 INFO:teuthology.task.install.deb:Pulling from https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default/ 2024-04-14T15:19:40.980 INFO:teuthology.task.install.deb:Package version is 19.0.0-2778-ga971fd5f-1jammy 2024-04-14T15:19:41.005 INFO:teuthology.task.install.deb:Pulling from https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default/ 2024-04-14T15:19:41.005 INFO:teuthology.task.install.deb:Package version is 19.0.0-2778-ga971fd5f-1jammy 2024-04-14T15:19:41.017 DEBUG:teuthology.orchestra.run.smithi110:> set -ex 2024-04-14T15:19:41.017 DEBUG:teuthology.orchestra.run.smithi110:> sudo dd of=/etc/apt/sources.list.d/ceph.list 2024-04-14T15:19:41.037 DEBUG:teuthology.orchestra.run.smithi110:> sudo apt-get update 2024-04-14T15:19:41.115 DEBUG:teuthology.orchestra.run.smithi138:> set -ex 2024-04-14T15:19:41.115 DEBUG:teuthology.orchestra.run.smithi138:> sudo dd of=/etc/apt/sources.list.d/ceph.list 2024-04-14T15:19:41.129 DEBUG:teuthology.orchestra.run.smithi138:> sudo apt-get update 2024-04-14T15:19:41.163 DEBUG:teuthology.orchestra.run.smithi047:> set -ex 2024-04-14T15:19:41.163 DEBUG:teuthology.orchestra.run.smithi047:> sudo dd of=/etc/apt/sources.list.d/ceph.list 2024-04-14T15:19:41.177 DEBUG:teuthology.orchestra.run.smithi047:> sudo apt-get update 2024-04-14T15:19:41.257 INFO:teuthology.orchestra.run.smithi110.stdout:Ign:1 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy InRelease 2024-04-14T15:19:41.278 INFO:teuthology.orchestra.run.smithi110.stdout:Get:2 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy Release [7,662 B] 2024-04-14T15:19:41.304 INFO:teuthology.orchestra.run.smithi110.stdout:Ign:3 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy Release.gpg 2024-04-14T15:19:41.323 INFO:teuthology.orchestra.run.smithi138.stdout:Hit:1 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-04-14T15:19:41.331 INFO:teuthology.orchestra.run.smithi110.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-14T15:19:41.332 INFO:teuthology.orchestra.run.smithi110.stdout:Get:5 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main i386 Packages [3,409 B] 2024-04-14T15:19:41.352 INFO:teuthology.orchestra.run.smithi138.stdout:Ign:2 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy InRelease 2024-04-14T15:19:41.353 INFO:teuthology.orchestra.run.smithi110.stdout:Hit:6 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-04-14T15:19:41.361 INFO:teuthology.orchestra.run.smithi110.stdout:Get:7 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 Packages [18.1 kB] 2024-04-14T15:19:41.373 INFO:teuthology.orchestra.run.smithi138.stdout:Get:3 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy Release [7,662 B] 2024-04-14T15:19:41.396 INFO:teuthology.orchestra.run.smithi138.stdout:Ign:4 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy Release.gpg 2024-04-14T15:19:41.397 INFO:teuthology.orchestra.run.smithi047.stdout:Hit:1 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-04-14T15:19:41.402 INFO:teuthology.orchestra.run.smithi047.stdout:Ign:2 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy InRelease 2024-04-14T15:19:41.404 INFO:teuthology.orchestra.run.smithi110.stdout:Hit:8 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-04-14T15:19:41.418 INFO:teuthology.orchestra.run.smithi138.stdout:Get:5 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 Packages [18.1 kB] 2024-04-14T15:19:41.423 INFO:teuthology.orchestra.run.smithi047.stdout:Get:3 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy Release [7,662 B] 2024-04-14T15:19:41.426 INFO:teuthology.orchestra.run.smithi138.stdout:Hit:6 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-14T15:19:41.445 INFO:teuthology.orchestra.run.smithi047.stdout:Ign:4 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy Release.gpg 2024-04-14T15:19:41.447 INFO:teuthology.orchestra.run.smithi138.stdout:Get:7 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main i386 Packages [3,409 B] 2024-04-14T15:19:41.466 INFO:teuthology.orchestra.run.smithi047.stdout:Get:5 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 Packages [18.1 kB] 2024-04-14T15:19:41.473 INFO:teuthology.orchestra.run.smithi047.stdout:Hit:6 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-14T15:19:41.485 INFO:teuthology.orchestra.run.smithi110.stdout:Hit:9 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-04-14T15:19:41.494 INFO:teuthology.orchestra.run.smithi047.stdout:Get:7 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main i386 Packages [3,409 B] 2024-04-14T15:19:41.505 INFO:teuthology.orchestra.run.smithi138.stdout:Hit:8 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-04-14T15:19:41.554 INFO:teuthology.orchestra.run.smithi047.stdout:Hit:8 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-04-14T15:19:41.583 INFO:teuthology.orchestra.run.smithi138.stdout:Hit:9 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-04-14T15:19:41.632 INFO:teuthology.orchestra.run.smithi047.stdout:Hit:9 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-04-14T15:19:41.689 INFO:teuthology.orchestra.run.smithi110.stdout:Fetched 29.2 kB in 0s (61.4 kB/s) 2024-04-14T15:19:41.724 INFO:teuthology.orchestra.run.smithi138.stdout:Fetched 29.2 kB in 0s (71.0 kB/s) 2024-04-14T15:19:41.781 INFO:teuthology.orchestra.run.smithi047.stdout:Fetched 29.2 kB in 0s (69.6 kB/s) 2024-04-14T15:19:42.622 INFO:teuthology.orchestra.run.smithi110.stdout:Reading package lists... 2024-04-14T15:19:42.637 DEBUG:teuthology.orchestra.run.smithi110:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install ceph=19.0.0-2778-ga971fd5f-1jammy cephadm=19.0.0-2778-ga971fd5f-1jammy ceph-mds=19.0.0-2778-ga971fd5f-1jammy ceph-mgr=19.0.0-2778-ga971fd5f-1jammy ceph-common=19.0.0-2778-ga971fd5f-1jammy ceph-fuse=19.0.0-2778-ga971fd5f-1jammy ceph-test=19.0.0-2778-ga971fd5f-1jammy ceph-volume=19.0.0-2778-ga971fd5f-1jammy radosgw=19.0.0-2778-ga971fd5f-1jammy python3-rados=19.0.0-2778-ga971fd5f-1jammy python3-rgw=19.0.0-2778-ga971fd5f-1jammy python3-cephfs=19.0.0-2778-ga971fd5f-1jammy python3-rbd=19.0.0-2778-ga971fd5f-1jammy libcephfs2=19.0.0-2778-ga971fd5f-1jammy libcephfs-dev=19.0.0-2778-ga971fd5f-1jammy librados2=19.0.0-2778-ga971fd5f-1jammy librbd1=19.0.0-2778-ga971fd5f-1jammy rbd-fuse=19.0.0-2778-ga971fd5f-1jammy 2024-04-14T15:19:42.688 INFO:teuthology.orchestra.run.smithi110.stdout:Reading package lists... 2024-04-14T15:19:42.690 INFO:teuthology.orchestra.run.smithi138.stdout:Reading package lists... 2024-04-14T15:19:42.706 DEBUG:teuthology.orchestra.run.smithi138:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install ceph=19.0.0-2778-ga971fd5f-1jammy cephadm=19.0.0-2778-ga971fd5f-1jammy ceph-mds=19.0.0-2778-ga971fd5f-1jammy ceph-mgr=19.0.0-2778-ga971fd5f-1jammy ceph-common=19.0.0-2778-ga971fd5f-1jammy ceph-fuse=19.0.0-2778-ga971fd5f-1jammy ceph-test=19.0.0-2778-ga971fd5f-1jammy ceph-volume=19.0.0-2778-ga971fd5f-1jammy radosgw=19.0.0-2778-ga971fd5f-1jammy python3-rados=19.0.0-2778-ga971fd5f-1jammy python3-rgw=19.0.0-2778-ga971fd5f-1jammy python3-cephfs=19.0.0-2778-ga971fd5f-1jammy python3-rbd=19.0.0-2778-ga971fd5f-1jammy libcephfs2=19.0.0-2778-ga971fd5f-1jammy libcephfs-dev=19.0.0-2778-ga971fd5f-1jammy librados2=19.0.0-2778-ga971fd5f-1jammy librbd1=19.0.0-2778-ga971fd5f-1jammy rbd-fuse=19.0.0-2778-ga971fd5f-1jammy 2024-04-14T15:19:42.717 INFO:teuthology.orchestra.run.smithi047.stdout:Reading package lists... 2024-04-14T15:19:42.734 DEBUG:teuthology.orchestra.run.smithi047:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install ceph=19.0.0-2778-ga971fd5f-1jammy cephadm=19.0.0-2778-ga971fd5f-1jammy ceph-mds=19.0.0-2778-ga971fd5f-1jammy ceph-mgr=19.0.0-2778-ga971fd5f-1jammy ceph-common=19.0.0-2778-ga971fd5f-1jammy ceph-fuse=19.0.0-2778-ga971fd5f-1jammy ceph-test=19.0.0-2778-ga971fd5f-1jammy ceph-volume=19.0.0-2778-ga971fd5f-1jammy radosgw=19.0.0-2778-ga971fd5f-1jammy python3-rados=19.0.0-2778-ga971fd5f-1jammy python3-rgw=19.0.0-2778-ga971fd5f-1jammy python3-cephfs=19.0.0-2778-ga971fd5f-1jammy python3-rbd=19.0.0-2778-ga971fd5f-1jammy libcephfs2=19.0.0-2778-ga971fd5f-1jammy libcephfs-dev=19.0.0-2778-ga971fd5f-1jammy librados2=19.0.0-2778-ga971fd5f-1jammy librbd1=19.0.0-2778-ga971fd5f-1jammy rbd-fuse=19.0.0-2778-ga971fd5f-1jammy 2024-04-14T15:19:42.758 INFO:teuthology.orchestra.run.smithi138.stdout:Reading package lists... 2024-04-14T15:19:42.796 INFO:teuthology.orchestra.run.smithi047.stdout:Reading package lists... 2024-04-14T15:19:42.869 INFO:teuthology.orchestra.run.smithi110.stdout:Building dependency tree... 2024-04-14T15:19:42.870 INFO:teuthology.orchestra.run.smithi110.stdout:Reading state information... 2024-04-14T15:19:42.934 INFO:teuthology.orchestra.run.smithi138.stdout:Building dependency tree... 2024-04-14T15:19:42.935 INFO:teuthology.orchestra.run.smithi138.stdout:Reading state information... 2024-04-14T15:19:42.994 INFO:teuthology.orchestra.run.smithi047.stdout:Building dependency tree... 2024-04-14T15:19:42.994 INFO:teuthology.orchestra.run.smithi047.stdout:Reading state information... 2024-04-14T15:19:43.045 INFO:teuthology.orchestra.run.smithi110.stdout:The following packages were automatically installed and are no longer required: 2024-04-14T15:19:43.045 INFO:teuthology.orchestra.run.smithi110.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-14T15:19:43.045 INFO:teuthology.orchestra.run.smithi110.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-14T15:19:43.046 INFO:teuthology.orchestra.run.smithi110.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-14T15:19:43.046 INFO:teuthology.orchestra.run.smithi110.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-04-14T15:19:43.046 INFO:teuthology.orchestra.run.smithi110.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-04-14T15:19:43.046 INFO:teuthology.orchestra.run.smithi110.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-14T15:19:43.046 INFO:teuthology.orchestra.run.smithi110.stdout:The following additional packages will be installed: 2024-04-14T15:19:43.047 INFO:teuthology.orchestra.run.smithi110.stdout: ceph-base ceph-mgr-cephadm ceph-mgr-dashboard ceph-mgr-diskprediction-local 2024-04-14T15:19:43.047 INFO:teuthology.orchestra.run.smithi110.stdout: ceph-mgr-k8sevents ceph-mgr-modules-core ceph-mon ceph-osd jq 2024-04-14T15:19:43.048 INFO:teuthology.orchestra.run.smithi110.stdout: libdouble-conversion3 libjq1 liblttng-ust1 liblua5.3-dev liboath0 libonig5 2024-04-14T15:19:43.048 INFO:teuthology.orchestra.run.smithi110.stdout: libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 libradosstriper1 2024-04-14T15:19:43.048 INFO:teuthology.orchestra.run.smithi110.stdout: librdkafka1 libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 2024-04-14T15:19:43.048 INFO:teuthology.orchestra.run.smithi110.stdout: lua-any lua-sec lua-socket lua5.1 luarocks nvme-cli pkg-config 2024-04-14T15:19:43.048 INFO:teuthology.orchestra.run.smithi110.stdout: python-asyncssh-doc python-babel-localedata python-pastedeploy-tpl 2024-04-14T15:19:43.048 INFO:teuthology.orchestra.run.smithi110.stdout: python3-asyncssh python3-babel python3-bcrypt python3-cachetools 2024-04-14T15:19:43.048 INFO:teuthology.orchestra.run.smithi110.stdout: python3-ceph-argparse python3-ceph-common python3-certifi python3-cheroot 2024-04-14T15:19:43.048 INFO:teuthology.orchestra.run.smithi110.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-04-14T15:19:43.049 INFO:teuthology.orchestra.run.smithi110.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-04-14T15:19:43.049 INFO:teuthology.orchestra.run.smithi110.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-04-14T15:19:43.049 INFO:teuthology.orchestra.run.smithi110.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-04-14T15:19:43.049 INFO:teuthology.orchestra.run.smithi110.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-04-14T15:19:43.049 INFO:teuthology.orchestra.run.smithi110.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-04-14T15:19:43.049 INFO:teuthology.orchestra.run.smithi110.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-04-14T15:19:43.049 INFO:teuthology.orchestra.run.smithi110.stdout: python3-pygments python3-pyinotify python3-pytest python3-repoze.lru 2024-04-14T15:19:43.049 INFO:teuthology.orchestra.run.smithi110.stdout: python3-requests python3-requests-oauthlib python3-routes python3-rsa 2024-04-14T15:19:43.049 INFO:teuthology.orchestra.run.smithi110.stdout: python3-simplegeneric python3-simplejson python3-singledispatch 2024-04-14T15:19:43.049 INFO:teuthology.orchestra.run.smithi110.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-04-14T15:19:43.049 INFO:teuthology.orchestra.run.smithi110.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-04-14T15:19:43.049 INFO:teuthology.orchestra.run.smithi110.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-04-14T15:19:43.049 INFO:teuthology.orchestra.run.smithi110.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n socat unzip 2024-04-14T15:19:43.049 INFO:teuthology.orchestra.run.smithi110.stdout: xmlstarlet zip 2024-04-14T15:19:43.050 INFO:teuthology.orchestra.run.smithi110.stdout:Suggested packages: 2024-04-14T15:19:43.050 INFO:teuthology.orchestra.run.smithi110.stdout: python3-influxdb readline-doc python-jinja2-doc python3-beaker 2024-04-14T15:19:43.050 INFO:teuthology.orchestra.run.smithi110.stdout: python-mako-doc python-natsort-doc python-openssl-doc python3-openssl-dbg 2024-04-14T15:19:43.050 INFO:teuthology.orchestra.run.smithi110.stdout: httpd-wsgi libapache2-mod-python libapache2-mod-scgi libjs-mochikit 2024-04-14T15:19:43.050 INFO:teuthology.orchestra.run.smithi110.stdout: python-pecan-doc python-psutil-doc subversion python-pygments-doc 2024-04-14T15:19:43.050 INFO:teuthology.orchestra.run.smithi110.stdout: python-pyinotify-doc python3-socks python-requests-doc python3-dap 2024-04-14T15:19:43.050 INFO:teuthology.orchestra.run.smithi110.stdout: python-sklearn-doc ipython3 python-waitress-doc python-webob-doc 2024-04-14T15:19:43.050 INFO:teuthology.orchestra.run.smithi110.stdout: python-webtest-doc python-werkzeug-doc python3-watchdog 2024-04-14T15:19:43.050 INFO:teuthology.orchestra.run.smithi110.stdout:Recommended packages: 2024-04-14T15:19:43.051 INFO:teuthology.orchestra.run.smithi110.stdout: btrfs-tools 2024-04-14T15:19:43.108 INFO:teuthology.orchestra.run.smithi138.stdout:The following packages were automatically installed and are no longer required: 2024-04-14T15:19:43.108 INFO:teuthology.orchestra.run.smithi138.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-14T15:19:43.108 INFO:teuthology.orchestra.run.smithi138.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-14T15:19:43.108 INFO:teuthology.orchestra.run.smithi138.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-14T15:19:43.108 INFO:teuthology.orchestra.run.smithi138.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-04-14T15:19:43.109 INFO:teuthology.orchestra.run.smithi138.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-04-14T15:19:43.109 INFO:teuthology.orchestra.run.smithi138.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-14T15:19:43.109 INFO:teuthology.orchestra.run.smithi138.stdout:The following additional packages will be installed: 2024-04-14T15:19:43.109 INFO:teuthology.orchestra.run.smithi138.stdout: ceph-base ceph-mgr-cephadm ceph-mgr-dashboard ceph-mgr-diskprediction-local 2024-04-14T15:19:43.109 INFO:teuthology.orchestra.run.smithi138.stdout: ceph-mgr-k8sevents ceph-mgr-modules-core ceph-mon ceph-osd jq 2024-04-14T15:19:43.110 INFO:teuthology.orchestra.run.smithi138.stdout: libdouble-conversion3 libjq1 liblttng-ust1 liblua5.3-dev liboath0 libonig5 2024-04-14T15:19:43.110 INFO:teuthology.orchestra.run.smithi138.stdout: libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 libradosstriper1 2024-04-14T15:19:43.111 INFO:teuthology.orchestra.run.smithi138.stdout: librdkafka1 libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 2024-04-14T15:19:43.111 INFO:teuthology.orchestra.run.smithi138.stdout: lua-any lua-sec lua-socket lua5.1 luarocks nvme-cli pkg-config 2024-04-14T15:19:43.111 INFO:teuthology.orchestra.run.smithi138.stdout: python-asyncssh-doc python-babel-localedata python-pastedeploy-tpl 2024-04-14T15:19:43.111 INFO:teuthology.orchestra.run.smithi138.stdout: python3-asyncssh python3-babel python3-bcrypt python3-cachetools 2024-04-14T15:19:43.111 INFO:teuthology.orchestra.run.smithi138.stdout: python3-ceph-argparse python3-ceph-common python3-certifi python3-cheroot 2024-04-14T15:19:43.111 INFO:teuthology.orchestra.run.smithi138.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-04-14T15:19:43.111 INFO:teuthology.orchestra.run.smithi138.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-04-14T15:19:43.111 INFO:teuthology.orchestra.run.smithi138.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-04-14T15:19:43.111 INFO:teuthology.orchestra.run.smithi138.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-04-14T15:19:43.111 INFO:teuthology.orchestra.run.smithi138.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-04-14T15:19:43.111 INFO:teuthology.orchestra.run.smithi138.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-04-14T15:19:43.111 INFO:teuthology.orchestra.run.smithi138.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-04-14T15:19:43.112 INFO:teuthology.orchestra.run.smithi138.stdout: python3-pygments python3-pyinotify python3-pytest python3-repoze.lru 2024-04-14T15:19:43.112 INFO:teuthology.orchestra.run.smithi138.stdout: python3-requests python3-requests-oauthlib python3-routes python3-rsa 2024-04-14T15:19:43.112 INFO:teuthology.orchestra.run.smithi138.stdout: python3-simplegeneric python3-simplejson python3-singledispatch 2024-04-14T15:19:43.112 INFO:teuthology.orchestra.run.smithi138.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-04-14T15:19:43.112 INFO:teuthology.orchestra.run.smithi138.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-04-14T15:19:43.112 INFO:teuthology.orchestra.run.smithi138.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-04-14T15:19:43.112 INFO:teuthology.orchestra.run.smithi138.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n socat unzip 2024-04-14T15:19:43.112 INFO:teuthology.orchestra.run.smithi138.stdout: xmlstarlet zip 2024-04-14T15:19:43.112 INFO:teuthology.orchestra.run.smithi138.stdout:Suggested packages: 2024-04-14T15:19:43.112 INFO:teuthology.orchestra.run.smithi138.stdout: python3-influxdb readline-doc python-jinja2-doc python3-beaker 2024-04-14T15:19:43.112 INFO:teuthology.orchestra.run.smithi138.stdout: python-mako-doc python-natsort-doc python-openssl-doc python3-openssl-dbg 2024-04-14T15:19:43.113 INFO:teuthology.orchestra.run.smithi138.stdout: httpd-wsgi libapache2-mod-python libapache2-mod-scgi libjs-mochikit 2024-04-14T15:19:43.113 INFO:teuthology.orchestra.run.smithi138.stdout: python-pecan-doc python-psutil-doc subversion python-pygments-doc 2024-04-14T15:19:43.113 INFO:teuthology.orchestra.run.smithi138.stdout: python-pyinotify-doc python3-socks python-requests-doc python3-dap 2024-04-14T15:19:43.113 INFO:teuthology.orchestra.run.smithi138.stdout: python-sklearn-doc ipython3 python-waitress-doc python-webob-doc 2024-04-14T15:19:43.113 INFO:teuthology.orchestra.run.smithi138.stdout: python-webtest-doc python-werkzeug-doc python3-watchdog 2024-04-14T15:19:43.113 INFO:teuthology.orchestra.run.smithi138.stdout:Recommended packages: 2024-04-14T15:19:43.113 INFO:teuthology.orchestra.run.smithi138.stdout: btrfs-tools 2024-04-14T15:19:43.148 INFO:teuthology.orchestra.run.smithi110.stdout:The following NEW packages will be installed: 2024-04-14T15:19:43.148 INFO:teuthology.orchestra.run.smithi110.stdout: ceph ceph-base ceph-common ceph-fuse ceph-mds ceph-mgr ceph-mgr-cephadm 2024-04-14T15:19:43.148 INFO:teuthology.orchestra.run.smithi110.stdout: ceph-mgr-dashboard ceph-mgr-diskprediction-local ceph-mgr-k8sevents 2024-04-14T15:19:43.148 INFO:teuthology.orchestra.run.smithi110.stdout: ceph-mgr-modules-core ceph-mon ceph-osd ceph-test ceph-volume cephadm jq 2024-04-14T15:19:43.149 INFO:teuthology.orchestra.run.smithi110.stdout: libcephfs-dev libcephfs2 libdouble-conversion3 libjq1 liblttng-ust1 2024-04-14T15:19:43.150 INFO:teuthology.orchestra.run.smithi110.stdout: liblua5.3-dev liboath0 libonig5 libpcre2-16-0 libqt5core5a libqt5dbus5 2024-04-14T15:19:43.150 INFO:teuthology.orchestra.run.smithi110.stdout: libqt5network5 librados2 libradosstriper1 librbd1 librdkafka1 2024-04-14T15:19:43.150 INFO:teuthology.orchestra.run.smithi110.stdout: libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 lua-any lua-sec 2024-04-14T15:19:43.150 INFO:teuthology.orchestra.run.smithi110.stdout: lua-socket lua5.1 luarocks nvme-cli pkg-config python-asyncssh-doc 2024-04-14T15:19:43.150 INFO:teuthology.orchestra.run.smithi110.stdout: python-babel-localedata python-pastedeploy-tpl python3-asyncssh 2024-04-14T15:19:43.150 INFO:teuthology.orchestra.run.smithi110.stdout: python3-babel python3-bcrypt python3-cachetools python3-ceph-argparse 2024-04-14T15:19:43.150 INFO:teuthology.orchestra.run.smithi110.stdout: python3-ceph-common python3-cephfs python3-certifi python3-cheroot 2024-04-14T15:19:43.150 INFO:teuthology.orchestra.run.smithi110.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-04-14T15:19:43.150 INFO:teuthology.orchestra.run.smithi110.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-04-14T15:19:43.150 INFO:teuthology.orchestra.run.smithi110.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-04-14T15:19:43.150 INFO:teuthology.orchestra.run.smithi110.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-04-14T15:19:43.150 INFO:teuthology.orchestra.run.smithi110.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-04-14T15:19:43.150 INFO:teuthology.orchestra.run.smithi110.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-04-14T15:19:43.151 INFO:teuthology.orchestra.run.smithi110.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-04-14T15:19:43.151 INFO:teuthology.orchestra.run.smithi110.stdout: python3-pygments python3-pyinotify python3-pytest python3-rados python3-rbd 2024-04-14T15:19:43.151 INFO:teuthology.orchestra.run.smithi110.stdout: python3-repoze.lru python3-requests python3-requests-oauthlib python3-rgw 2024-04-14T15:19:43.151 INFO:teuthology.orchestra.run.smithi110.stdout: python3-routes python3-rsa python3-simplegeneric python3-simplejson 2024-04-14T15:19:43.151 INFO:teuthology.orchestra.run.smithi110.stdout: python3-singledispatch python3-sklearn python3-sklearn-lib python3-tempita 2024-04-14T15:19:43.151 INFO:teuthology.orchestra.run.smithi110.stdout: python3-tempora python3-threadpoolctl python3-toml python3-urllib3 2024-04-14T15:19:43.151 INFO:teuthology.orchestra.run.smithi110.stdout: python3-waitress python3-wcwidth python3-webob python3-websocket 2024-04-14T15:19:43.151 INFO:teuthology.orchestra.run.smithi110.stdout: python3-webtest python3-werkzeug python3-zc.lockfile qttranslations5-l10n 2024-04-14T15:19:43.151 INFO:teuthology.orchestra.run.smithi110.stdout: radosgw rbd-fuse socat unzip xmlstarlet zip 2024-04-14T15:19:43.194 INFO:teuthology.orchestra.run.smithi047.stdout:The following packages were automatically installed and are no longer required: 2024-04-14T15:19:43.195 INFO:teuthology.orchestra.run.smithi047.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-14T15:19:43.195 INFO:teuthology.orchestra.run.smithi047.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-14T15:19:43.195 INFO:teuthology.orchestra.run.smithi047.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-14T15:19:43.195 INFO:teuthology.orchestra.run.smithi047.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-04-14T15:19:43.195 INFO:teuthology.orchestra.run.smithi047.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-04-14T15:19:43.195 INFO:teuthology.orchestra.run.smithi047.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-14T15:19:43.196 INFO:teuthology.orchestra.run.smithi047.stdout:The following additional packages will be installed: 2024-04-14T15:19:43.196 INFO:teuthology.orchestra.run.smithi047.stdout: ceph-base ceph-mgr-cephadm ceph-mgr-dashboard ceph-mgr-diskprediction-local 2024-04-14T15:19:43.196 INFO:teuthology.orchestra.run.smithi047.stdout: ceph-mgr-k8sevents ceph-mgr-modules-core ceph-mon ceph-osd jq 2024-04-14T15:19:43.197 INFO:teuthology.orchestra.run.smithi047.stdout: libdouble-conversion3 libjq1 liblttng-ust1 liblua5.3-dev liboath0 libonig5 2024-04-14T15:19:43.197 INFO:teuthology.orchestra.run.smithi047.stdout: libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 libradosstriper1 2024-04-14T15:19:43.198 INFO:teuthology.orchestra.run.smithi047.stdout: librdkafka1 libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 2024-04-14T15:19:43.198 INFO:teuthology.orchestra.run.smithi047.stdout: lua-any lua-sec lua-socket lua5.1 luarocks nvme-cli pkg-config 2024-04-14T15:19:43.198 INFO:teuthology.orchestra.run.smithi047.stdout: python-asyncssh-doc python-babel-localedata python-pastedeploy-tpl 2024-04-14T15:19:43.198 INFO:teuthology.orchestra.run.smithi047.stdout: python3-asyncssh python3-babel python3-bcrypt python3-cachetools 2024-04-14T15:19:43.198 INFO:teuthology.orchestra.run.smithi047.stdout: python3-ceph-argparse python3-ceph-common python3-certifi python3-cheroot 2024-04-14T15:19:43.198 INFO:teuthology.orchestra.run.smithi047.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-04-14T15:19:43.198 INFO:teuthology.orchestra.run.smithi047.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-04-14T15:19:43.198 INFO:teuthology.orchestra.run.smithi047.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-04-14T15:19:43.198 INFO:teuthology.orchestra.run.smithi047.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-04-14T15:19:43.198 INFO:teuthology.orchestra.run.smithi047.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-04-14T15:19:43.198 INFO:teuthology.orchestra.run.smithi047.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-04-14T15:19:43.198 INFO:teuthology.orchestra.run.smithi047.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-04-14T15:19:43.199 INFO:teuthology.orchestra.run.smithi047.stdout: python3-pygments python3-pyinotify python3-pytest python3-repoze.lru 2024-04-14T15:19:43.199 INFO:teuthology.orchestra.run.smithi047.stdout: python3-requests python3-requests-oauthlib python3-routes python3-rsa 2024-04-14T15:19:43.199 INFO:teuthology.orchestra.run.smithi047.stdout: python3-simplegeneric python3-simplejson python3-singledispatch 2024-04-14T15:19:43.199 INFO:teuthology.orchestra.run.smithi047.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-04-14T15:19:43.199 INFO:teuthology.orchestra.run.smithi047.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-04-14T15:19:43.199 INFO:teuthology.orchestra.run.smithi047.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-04-14T15:19:43.199 INFO:teuthology.orchestra.run.smithi047.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n socat unzip 2024-04-14T15:19:43.199 INFO:teuthology.orchestra.run.smithi047.stdout: xmlstarlet zip 2024-04-14T15:19:43.199 INFO:teuthology.orchestra.run.smithi047.stdout:Suggested packages: 2024-04-14T15:19:43.199 INFO:teuthology.orchestra.run.smithi047.stdout: python3-influxdb readline-doc python-jinja2-doc python3-beaker 2024-04-14T15:19:43.200 INFO:teuthology.orchestra.run.smithi047.stdout: python-mako-doc python-natsort-doc python-openssl-doc python3-openssl-dbg 2024-04-14T15:19:43.200 INFO:teuthology.orchestra.run.smithi047.stdout: httpd-wsgi libapache2-mod-python libapache2-mod-scgi libjs-mochikit 2024-04-14T15:19:43.200 INFO:teuthology.orchestra.run.smithi047.stdout: python-pecan-doc python-psutil-doc subversion python-pygments-doc 2024-04-14T15:19:43.200 INFO:teuthology.orchestra.run.smithi047.stdout: python-pyinotify-doc python3-socks python-requests-doc python3-dap 2024-04-14T15:19:43.200 INFO:teuthology.orchestra.run.smithi047.stdout: python-sklearn-doc ipython3 python-waitress-doc python-webob-doc 2024-04-14T15:19:43.200 INFO:teuthology.orchestra.run.smithi047.stdout: python-webtest-doc python-werkzeug-doc python3-watchdog 2024-04-14T15:19:43.200 INFO:teuthology.orchestra.run.smithi047.stdout:Recommended packages: 2024-04-14T15:19:43.200 INFO:teuthology.orchestra.run.smithi047.stdout: btrfs-tools 2024-04-14T15:19:43.210 INFO:teuthology.orchestra.run.smithi138.stdout:The following NEW packages will be installed: 2024-04-14T15:19:43.210 INFO:teuthology.orchestra.run.smithi138.stdout: ceph ceph-base ceph-common ceph-fuse ceph-mds ceph-mgr ceph-mgr-cephadm 2024-04-14T15:19:43.210 INFO:teuthology.orchestra.run.smithi138.stdout: ceph-mgr-dashboard ceph-mgr-diskprediction-local ceph-mgr-k8sevents 2024-04-14T15:19:43.211 INFO:teuthology.orchestra.run.smithi138.stdout: ceph-mgr-modules-core ceph-mon ceph-osd ceph-test ceph-volume cephadm jq 2024-04-14T15:19:43.211 INFO:teuthology.orchestra.run.smithi138.stdout: libcephfs-dev libcephfs2 libdouble-conversion3 libjq1 liblttng-ust1 2024-04-14T15:19:43.211 INFO:teuthology.orchestra.run.smithi138.stdout: liblua5.3-dev liboath0 libonig5 libpcre2-16-0 libqt5core5a libqt5dbus5 2024-04-14T15:19:43.211 INFO:teuthology.orchestra.run.smithi138.stdout: libqt5network5 librados2 libradosstriper1 librbd1 librdkafka1 2024-04-14T15:19:43.212 INFO:teuthology.orchestra.run.smithi138.stdout: libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 lua-any lua-sec 2024-04-14T15:19:43.212 INFO:teuthology.orchestra.run.smithi138.stdout: lua-socket lua5.1 luarocks nvme-cli pkg-config python-asyncssh-doc 2024-04-14T15:19:43.212 INFO:teuthology.orchestra.run.smithi138.stdout: python-babel-localedata python-pastedeploy-tpl python3-asyncssh 2024-04-14T15:19:43.212 INFO:teuthology.orchestra.run.smithi138.stdout: python3-babel python3-bcrypt python3-cachetools python3-ceph-argparse 2024-04-14T15:19:43.212 INFO:teuthology.orchestra.run.smithi138.stdout: python3-ceph-common python3-cephfs python3-certifi python3-cheroot 2024-04-14T15:19:43.212 INFO:teuthology.orchestra.run.smithi138.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-04-14T15:19:43.212 INFO:teuthology.orchestra.run.smithi138.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-04-14T15:19:43.212 INFO:teuthology.orchestra.run.smithi138.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-04-14T15:19:43.212 INFO:teuthology.orchestra.run.smithi138.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-04-14T15:19:43.212 INFO:teuthology.orchestra.run.smithi138.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-04-14T15:19:43.213 INFO:teuthology.orchestra.run.smithi138.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-04-14T15:19:43.213 INFO:teuthology.orchestra.run.smithi138.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-04-14T15:19:43.213 INFO:teuthology.orchestra.run.smithi138.stdout: python3-pygments python3-pyinotify python3-pytest python3-rados python3-rbd 2024-04-14T15:19:43.213 INFO:teuthology.orchestra.run.smithi138.stdout: python3-repoze.lru python3-requests python3-requests-oauthlib python3-rgw 2024-04-14T15:19:43.213 INFO:teuthology.orchestra.run.smithi138.stdout: python3-routes python3-rsa python3-simplegeneric python3-simplejson 2024-04-14T15:19:43.213 INFO:teuthology.orchestra.run.smithi138.stdout: python3-singledispatch python3-sklearn python3-sklearn-lib python3-tempita 2024-04-14T15:19:43.213 INFO:teuthology.orchestra.run.smithi138.stdout: python3-tempora python3-threadpoolctl python3-toml python3-urllib3 2024-04-14T15:19:43.213 INFO:teuthology.orchestra.run.smithi138.stdout: python3-waitress python3-wcwidth python3-webob python3-websocket 2024-04-14T15:19:43.213 INFO:teuthology.orchestra.run.smithi138.stdout: python3-webtest python3-werkzeug python3-zc.lockfile qttranslations5-l10n 2024-04-14T15:19:43.213 INFO:teuthology.orchestra.run.smithi138.stdout: radosgw rbd-fuse socat unzip xmlstarlet zip 2024-04-14T15:19:43.222 INFO:teuthology.orchestra.run.smithi110.stdout:0 upgraded, 118 newly installed, 0 to remove and 300 not upgraded. 2024-04-14T15:19:43.222 INFO:teuthology.orchestra.run.smithi110.stdout:Need to get 180 MB of archives. 2024-04-14T15:19:43.222 INFO:teuthology.orchestra.run.smithi110.stdout:After this operation, 824 MB of additional disk space will be used. 2024-04-14T15:19:43.222 INFO:teuthology.orchestra.run.smithi110.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblttng-ust1 amd64 2.13.1-1ubuntu1 [190 kB] 2024-04-14T15:19:43.281 INFO:teuthology.orchestra.run.smithi138.stdout:0 upgraded, 118 newly installed, 0 to remove and 300 not upgraded. 2024-04-14T15:19:43.282 INFO:teuthology.orchestra.run.smithi138.stdout:Need to get 180 MB of archives. 2024-04-14T15:19:43.282 INFO:teuthology.orchestra.run.smithi138.stdout:After this operation, 824 MB of additional disk space will be used. 2024-04-14T15:19:43.282 INFO:teuthology.orchestra.run.smithi138.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblttng-ust1 amd64 2.13.1-1ubuntu1 [190 kB] 2024-04-14T15:19:43.305 INFO:teuthology.orchestra.run.smithi047.stdout:The following NEW packages will be installed: 2024-04-14T15:19:43.305 INFO:teuthology.orchestra.run.smithi047.stdout: ceph ceph-base ceph-common ceph-fuse ceph-mds ceph-mgr ceph-mgr-cephadm 2024-04-14T15:19:43.305 INFO:teuthology.orchestra.run.smithi047.stdout: ceph-mgr-dashboard ceph-mgr-diskprediction-local ceph-mgr-k8sevents 2024-04-14T15:19:43.305 INFO:teuthology.orchestra.run.smithi047.stdout: ceph-mgr-modules-core ceph-mon ceph-osd ceph-test ceph-volume cephadm jq 2024-04-14T15:19:43.306 INFO:teuthology.orchestra.run.smithi047.stdout: libcephfs-dev libcephfs2 libdouble-conversion3 libjq1 liblttng-ust1 2024-04-14T15:19:43.306 INFO:teuthology.orchestra.run.smithi047.stdout: liblua5.3-dev liboath0 libonig5 libpcre2-16-0 libqt5core5a libqt5dbus5 2024-04-14T15:19:43.306 INFO:teuthology.orchestra.run.smithi047.stdout: libqt5network5 librados2 libradosstriper1 librbd1 librdkafka1 2024-04-14T15:19:43.307 INFO:teuthology.orchestra.run.smithi047.stdout: libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 lua-any lua-sec 2024-04-14T15:19:43.307 INFO:teuthology.orchestra.run.smithi047.stdout: lua-socket lua5.1 luarocks nvme-cli pkg-config python-asyncssh-doc 2024-04-14T15:19:43.307 INFO:teuthology.orchestra.run.smithi047.stdout: python-babel-localedata python-pastedeploy-tpl python3-asyncssh 2024-04-14T15:19:43.308 INFO:teuthology.orchestra.run.smithi047.stdout: python3-babel python3-bcrypt python3-cachetools python3-ceph-argparse 2024-04-14T15:19:43.308 INFO:teuthology.orchestra.run.smithi047.stdout: python3-ceph-common python3-cephfs python3-certifi python3-cheroot 2024-04-14T15:19:43.308 INFO:teuthology.orchestra.run.smithi047.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-04-14T15:19:43.308 INFO:teuthology.orchestra.run.smithi047.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-04-14T15:19:43.308 INFO:teuthology.orchestra.run.smithi047.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-04-14T15:19:43.308 INFO:teuthology.orchestra.run.smithi047.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-04-14T15:19:43.308 INFO:teuthology.orchestra.run.smithi047.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-04-14T15:19:43.308 INFO:teuthology.orchestra.run.smithi047.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-04-14T15:19:43.308 INFO:teuthology.orchestra.run.smithi047.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-04-14T15:19:43.308 INFO:teuthology.orchestra.run.smithi047.stdout: python3-pygments python3-pyinotify python3-pytest python3-rados python3-rbd 2024-04-14T15:19:43.309 INFO:teuthology.orchestra.run.smithi047.stdout: python3-repoze.lru python3-requests python3-requests-oauthlib python3-rgw 2024-04-14T15:19:43.309 INFO:teuthology.orchestra.run.smithi047.stdout: python3-routes python3-rsa python3-simplegeneric python3-simplejson 2024-04-14T15:19:43.309 INFO:teuthology.orchestra.run.smithi047.stdout: python3-singledispatch python3-sklearn python3-sklearn-lib python3-tempita 2024-04-14T15:19:43.309 INFO:teuthology.orchestra.run.smithi047.stdout: python3-tempora python3-threadpoolctl python3-toml python3-urllib3 2024-04-14T15:19:43.309 INFO:teuthology.orchestra.run.smithi047.stdout: python3-waitress python3-wcwidth python3-webob python3-websocket 2024-04-14T15:19:43.309 INFO:teuthology.orchestra.run.smithi047.stdout: python3-webtest python3-werkzeug python3-zc.lockfile qttranslations5-l10n 2024-04-14T15:19:43.309 INFO:teuthology.orchestra.run.smithi047.stdout: radosgw rbd-fuse socat unzip xmlstarlet zip 2024-04-14T15:19:43.334 INFO:teuthology.orchestra.run.smithi110.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdouble-conversion3 amd64 3.1.7-4 [39.0 kB] 2024-04-14T15:19:43.337 INFO:teuthology.orchestra.run.smithi110.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre2-16-0 amd64 10.39-3ubuntu0.1 [203 kB] 2024-04-14T15:19:43.352 INFO:teuthology.orchestra.run.smithi138.stdout:Get:2 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 librados2 amd64 19.0.0-2778-ga971fd5f-1jammy [3,554 kB] 2024-04-14T15:19:43.360 INFO:teuthology.orchestra.run.smithi110.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-14T15:19:43.376 INFO:teuthology.orchestra.run.smithi110.stdout:Get:5 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 librados2 amd64 19.0.0-2778-ga971fd5f-1jammy [3,554 kB] 2024-04-14T15:19:43.382 INFO:teuthology.orchestra.run.smithi047.stdout:0 upgraded, 118 newly installed, 0 to remove and 300 not upgraded. 2024-04-14T15:19:43.382 INFO:teuthology.orchestra.run.smithi047.stdout:Need to get 180 MB of archives. 2024-04-14T15:19:43.382 INFO:teuthology.orchestra.run.smithi047.stdout:After this operation, 824 MB of additional disk space will be used. 2024-04-14T15:19:43.382 INFO:teuthology.orchestra.run.smithi047.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblttng-ust1 amd64 2.13.1-1ubuntu1 [190 kB] 2024-04-14T15:19:43.409 INFO:teuthology.orchestra.run.smithi138.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdouble-conversion3 amd64 3.1.7-4 [39.0 kB] 2024-04-14T15:19:43.413 INFO:teuthology.orchestra.run.smithi138.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre2-16-0 amd64 10.39-3ubuntu0.1 [203 kB] 2024-04-14T15:19:43.444 INFO:teuthology.orchestra.run.smithi138.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5core5a amd64 5.15.3+dfsg-2ubuntu0.2 [2,006 kB] 2024-04-14T15:19:43.445 INFO:teuthology.orchestra.run.smithi110.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5dbus5 amd64 5.15.3+dfsg-2ubuntu0.2 [222 kB] 2024-04-14T15:19:43.451 INFO:teuthology.orchestra.run.smithi110.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5network5 amd64 5.15.3+dfsg-2ubuntu0.2 [731 kB] 2024-04-14T15:19:43.466 INFO:teuthology.orchestra.run.smithi110.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libthrift-0.16.0 amd64 0.16.0-2 [267 kB] 2024-04-14T15:19:43.472 INFO:teuthology.orchestra.run.smithi110.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-wcwidth all 0.2.5+dfsg1-1 [21.9 kB] 2024-04-14T15:19:43.472 INFO:teuthology.orchestra.run.smithi110.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-prettytable all 2.5.0-2 [31.3 kB] 2024-04-14T15:19:43.474 INFO:teuthology.orchestra.run.smithi110.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy/universe amd64 librdkafka1 amd64 1.8.0-1build1 [633 kB] 2024-04-14T15:19:43.488 INFO:teuthology.orchestra.run.smithi110.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy/main amd64 libreadline-dev amd64 8.1.2-1 [166 kB] 2024-04-14T15:19:43.491 INFO:teuthology.orchestra.run.smithi110.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblua5.3-dev amd64 5.3.6-1build1 [167 kB] 2024-04-14T15:19:43.494 INFO:teuthology.orchestra.run.smithi110.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua5.1 amd64 5.1.5-8.1build4 [94.6 kB] 2024-04-14T15:19:43.497 INFO:teuthology.orchestra.run.smithi110.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-any all 27ubuntu1 [5,034 B] 2024-04-14T15:19:43.526 INFO:teuthology.orchestra.run.smithi110.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy/main amd64 zip amd64 3.0-12build2 [176 kB] 2024-04-14T15:19:43.529 INFO:teuthology.orchestra.run.smithi110.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 unzip amd64 6.0-26ubuntu3.2 [175 kB] 2024-04-14T15:19:43.532 INFO:teuthology.orchestra.run.smithi110.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy/universe amd64 luarocks all 3.8.0+dfsg1-1 [140 kB] 2024-04-14T15:19:43.534 INFO:teuthology.orchestra.run.smithi110.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy/main amd64 liboath0 amd64 2.6.7-3build1 [41.1 kB] 2024-04-14T15:19:43.535 INFO:teuthology.orchestra.run.smithi110.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.functools all 3.4.0-2 [9,030 B] 2024-04-14T15:19:43.536 INFO:teuthology.orchestra.run.smithi110.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-14T15:19:43.538 INFO:teuthology.orchestra.run.smithi110.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.classes all 3.2.1-3 [6,452 B] 2024-04-14T15:19:43.538 INFO:teuthology.orchestra.run.smithi110.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.text all 3.6.0-2 [8,716 B] 2024-04-14T15:19:43.538 INFO:teuthology.orchestra.run.smithi110.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.collections all 3.4.0-2 [11.4 kB] 2024-04-14T15:19:43.560 INFO:teuthology.orchestra.run.smithi110.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempora all 4.1.2-1 [14.8 kB] 2024-04-14T15:19:43.563 INFO:teuthology.orchestra.run.smithi047.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdouble-conversion3 amd64 3.1.7-4 [39.0 kB] 2024-04-14T15:19:43.572 INFO:teuthology.orchestra.run.smithi047.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre2-16-0 amd64 10.39-3ubuntu0.1 [203 kB] 2024-04-14T15:19:43.573 INFO:teuthology.orchestra.run.smithi110.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-portend all 3.0.0-1 [7,240 B] 2024-04-14T15:19:43.573 INFO:teuthology.orchestra.run.smithi110.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-zc.lockfile all 2.0-1 [8,980 B] 2024-04-14T15:19:43.574 INFO:teuthology.orchestra.run.smithi110.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cherrypy3 all 18.6.1-4 [208 kB] 2024-04-14T15:19:43.578 INFO:teuthology.orchestra.run.smithi110.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-natsort all 8.0.2-1 [35.3 kB] 2024-04-14T15:19:43.579 INFO:teuthology.orchestra.run.smithi110.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-logutils all 0.3.3-8 [17.6 kB] 2024-04-14T15:19:43.579 INFO:teuthology.orchestra.run.smithi110.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-markupsafe amd64 2.0.1-2build1 [12.7 kB] 2024-04-14T15:19:43.579 INFO:teuthology.orchestra.run.smithi138.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5dbus5 amd64 5.15.3+dfsg-2ubuntu0.2 [222 kB] 2024-04-14T15:19:43.580 INFO:teuthology.orchestra.run.smithi110.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-14T15:19:43.581 INFO:teuthology.orchestra.run.smithi110.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplegeneric all 0.8.1-3 [11.3 kB] 2024-04-14T15:19:43.585 INFO:teuthology.orchestra.run.smithi138.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5network5 amd64 5.15.3+dfsg-2ubuntu0.2 [731 kB] 2024-04-14T15:19:43.597 INFO:teuthology.orchestra.run.smithi047.stdout:Get:4 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 librados2 amd64 19.0.0-2778-ga971fd5f-1jammy [3,554 kB] 2024-04-14T15:19:43.604 INFO:teuthology.orchestra.run.smithi110.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-singledispatch all 3.4.0.3-3 [7,320 B] 2024-04-14T15:19:43.608 INFO:teuthology.orchestra.run.smithi138.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libthrift-0.16.0 amd64 0.16.0-2 [267 kB] 2024-04-14T15:19:43.614 INFO:teuthology.orchestra.run.smithi138.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-wcwidth all 0.2.5+dfsg1-1 [21.9 kB] 2024-04-14T15:19:43.615 INFO:teuthology.orchestra.run.smithi138.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-prettytable all 2.5.0-2 [31.3 kB] 2024-04-14T15:19:43.616 INFO:teuthology.orchestra.run.smithi138.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy/universe amd64 librdkafka1 amd64 1.8.0-1build1 [633 kB] 2024-04-14T15:19:43.624 INFO:teuthology.orchestra.run.smithi110.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-14T15:19:43.626 INFO:teuthology.orchestra.run.smithi110.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-waitress all 1.4.4-1.1ubuntu1 [47.3 kB] 2024-04-14T15:19:43.627 INFO:teuthology.orchestra.run.smithi110.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempita all 0.5.2-6ubuntu1 [15.1 kB] 2024-04-14T15:19:43.627 INFO:teuthology.orchestra.run.smithi110.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-paste all 3.5.0+dfsg1-1 [456 kB] 2024-04-14T15:19:43.628 INFO:teuthology.orchestra.run.smithi138.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy/main amd64 libreadline-dev amd64 8.1.2-1 [166 kB] 2024-04-14T15:19:43.635 INFO:teuthology.orchestra.run.smithi110.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-pastedeploy-tpl all 2.1.1-1 [4,892 B] 2024-04-14T15:19:43.635 INFO:teuthology.orchestra.run.smithi110.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastedeploy all 2.1.1-1 [26.6 kB] 2024-04-14T15:19:43.636 INFO:teuthology.orchestra.run.smithi110.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webtest all 2.0.35-1 [28.5 kB] 2024-04-14T15:19:43.637 INFO:teuthology.orchestra.run.smithi110.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pecan all 1.3.3-4ubuntu2 [87.3 kB] 2024-04-14T15:19:43.639 INFO:teuthology.orchestra.run.smithi138.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblua5.3-dev amd64 5.3.6-1build1 [167 kB] 2024-04-14T15:19:43.642 INFO:teuthology.orchestra.run.smithi138.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua5.1 amd64 5.1.5-8.1build4 [94.6 kB] 2024-04-14T15:19:43.643 INFO:teuthology.orchestra.run.smithi047.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5core5a amd64 5.15.3+dfsg-2ubuntu0.2 [2,006 kB] 2024-04-14T15:19:43.644 INFO:teuthology.orchestra.run.smithi138.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-any all 27ubuntu1 [5,034 B] 2024-04-14T15:19:43.646 INFO:teuthology.orchestra.run.smithi110.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-04-14T15:19:43.659 INFO:teuthology.orchestra.run.smithi138.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy/main amd64 zip amd64 3.0-12build2 [176 kB] 2024-04-14T15:19:43.662 INFO:teuthology.orchestra.run.smithi138.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 unzip amd64 6.0-26ubuntu3.2 [175 kB] 2024-04-14T15:19:43.665 INFO:teuthology.orchestra.run.smithi138.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy/universe amd64 luarocks all 3.8.0+dfsg1-1 [140 kB] 2024-04-14T15:19:43.668 INFO:teuthology.orchestra.run.smithi138.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy/main amd64 liboath0 amd64 2.6.7-3build1 [41.1 kB] 2024-04-14T15:19:43.668 INFO:teuthology.orchestra.run.smithi138.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.functools all 3.4.0-2 [9,030 B] 2024-04-14T15:19:43.671 INFO:teuthology.orchestra.run.smithi110.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-idna all 3.3-1 [49.3 kB] 2024-04-14T15:19:43.672 INFO:teuthology.orchestra.run.smithi110.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-14T15:19:43.675 INFO:teuthology.orchestra.run.smithi110.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-14T15:19:43.676 INFO:teuthology.orchestra.run.smithi110.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-14T15:19:43.681 INFO:teuthology.orchestra.run.smithi110.stdout:Get:48 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-bcrypt amd64 3.2.0-1build1 [32.7 kB] 2024-04-14T15:19:43.682 INFO:teuthology.orchestra.run.smithi110.stdout:Get:49 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-openssl all 21.0.0-1 [45.2 kB] 2024-04-14T15:19:43.686 INFO:teuthology.orchestra.run.smithi110.stdout:Get:50 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-asyncssh all 2.5.0-1 [185 kB] 2024-04-14T15:19:43.688 INFO:teuthology.orchestra.run.smithi110.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-14T15:19:43.706 INFO:teuthology.orchestra.run.smithi138.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-14T15:19:43.708 INFO:teuthology.orchestra.run.smithi138.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.classes all 3.2.1-3 [6,452 B] 2024-04-14T15:19:43.709 INFO:teuthology.orchestra.run.smithi138.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.text all 3.6.0-2 [8,716 B] 2024-04-14T15:19:43.709 INFO:teuthology.orchestra.run.smithi138.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.collections all 3.4.0-2 [11.4 kB] 2024-04-14T15:19:43.710 INFO:teuthology.orchestra.run.smithi138.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempora all 4.1.2-1 [14.8 kB] 2024-04-14T15:19:43.749 INFO:teuthology.orchestra.run.smithi138.stdout:Get:26 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 librbd1 amd64 19.0.0-2778-ga971fd5f-1jammy [3,223 kB] 2024-04-14T15:19:43.754 INFO:teuthology.orchestra.run.smithi138.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-portend all 3.0.0-1 [7,240 B] 2024-04-14T15:19:43.755 INFO:teuthology.orchestra.run.smithi138.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-zc.lockfile all 2.0-1 [8,980 B] 2024-04-14T15:19:43.756 INFO:teuthology.orchestra.run.smithi138.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cherrypy3 all 18.6.1-4 [208 kB] 2024-04-14T15:19:43.761 INFO:teuthology.orchestra.run.smithi138.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-natsort all 8.0.2-1 [35.3 kB] 2024-04-14T15:19:43.762 INFO:teuthology.orchestra.run.smithi138.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-logutils all 0.3.3-8 [17.6 kB] 2024-04-14T15:19:43.776 INFO:teuthology.orchestra.run.smithi110.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-14T15:19:43.778 INFO:teuthology.orchestra.run.smithi110.stdout:Get:53 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-jinja2 all 3.0.3-1ubuntu0.1 [108 kB] 2024-04-14T15:19:43.781 INFO:teuthology.orchestra.run.smithi110.stdout:Get:54 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-repoze.lru all 0.7-2 [12.1 kB] 2024-04-14T15:19:43.781 INFO:teuthology.orchestra.run.smithi110.stdout:Get:55 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-routes all 2.5.1-1ubuntu1 [89.0 kB] 2024-04-14T15:19:43.783 INFO:teuthology.orchestra.run.smithi110.stdout:Get:56 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn-lib amd64 0.23.2-5ubuntu6 [2,058 kB] 2024-04-14T15:19:43.810 INFO:teuthology.orchestra.run.smithi138.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-markupsafe amd64 2.0.1-2build1 [12.7 kB] 2024-04-14T15:19:43.811 INFO:teuthology.orchestra.run.smithi138.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-mako all 1.1.3+ds1-2ubuntu0.1 [60.5 kB] 2024-04-14T15:19:43.812 INFO:teuthology.orchestra.run.smithi138.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplegeneric all 0.8.1-3 [11.3 kB] 2024-04-14T15:19:43.813 INFO:teuthology.orchestra.run.smithi138.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-singledispatch all 3.4.0.3-3 [7,320 B] 2024-04-14T15:19:43.814 INFO:teuthology.orchestra.run.smithi138.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webob all 1:1.8.6-1.1 [85.2 kB] 2024-04-14T15:19:43.817 INFO:teuthology.orchestra.run.smithi110.stdout:Get:57 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-joblib all 0.17.0-4ubuntu1 [204 kB] 2024-04-14T15:19:43.819 INFO:teuthology.orchestra.run.smithi110.stdout:Get:58 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-threadpoolctl all 3.1.0-1 [21.3 kB] 2024-04-14T15:19:43.820 INFO:teuthology.orchestra.run.smithi110.stdout:Get:59 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn all 0.23.2-5ubuntu6 [1,829 kB] 2024-04-14T15:19:43.857 INFO:teuthology.orchestra.run.smithi110.stdout:Get:60 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cachetools all 5.0.0-1 [9,722 B] 2024-04-14T15:19:43.857 INFO:teuthology.orchestra.run.smithi110.stdout:Get:61 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1 all 0.4.8-1 [50.9 kB] 2024-04-14T15:19:43.858 INFO:teuthology.orchestra.run.smithi110.stdout:Get:62 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1-modules all 0.2.1-1 [33.0 kB] 2024-04-14T15:19:43.858 INFO:teuthology.orchestra.run.smithi110.stdout:Get:63 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-rsa all 4.8-1 [28.4 kB] 2024-04-14T15:19:43.863 INFO:teuthology.orchestra.run.smithi047.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5dbus5 amd64 5.15.3+dfsg-2ubuntu0.2 [222 kB] 2024-04-14T15:19:43.865 INFO:teuthology.orchestra.run.smithi138.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-waitress all 1.4.4-1.1ubuntu1 [47.3 kB] 2024-04-14T15:19:43.866 INFO:teuthology.orchestra.run.smithi138.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempita all 0.5.2-6ubuntu1 [15.1 kB] 2024-04-14T15:19:43.867 INFO:teuthology.orchestra.run.smithi138.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-paste all 3.5.0+dfsg1-1 [456 kB] 2024-04-14T15:19:43.873 INFO:teuthology.orchestra.run.smithi047.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5network5 amd64 5.15.3+dfsg-2ubuntu0.2 [731 kB] 2024-04-14T15:19:43.878 INFO:teuthology.orchestra.run.smithi138.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-pastedeploy-tpl all 2.1.1-1 [4,892 B] 2024-04-14T15:19:43.878 INFO:teuthology.orchestra.run.smithi138.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastedeploy all 2.1.1-1 [26.6 kB] 2024-04-14T15:19:43.881 INFO:teuthology.orchestra.run.smithi110.stdout:Get:64 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-google-auth all 1.5.1-3 [35.7 kB] 2024-04-14T15:19:43.884 INFO:teuthology.orchestra.run.smithi110.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-14T15:19:43.886 INFO:teuthology.orchestra.run.smithi110.stdout:Get:66 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-websocket all 1.2.3-1 [34.7 kB] 2024-04-14T15:19:43.889 INFO:teuthology.orchestra.run.smithi110.stdout:Get:67 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-kubernetes all 12.0.1-1ubuntu1 [353 kB] 2024-04-14T15:19:43.897 INFO:teuthology.orchestra.run.smithi110.stdout:Get:68 http://archive.ubuntu.com/ubuntu jammy/main amd64 libonig5 amd64 6.9.7.1-2build1 [172 kB] 2024-04-14T15:19:43.899 INFO:teuthology.orchestra.run.smithi138.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webtest all 2.0.35-1 [28.5 kB] 2024-04-14T15:19:43.900 INFO:teuthology.orchestra.run.smithi138.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pecan all 1.3.3-4ubuntu2 [87.3 kB] 2024-04-14T15:19:43.901 INFO:teuthology.orchestra.run.smithi047.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libthrift-0.16.0 amd64 0.16.0-2 [267 kB] 2024-04-14T15:19:43.902 INFO:teuthology.orchestra.run.smithi138.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-04-14T15:19:43.906 INFO:teuthology.orchestra.run.smithi138.stdout:Get:45 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-idna all 3.3-1 [49.3 kB] 2024-04-14T15:19:43.907 INFO:teuthology.orchestra.run.smithi138.stdout:Get:46 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-urllib3 all 1.26.5-1~exp1ubuntu0.1 [98.2 kB] 2024-04-14T15:19:43.908 INFO:teuthology.orchestra.run.smithi047.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-wcwidth all 0.2.5+dfsg1-1 [21.9 kB] 2024-04-14T15:19:43.909 INFO:teuthology.orchestra.run.smithi047.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-prettytable all 2.5.0-2 [31.3 kB] 2024-04-14T15:19:43.910 INFO:teuthology.orchestra.run.smithi047.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy/universe amd64 librdkafka1 amd64 1.8.0-1build1 [633 kB] 2024-04-14T15:19:43.916 INFO:teuthology.orchestra.run.smithi110.stdout:Get:69 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjq1 amd64 1.6-2.1ubuntu3 [133 kB] 2024-04-14T15:19:43.921 INFO:teuthology.orchestra.run.smithi138.stdout:Get:47 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs2 amd64 19.0.0-2778-ga971fd5f-1jammy [712 kB] 2024-04-14T15:19:43.934 INFO:teuthology.orchestra.run.smithi110.stdout:Get:70 http://archive.ubuntu.com/ubuntu jammy/main amd64 jq amd64 1.6-2.1ubuntu3 [52.5 kB] 2024-04-14T15:19:43.935 INFO:teuthology.orchestra.run.smithi110.stdout:Get:71 http://archive.ubuntu.com/ubuntu jammy/main amd64 socat amd64 1.7.4.1-3ubuntu4 [349 kB] 2024-04-14T15:19:43.941 INFO:teuthology.orchestra.run.smithi110.stdout:Get:72 http://archive.ubuntu.com/ubuntu jammy/universe amd64 xmlstarlet amd64 1.6.1-2.1 [265 kB] 2024-04-14T15:19:43.941 INFO:teuthology.orchestra.run.smithi138.stdout:Get:48 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-requests all 2.25.1+dfsg-2ubuntu0.1 [48.8 kB] 2024-04-14T15:19:43.943 INFO:teuthology.orchestra.run.smithi138.stdout:Get:49 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-werkzeug all 2.0.2+dfsg1-1ubuntu0.22.04.1 [181 kB] 2024-04-14T15:19:43.943 INFO:teuthology.orchestra.run.smithi047.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy/main amd64 libreadline-dev amd64 8.1.2-1 [166 kB] 2024-04-14T15:19:43.945 INFO:teuthology.orchestra.run.smithi110.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-14T15:19:43.947 INFO:teuthology.orchestra.run.smithi047.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblua5.3-dev amd64 5.3.6-1build1 [167 kB] 2024-04-14T15:19:43.948 INFO:teuthology.orchestra.run.smithi138.stdout:Get:50 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-bcrypt amd64 3.2.0-1build1 [32.7 kB] 2024-04-14T15:19:43.949 INFO:teuthology.orchestra.run.smithi138.stdout:Get:51 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-openssl all 21.0.0-1 [45.2 kB] 2024-04-14T15:19:43.950 INFO:teuthology.orchestra.run.smithi138.stdout:Get:52 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-asyncssh all 2.5.0-1 [185 kB] 2024-04-14T15:19:43.953 INFO:teuthology.orchestra.run.smithi047.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua5.1 amd64 5.1.5-8.1build4 [94.6 kB] 2024-04-14T15:19:43.956 INFO:teuthology.orchestra.run.smithi047.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-any all 27ubuntu1 [5,034 B] 2024-04-14T15:19:43.956 INFO:teuthology.orchestra.run.smithi047.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy/main amd64 zip amd64 3.0-12build2 [176 kB] 2024-04-14T15:19:43.956 INFO:teuthology.orchestra.run.smithi138.stdout:Get:53 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 python3-rados amd64 19.0.0-2778-ga971fd5f-1jammy [356 kB] 2024-04-14T15:19:43.957 INFO:teuthology.orchestra.run.smithi110.stdout:Get:74 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-sec amd64 1.0.2-1 [37.6 kB] 2024-04-14T15:19:43.958 INFO:teuthology.orchestra.run.smithi110.stdout:Get:75 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 nvme-cli amd64 1.16-3ubuntu0.1 [474 kB] 2024-04-14T15:19:43.963 INFO:teuthology.orchestra.run.smithi138.stdout:Get:54 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-argparse all 19.0.0-2778-ga971fd5f-1jammy [32.8 kB] 2024-04-14T15:19:43.964 INFO:teuthology.orchestra.run.smithi138.stdout:Get:55 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 python3-cephfs amd64 19.0.0-2778-ga971fd5f-1jammy [180 kB] 2024-04-14T15:19:43.976 INFO:teuthology.orchestra.run.smithi110.stdout:Get:76 http://archive.ubuntu.com/ubuntu jammy/main amd64 pkg-config amd64 0.29.2-1ubuntu3 [48.2 kB] 2024-04-14T15:19:43.978 INFO:teuthology.orchestra.run.smithi110.stdout:Get:77 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python-asyncssh-doc all 2.5.0-1 [318 kB] 2024-04-14T15:19:43.978 INFO:teuthology.orchestra.run.smithi138.stdout:Get:56 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-common all 19.0.0-2778-ga971fd5f-1jammy [66.9 kB] 2024-04-14T15:19:43.980 INFO:teuthology.orchestra.run.smithi138.stdout:Get:57 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 python3-rbd amd64 19.0.0-2778-ga971fd5f-1jammy [330 kB] 2024-04-14T15:19:43.983 INFO:teuthology.orchestra.run.smithi110.stdout:Get:78 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-iniconfig all 1.1.1-2 [6,024 B] 2024-04-14T15:19:43.987 INFO:teuthology.orchestra.run.smithi138.stdout:Get:58 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 librgw2 amd64 19.0.0-2778-ga971fd5f-1jammy [6,723 kB] 2024-04-14T15:19:43.990 INFO:teuthology.orchestra.run.smithi138.stdout:Get:59 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-babel-localedata all 2.8.0+dfsg.1-7 [4,982 kB] 2024-04-14T15:19:44.010 INFO:teuthology.orchestra.run.smithi047.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 unzip amd64 6.0-26ubuntu3.2 [175 kB] 2024-04-14T15:19:44.014 INFO:teuthology.orchestra.run.smithi047.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy/universe amd64 luarocks all 3.8.0+dfsg1-1 [140 kB] 2024-04-14T15:19:44.018 INFO:teuthology.orchestra.run.smithi047.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy/main amd64 liboath0 amd64 2.6.7-3build1 [41.1 kB] 2024-04-14T15:19:44.019 INFO:teuthology.orchestra.run.smithi047.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.functools all 3.4.0-2 [9,030 B] 2024-04-14T15:19:44.020 INFO:teuthology.orchestra.run.smithi110.stdout:Get:79 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastescript all 2.0.2-4 [54.6 kB] 2024-04-14T15:19:44.020 INFO:teuthology.orchestra.run.smithi047.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-14T15:19:44.021 INFO:teuthology.orchestra.run.smithi110.stdout:Get:80 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pluggy all 0.13.0-7.1 [19.0 kB] 2024-04-14T15:19:44.022 INFO:teuthology.orchestra.run.smithi047.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.classes all 3.2.1-3 [6,452 B] 2024-04-14T15:19:44.022 INFO:teuthology.orchestra.run.smithi110.stdout:Get:81 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-psutil amd64 5.9.0-1build1 [158 kB] 2024-04-14T15:19:44.026 INFO:teuthology.orchestra.run.smithi110.stdout:Get:82 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-py all 1.10.0-1 [71.9 kB] 2024-04-14T15:19:44.028 INFO:teuthology.orchestra.run.smithi110.stdout:Get:83 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pygments all 2.11.2+dfsg-2 [750 kB] 2024-04-14T15:19:44.056 INFO:teuthology.orchestra.run.smithi047.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.text all 3.6.0-2 [8,716 B] 2024-04-14T15:19:44.057 INFO:teuthology.orchestra.run.smithi047.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.collections all 3.4.0-2 [11.4 kB] 2024-04-14T15:19:44.058 INFO:teuthology.orchestra.run.smithi047.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempora all 4.1.2-1 [14.8 kB] 2024-04-14T15:19:44.059 INFO:teuthology.orchestra.run.smithi047.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-portend all 3.0.0-1 [7,240 B] 2024-04-14T15:19:44.108 INFO:teuthology.orchestra.run.smithi047.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-zc.lockfile all 2.0-1 [8,980 B] 2024-04-14T15:19:44.109 INFO:teuthology.orchestra.run.smithi047.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cherrypy3 all 18.6.1-4 [208 kB] 2024-04-14T15:19:44.115 INFO:teuthology.orchestra.run.smithi047.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-natsort all 8.0.2-1 [35.3 kB] 2024-04-14T15:19:44.116 INFO:teuthology.orchestra.run.smithi047.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-logutils all 0.3.3-8 [17.6 kB] 2024-04-14T15:19:44.117 INFO:teuthology.orchestra.run.smithi047.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-markupsafe amd64 2.0.1-2build1 [12.7 kB] 2024-04-14T15:19:44.117 INFO:teuthology.orchestra.run.smithi047.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-14T15:19:44.119 INFO:teuthology.orchestra.run.smithi110.stdout:Get:84 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyinotify all 0.9.6-1.3 [24.8 kB] 2024-04-14T15:19:44.120 INFO:teuthology.orchestra.run.smithi110.stdout:Get:85 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-toml all 0.10.2-1 [16.5 kB] 2024-04-14T15:19:44.120 INFO:teuthology.orchestra.run.smithi110.stdout:Get:86 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pytest all 6.2.5-1ubuntu2 [214 kB] 2024-04-14T15:19:44.125 INFO:teuthology.orchestra.run.smithi110.stdout:Get:87 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplejson amd64 3.17.6-1build1 [54.7 kB] 2024-04-14T15:19:44.127 INFO:teuthology.orchestra.run.smithi110.stdout:Get:88 http://archive.ubuntu.com/ubuntu jammy/universe amd64 qttranslations5-l10n all 5.15.3-1 [1,983 kB] 2024-04-14T15:19:44.142 INFO:teuthology.orchestra.run.smithi047.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplegeneric all 0.8.1-3 [11.3 kB] 2024-04-14T15:19:44.143 INFO:teuthology.orchestra.run.smithi047.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-singledispatch all 3.4.0.3-3 [7,320 B] 2024-04-14T15:19:44.143 INFO:teuthology.orchestra.run.smithi047.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-14T15:19:44.146 INFO:teuthology.orchestra.run.smithi047.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-waitress all 1.4.4-1.1ubuntu1 [47.3 kB] 2024-04-14T15:19:44.147 INFO:teuthology.orchestra.run.smithi138.stdout:Get:60 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-babel all 2.8.0+dfsg.1-7 [85.1 kB] 2024-04-14T15:19:44.149 INFO:teuthology.orchestra.run.smithi138.stdout:Get:61 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-jinja2 all 3.0.3-1ubuntu0.1 [108 kB] 2024-04-14T15:19:44.151 INFO:teuthology.orchestra.run.smithi138.stdout:Get:62 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-repoze.lru all 0.7-2 [12.1 kB] 2024-04-14T15:19:44.151 INFO:teuthology.orchestra.run.smithi138.stdout:Get:63 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-routes all 2.5.1-1ubuntu1 [89.0 kB] 2024-04-14T15:19:44.153 INFO:teuthology.orchestra.run.smithi138.stdout:Get:64 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn-lib amd64 0.23.2-5ubuntu6 [2,058 kB] 2024-04-14T15:19:44.177 INFO:teuthology.orchestra.run.smithi138.stdout:Get:65 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-joblib all 0.17.0-4ubuntu1 [204 kB] 2024-04-14T15:19:44.180 INFO:teuthology.orchestra.run.smithi138.stdout:Get:66 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-threadpoolctl all 3.1.0-1 [21.3 kB] 2024-04-14T15:19:44.180 INFO:teuthology.orchestra.run.smithi138.stdout:Get:67 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn all 0.23.2-5ubuntu6 [1,829 kB] 2024-04-14T15:19:44.184 INFO:teuthology.orchestra.run.smithi047.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempita all 0.5.2-6ubuntu1 [15.1 kB] 2024-04-14T15:19:44.185 INFO:teuthology.orchestra.run.smithi047.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-paste all 3.5.0+dfsg1-1 [456 kB] 2024-04-14T15:19:44.195 INFO:teuthology.orchestra.run.smithi047.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-pastedeploy-tpl all 2.1.1-1 [4,892 B] 2024-04-14T15:19:44.196 INFO:teuthology.orchestra.run.smithi047.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastedeploy all 2.1.1-1 [26.6 kB] 2024-04-14T15:19:44.197 INFO:teuthology.orchestra.run.smithi047.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webtest all 2.0.35-1 [28.5 kB] 2024-04-14T15:19:44.198 INFO:teuthology.orchestra.run.smithi047.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pecan all 1.3.3-4ubuntu2 [87.3 kB] 2024-04-14T15:19:44.208 INFO:teuthology.orchestra.run.smithi138.stdout:Get:68 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cachetools all 5.0.0-1 [9,722 B] 2024-04-14T15:19:44.208 INFO:teuthology.orchestra.run.smithi138.stdout:Get:69 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1 all 0.4.8-1 [50.9 kB] 2024-04-14T15:19:44.212 INFO:teuthology.orchestra.run.smithi047.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-04-14T15:19:44.216 INFO:teuthology.orchestra.run.smithi047.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-idna all 3.3-1 [49.3 kB] 2024-04-14T15:19:44.217 INFO:teuthology.orchestra.run.smithi047.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-14T15:19:44.220 INFO:teuthology.orchestra.run.smithi047.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-14T15:19:44.222 INFO:teuthology.orchestra.run.smithi138.stdout:Get:70 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1-modules all 0.2.1-1 [33.0 kB] 2024-04-14T15:19:44.222 INFO:teuthology.orchestra.run.smithi138.stdout:Get:71 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-rsa all 4.8-1 [28.4 kB] 2024-04-14T15:19:44.223 INFO:teuthology.orchestra.run.smithi138.stdout:Get:72 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-google-auth all 1.5.1-3 [35.7 kB] 2024-04-14T15:19:44.224 INFO:teuthology.orchestra.run.smithi138.stdout:Get:73 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-requests-oauthlib all 1.3.0+ds-0.1 [18.7 kB] 2024-04-14T15:19:44.224 INFO:teuthology.orchestra.run.smithi138.stdout:Get:74 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-websocket all 1.2.3-1 [34.7 kB] 2024-04-14T15:19:44.225 INFO:teuthology.orchestra.run.smithi138.stdout:Get:75 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-kubernetes all 12.0.1-1ubuntu1 [353 kB] 2024-04-14T15:19:44.228 INFO:teuthology.orchestra.run.smithi138.stdout:Get:76 http://archive.ubuntu.com/ubuntu jammy/main amd64 libonig5 amd64 6.9.7.1-2build1 [172 kB] 2024-04-14T15:19:44.233 INFO:teuthology.orchestra.run.smithi047.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-14T15:19:44.237 INFO:teuthology.orchestra.run.smithi047.stdout:Get:48 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-bcrypt amd64 3.2.0-1build1 [32.7 kB] 2024-04-14T15:19:44.238 INFO:teuthology.orchestra.run.smithi138.stdout:Get:77 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 python3-rgw amd64 19.0.0-2778-ga971fd5f-1jammy [112 kB] 2024-04-14T15:19:44.238 INFO:teuthology.orchestra.run.smithi047.stdout:Get:49 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-openssl all 21.0.0-1 [45.2 kB] 2024-04-14T15:19:44.240 INFO:teuthology.orchestra.run.smithi047.stdout:Get:50 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-asyncssh all 2.5.0-1 [185 kB] 2024-04-14T15:19:44.240 INFO:teuthology.orchestra.run.smithi138.stdout:Get:78 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 libradosstriper1 amd64 19.0.0-2778-ga971fd5f-1jammy [466 kB] 2024-04-14T15:19:44.245 INFO:teuthology.orchestra.run.smithi047.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-14T15:19:44.245 INFO:teuthology.orchestra.run.smithi138.stdout:Get:79 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjq1 amd64 1.6-2.1ubuntu3 [133 kB] 2024-04-14T15:19:44.247 INFO:teuthology.orchestra.run.smithi138.stdout:Get:80 http://archive.ubuntu.com/ubuntu jammy/main amd64 jq amd64 1.6-2.1ubuntu3 [52.5 kB] 2024-04-14T15:19:44.249 INFO:teuthology.orchestra.run.smithi138.stdout:Get:81 http://archive.ubuntu.com/ubuntu jammy/main amd64 socat amd64 1.7.4.1-3ubuntu4 [349 kB] 2024-04-14T15:19:44.259 INFO:teuthology.orchestra.run.smithi138.stdout:Get:82 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph-common amd64 19.0.0-2778-ga971fd5f-1jammy [25.5 MB] 2024-04-14T15:19:44.277 INFO:teuthology.orchestra.run.smithi138.stdout:Get:83 http://archive.ubuntu.com/ubuntu jammy/universe amd64 xmlstarlet amd64 1.6.1-2.1 [265 kB] 2024-04-14T15:19:44.282 INFO:teuthology.orchestra.run.smithi138.stdout:Get:84 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-socket amd64 3.0~rc1+git+ac3201d-6 [78.9 kB] 2024-04-14T15:19:44.284 INFO:teuthology.orchestra.run.smithi138.stdout:Get:85 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-sec amd64 1.0.2-1 [37.6 kB] 2024-04-14T15:19:44.285 INFO:teuthology.orchestra.run.smithi138.stdout:Get:86 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 nvme-cli amd64 1.16-3ubuntu0.1 [474 kB] 2024-04-14T15:19:44.293 INFO:teuthology.orchestra.run.smithi138.stdout:Get:87 http://archive.ubuntu.com/ubuntu jammy/main amd64 pkg-config amd64 0.29.2-1ubuntu3 [48.2 kB] 2024-04-14T15:19:44.294 INFO:teuthology.orchestra.run.smithi138.stdout:Get:88 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python-asyncssh-doc all 2.5.0-1 [318 kB] 2024-04-14T15:19:44.299 INFO:teuthology.orchestra.run.smithi138.stdout:Get:89 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-iniconfig all 1.1.1-2 [6,024 B] 2024-04-14T15:19:44.325 INFO:teuthology.orchestra.run.smithi138.stdout:Get:90 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastescript all 2.0.2-4 [54.6 kB] 2024-04-14T15:19:44.326 INFO:teuthology.orchestra.run.smithi138.stdout:Get:91 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pluggy all 0.13.0-7.1 [19.0 kB] 2024-04-14T15:19:44.327 INFO:teuthology.orchestra.run.smithi138.stdout:Get:92 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-psutil amd64 5.9.0-1build1 [158 kB] 2024-04-14T15:19:44.342 INFO:teuthology.orchestra.run.smithi047.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-14T15:19:44.343 INFO:teuthology.orchestra.run.smithi047.stdout:Get:53 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-jinja2 all 3.0.3-1ubuntu0.1 [108 kB] 2024-04-14T15:19:44.345 INFO:teuthology.orchestra.run.smithi047.stdout:Get:54 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-repoze.lru all 0.7-2 [12.1 kB] 2024-04-14T15:19:44.346 INFO:teuthology.orchestra.run.smithi047.stdout:Get:55 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-routes all 2.5.1-1ubuntu1 [89.0 kB] 2024-04-14T15:19:44.347 INFO:teuthology.orchestra.run.smithi047.stdout:Get:56 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn-lib amd64 0.23.2-5ubuntu6 [2,058 kB] 2024-04-14T15:19:44.368 INFO:teuthology.orchestra.run.smithi138.stdout:Get:93 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-py all 1.10.0-1 [71.9 kB] 2024-04-14T15:19:44.370 INFO:teuthology.orchestra.run.smithi138.stdout:Get:94 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pygments all 2.11.2+dfsg-2 [750 kB] 2024-04-14T15:19:44.373 INFO:teuthology.orchestra.run.smithi047.stdout:Get:57 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-joblib all 0.17.0-4ubuntu1 [204 kB] 2024-04-14T15:19:44.382 INFO:teuthology.orchestra.run.smithi047.stdout:Get:58 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-threadpoolctl all 3.1.0-1 [21.3 kB] 2024-04-14T15:19:44.383 INFO:teuthology.orchestra.run.smithi047.stdout:Get:59 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn all 0.23.2-5ubuntu6 [1,829 kB] 2024-04-14T15:19:44.384 INFO:teuthology.orchestra.run.smithi138.stdout:Get:95 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyinotify all 0.9.6-1.3 [24.8 kB] 2024-04-14T15:19:44.385 INFO:teuthology.orchestra.run.smithi138.stdout:Get:96 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-toml all 0.10.2-1 [16.5 kB] 2024-04-14T15:19:44.385 INFO:teuthology.orchestra.run.smithi138.stdout:Get:97 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pytest all 6.2.5-1ubuntu2 [214 kB] 2024-04-14T15:19:44.390 INFO:teuthology.orchestra.run.smithi138.stdout:Get:98 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplejson amd64 3.17.6-1build1 [54.7 kB] 2024-04-14T15:19:44.391 INFO:teuthology.orchestra.run.smithi138.stdout:Get:99 http://archive.ubuntu.com/ubuntu jammy/universe amd64 qttranslations5-l10n all 5.15.3-1 [1,983 kB] 2024-04-14T15:19:44.473 INFO:teuthology.orchestra.run.smithi047.stdout:Get:60 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cachetools all 5.0.0-1 [9,722 B] 2024-04-14T15:19:44.474 INFO:teuthology.orchestra.run.smithi047.stdout:Get:61 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1 all 0.4.8-1 [50.9 kB] 2024-04-14T15:19:44.475 INFO:teuthology.orchestra.run.smithi047.stdout:Get:62 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1-modules all 0.2.1-1 [33.0 kB] 2024-04-14T15:19:44.476 INFO:teuthology.orchestra.run.smithi047.stdout:Get:63 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-rsa all 4.8-1 [28.4 kB] 2024-04-14T15:19:44.477 INFO:teuthology.orchestra.run.smithi047.stdout:Get:64 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-google-auth all 1.5.1-3 [35.7 kB] 2024-04-14T15:19:44.479 INFO:teuthology.orchestra.run.smithi047.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-14T15:19:44.479 INFO:teuthology.orchestra.run.smithi047.stdout:Get:66 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-websocket all 1.2.3-1 [34.7 kB] 2024-04-14T15:19:44.480 INFO:teuthology.orchestra.run.smithi047.stdout:Get:67 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-kubernetes all 12.0.1-1ubuntu1 [353 kB] 2024-04-14T15:19:44.487 INFO:teuthology.orchestra.run.smithi047.stdout:Get:68 http://archive.ubuntu.com/ubuntu jammy/main amd64 libonig5 amd64 6.9.7.1-2build1 [172 kB] 2024-04-14T15:19:44.496 INFO:teuthology.orchestra.run.smithi047.stdout:Get:69 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjq1 amd64 1.6-2.1ubuntu3 [133 kB] 2024-04-14T15:19:44.511 INFO:teuthology.orchestra.run.smithi047.stdout:Get:70 http://archive.ubuntu.com/ubuntu jammy/main amd64 jq amd64 1.6-2.1ubuntu3 [52.5 kB] 2024-04-14T15:19:44.512 INFO:teuthology.orchestra.run.smithi047.stdout:Get:71 http://archive.ubuntu.com/ubuntu jammy/main amd64 socat amd64 1.7.4.1-3ubuntu4 [349 kB] 2024-04-14T15:19:44.518 INFO:teuthology.orchestra.run.smithi047.stdout:Get:72 http://archive.ubuntu.com/ubuntu jammy/universe amd64 xmlstarlet amd64 1.6.1-2.1 [265 kB] 2024-04-14T15:19:44.522 INFO:teuthology.orchestra.run.smithi047.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-14T15:19:44.523 INFO:teuthology.orchestra.run.smithi047.stdout:Get:74 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-sec amd64 1.0.2-1 [37.6 kB] 2024-04-14T15:19:44.524 INFO:teuthology.orchestra.run.smithi047.stdout:Get:75 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 nvme-cli amd64 1.16-3ubuntu0.1 [474 kB] 2024-04-14T15:19:44.532 INFO:teuthology.orchestra.run.smithi047.stdout:Get:76 http://archive.ubuntu.com/ubuntu jammy/main amd64 pkg-config amd64 0.29.2-1ubuntu3 [48.2 kB] 2024-04-14T15:19:44.533 INFO:teuthology.orchestra.run.smithi047.stdout:Get:77 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python-asyncssh-doc all 2.5.0-1 [318 kB] 2024-04-14T15:19:44.538 INFO:teuthology.orchestra.run.smithi047.stdout:Get:78 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-iniconfig all 1.1.1-2 [6,024 B] 2024-04-14T15:19:44.550 INFO:teuthology.orchestra.run.smithi047.stdout:Get:79 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastescript all 2.0.2-4 [54.6 kB] 2024-04-14T15:19:44.551 INFO:teuthology.orchestra.run.smithi047.stdout:Get:80 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pluggy all 0.13.0-7.1 [19.0 kB] 2024-04-14T15:19:44.552 INFO:teuthology.orchestra.run.smithi047.stdout:Get:81 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-psutil amd64 5.9.0-1build1 [158 kB] 2024-04-14T15:19:44.555 INFO:teuthology.orchestra.run.smithi047.stdout:Get:82 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-py all 1.10.0-1 [71.9 kB] 2024-04-14T15:19:44.556 INFO:teuthology.orchestra.run.smithi047.stdout:Get:83 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pygments all 2.11.2+dfsg-2 [750 kB] 2024-04-14T15:19:44.571 INFO:teuthology.orchestra.run.smithi047.stdout:Get:84 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyinotify all 0.9.6-1.3 [24.8 kB] 2024-04-14T15:19:44.571 INFO:teuthology.orchestra.run.smithi047.stdout:Get:85 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-toml all 0.10.2-1 [16.5 kB] 2024-04-14T15:19:44.572 INFO:teuthology.orchestra.run.smithi047.stdout:Get:86 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pytest all 6.2.5-1ubuntu2 [214 kB] 2024-04-14T15:19:44.575 INFO:teuthology.orchestra.run.smithi047.stdout:Get:87 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplejson amd64 3.17.6-1build1 [54.7 kB] 2024-04-14T15:19:44.576 INFO:teuthology.orchestra.run.smithi047.stdout:Get:88 http://archive.ubuntu.com/ubuntu jammy/universe amd64 qttranslations5-l10n all 5.15.3-1 [1,983 kB] 2024-04-14T15:19:45.213 INFO:teuthology.orchestra.run.smithi047.stdout:Get:89 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 librbd1 amd64 19.0.0-2778-ga971fd5f-1jammy [3,223 kB] 2024-04-14T15:19:45.392 INFO:teuthology.orchestra.run.smithi138.stdout:Get:100 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph-base amd64 19.0.0-2778-ga971fd5f-1jammy [5,087 kB] 2024-04-14T15:19:45.471 INFO:teuthology.orchestra.run.smithi138.stdout:Get:101 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-modules-core all 19.0.0-2778-ga971fd5f-1jammy [244 kB] 2024-04-14T15:19:45.473 INFO:teuthology.orchestra.run.smithi138.stdout:Get:102 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 libsqlite3-mod-ceph amd64 19.0.0-2778-ga971fd5f-1jammy [124 kB] 2024-04-14T15:19:45.475 INFO:teuthology.orchestra.run.smithi138.stdout:Get:103 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr amd64 19.0.0-2778-ga971fd5f-1jammy [1,526 kB] 2024-04-14T15:19:45.529 INFO:teuthology.orchestra.run.smithi138.stdout:Get:104 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mon amd64 19.0.0-2778-ga971fd5f-1jammy [6,260 kB] 2024-04-14T15:19:45.759 INFO:teuthology.orchestra.run.smithi110.stdout:Get:89 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 librbd1 amd64 19.0.0-2778-ga971fd5f-1jammy [3,223 kB] 2024-04-14T15:19:45.789 INFO:teuthology.orchestra.run.smithi138.stdout:Get:105 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph-osd amd64 19.0.0-2778-ga971fd5f-1jammy [22.8 MB] 2024-04-14T15:19:45.811 INFO:teuthology.orchestra.run.smithi047.stdout:Get:90 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs2 amd64 19.0.0-2778-ga971fd5f-1jammy [712 kB] 2024-04-14T15:19:45.956 INFO:teuthology.orchestra.run.smithi047.stdout:Get:91 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 python3-rados amd64 19.0.0-2778-ga971fd5f-1jammy [356 kB] 2024-04-14T15:19:46.027 INFO:teuthology.orchestra.run.smithi047.stdout:Get:92 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-argparse all 19.0.0-2778-ga971fd5f-1jammy [32.8 kB] 2024-04-14T15:19:46.030 INFO:teuthology.orchestra.run.smithi047.stdout:Get:93 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 python3-cephfs amd64 19.0.0-2778-ga971fd5f-1jammy [180 kB] 2024-04-14T15:19:46.049 INFO:teuthology.orchestra.run.smithi047.stdout:Get:94 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-common all 19.0.0-2778-ga971fd5f-1jammy [66.9 kB] 2024-04-14T15:19:46.061 INFO:teuthology.orchestra.run.smithi047.stdout:Get:95 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 python3-rbd amd64 19.0.0-2778-ga971fd5f-1jammy [330 kB] 2024-04-14T15:19:46.122 INFO:teuthology.orchestra.run.smithi047.stdout:Get:96 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 librgw2 amd64 19.0.0-2778-ga971fd5f-1jammy [6,723 kB] 2024-04-14T15:19:46.961 INFO:teuthology.orchestra.run.smithi138.stdout:Get:106 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph amd64 19.0.0-2778-ga971fd5f-1jammy [14.1 kB] 2024-04-14T15:19:46.962 INFO:teuthology.orchestra.run.smithi138.stdout:Get:107 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph-fuse amd64 19.0.0-2778-ga971fd5f-1jammy [870 kB] 2024-04-14T15:19:46.980 INFO:teuthology.orchestra.run.smithi138.stdout:Get:108 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mds amd64 19.0.0-2778-ga971fd5f-1jammy [2,437 kB] 2024-04-14T15:19:47.022 INFO:teuthology.orchestra.run.smithi138.stdout:Get:109 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 cephadm amd64 19.0.0-2778-ga971fd5f-1jammy [791 kB] 2024-04-14T15:19:47.033 INFO:teuthology.orchestra.run.smithi138.stdout:Get:110 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-cephadm all 19.0.0-2778-ga971fd5f-1jammy [147 kB] 2024-04-14T15:19:47.035 INFO:teuthology.orchestra.run.smithi138.stdout:Get:111 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-dashboard all 19.0.0-2778-ga971fd5f-1jammy [2,311 kB] 2024-04-14T15:19:47.063 INFO:teuthology.orchestra.run.smithi047.stdout:Get:97 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 python3-rgw amd64 19.0.0-2778-ga971fd5f-1jammy [112 kB] 2024-04-14T15:19:47.067 INFO:teuthology.orchestra.run.smithi047.stdout:Get:98 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 libradosstriper1 amd64 19.0.0-2778-ga971fd5f-1jammy [466 kB] 2024-04-14T15:19:47.108 INFO:teuthology.orchestra.run.smithi138.stdout:Get:112 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-diskprediction-local all 19.0.0-2778-ga971fd5f-1jammy [8,625 kB] 2024-04-14T15:19:47.135 INFO:teuthology.orchestra.run.smithi047.stdout:Get:99 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph-common amd64 19.0.0-2778-ga971fd5f-1jammy [25.5 MB] 2024-04-14T15:19:47.518 INFO:teuthology.orchestra.run.smithi138.stdout:Get:113 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-k8sevents all 19.0.0-2778-ga971fd5f-1jammy [14.2 kB] 2024-04-14T15:19:47.518 INFO:teuthology.orchestra.run.smithi138.stdout:Get:114 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph-test amd64 19.0.0-2778-ga971fd5f-1jammy [51.0 MB] 2024-04-14T15:19:47.758 INFO:teuthology.orchestra.run.smithi110.stdout:Get:90 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs2 amd64 19.0.0-2778-ga971fd5f-1jammy [712 kB] 2024-04-14T15:19:48.147 INFO:teuthology.orchestra.run.smithi110.stdout:Get:91 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 python3-rados amd64 19.0.0-2778-ga971fd5f-1jammy [356 kB] 2024-04-14T15:19:48.378 INFO:teuthology.orchestra.run.smithi110.stdout:Get:92 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-argparse all 19.0.0-2778-ga971fd5f-1jammy [32.8 kB] 2024-04-14T15:19:48.379 INFO:teuthology.orchestra.run.smithi110.stdout:Get:93 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 python3-cephfs amd64 19.0.0-2778-ga971fd5f-1jammy [180 kB] 2024-04-14T15:19:48.530 INFO:teuthology.orchestra.run.smithi110.stdout:Get:94 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-common all 19.0.0-2778-ga971fd5f-1jammy [66.9 kB] 2024-04-14T15:19:48.640 INFO:teuthology.orchestra.run.smithi110.stdout:Get:95 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 python3-rbd amd64 19.0.0-2778-ga971fd5f-1jammy [330 kB] 2024-04-14T15:19:48.767 INFO:teuthology.orchestra.run.smithi110.stdout:Get:96 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 librgw2 amd64 19.0.0-2778-ga971fd5f-1jammy [6,723 kB] 2024-04-14T15:19:50.206 INFO:teuthology.orchestra.run.smithi138.stdout:Get:115 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph-volume all 19.0.0-2778-ga971fd5f-1jammy [121 kB] 2024-04-14T15:19:50.209 INFO:teuthology.orchestra.run.smithi138.stdout:Get:116 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs-dev amd64 19.0.0-2778-ga971fd5f-1jammy [38.9 kB] 2024-04-14T15:19:50.210 INFO:teuthology.orchestra.run.smithi138.stdout:Get:117 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 radosgw amd64 19.0.0-2778-ga971fd5f-1jammy [13.3 MB] 2024-04-14T15:19:50.335 INFO:teuthology.orchestra.run.smithi047.stdout:Get:100 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph-base amd64 19.0.0-2778-ga971fd5f-1jammy [5,087 kB] 2024-04-14T15:19:50.736 INFO:teuthology.orchestra.run.smithi138.stdout:Get:118 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 rbd-fuse amd64 19.0.0-2778-ga971fd5f-1jammy [91.5 kB] 2024-04-14T15:19:50.756 INFO:teuthology.orchestra.run.smithi047.stdout:Get:101 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-modules-core all 19.0.0-2778-ga971fd5f-1jammy [244 kB] 2024-04-14T15:19:50.767 INFO:teuthology.orchestra.run.smithi047.stdout:Get:102 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 libsqlite3-mod-ceph amd64 19.0.0-2778-ga971fd5f-1jammy [124 kB] 2024-04-14T15:19:50.775 INFO:teuthology.orchestra.run.smithi047.stdout:Get:103 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr amd64 19.0.0-2778-ga971fd5f-1jammy [1,526 kB] 2024-04-14T15:19:50.851 INFO:teuthology.orchestra.run.smithi047.stdout:Get:104 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mon amd64 19.0.0-2778-ga971fd5f-1jammy [6,260 kB] 2024-04-14T15:19:51.163 INFO:teuthology.orchestra.run.smithi047.stdout:Get:105 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph-osd amd64 19.0.0-2778-ga971fd5f-1jammy [22.8 MB] 2024-04-14T15:19:51.299 INFO:teuthology.orchestra.run.smithi138.stdout:Fetched 180 MB in 8s (23.9 MB/s) 2024-04-14T15:19:51.444 INFO:teuthology.orchestra.run.smithi110.stdout:Get:97 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 python3-rgw amd64 19.0.0-2778-ga971fd5f-1jammy [112 kB] 2024-04-14T15:19:51.455 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package liblttng-ust1:amd64. 2024-04-14T15:19:51.476 INFO:teuthology.orchestra.run.smithi110.stdout:Get:98 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 libradosstriper1 amd64 19.0.0-2778-ga971fd5f-1jammy [466 kB] 2024-04-14T15:19:51.556 INFO:teuthology.orchestra.run.smithi138.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-14T15:19:51.561 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../000-liblttng-ust1_2.13.1-1ubuntu1_amd64.deb ... 2024-04-14T15:19:51.582 INFO:teuthology.orchestra.run.smithi110.stdout:Get:99 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph-common amd64 19.0.0-2778-ga971fd5f-1jammy [25.5 MB] 2024-04-14T15:19:51.646 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-04-14T15:19:51.982 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package libdouble-conversion3:amd64. 2024-04-14T15:19:52.009 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../001-libdouble-conversion3_3.1.7-4_amd64.deb ... 2024-04-14T15:19:52.049 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking libdouble-conversion3:amd64 (3.1.7-4) ... 2024-04-14T15:19:52.335 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package libpcre2-16-0:amd64. 2024-04-14T15:19:52.351 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../002-libpcre2-16-0_10.39-3ubuntu0.1_amd64.deb ... 2024-04-14T15:19:52.393 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-04-14T15:19:52.412 INFO:teuthology.orchestra.run.smithi047.stdout:Get:106 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph amd64 19.0.0-2778-ga971fd5f-1jammy [14.1 kB] 2024-04-14T15:19:52.412 INFO:teuthology.orchestra.run.smithi047.stdout:Get:107 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph-fuse amd64 19.0.0-2778-ga971fd5f-1jammy [870 kB] 2024-04-14T15:19:52.429 INFO:teuthology.orchestra.run.smithi047.stdout:Get:108 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mds amd64 19.0.0-2778-ga971fd5f-1jammy [2,437 kB] 2024-04-14T15:19:52.523 INFO:teuthology.orchestra.run.smithi047.stdout:Get:109 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 cephadm amd64 19.0.0-2778-ga971fd5f-1jammy [791 kB] 2024-04-14T15:19:52.560 INFO:teuthology.orchestra.run.smithi047.stdout:Get:110 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-cephadm all 19.0.0-2778-ga971fd5f-1jammy [147 kB] 2024-04-14T15:19:52.563 INFO:teuthology.orchestra.run.smithi047.stdout:Get:111 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-dashboard all 19.0.0-2778-ga971fd5f-1jammy [2,311 kB] 2024-04-14T15:19:52.676 INFO:teuthology.orchestra.run.smithi047.stdout:Get:112 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-diskprediction-local all 19.0.0-2778-ga971fd5f-1jammy [8,625 kB] 2024-04-14T15:19:52.847 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package libqt5core5a:amd64. 2024-04-14T15:19:52.874 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../003-libqt5core5a_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-04-14T15:19:52.922 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-14T15:19:53.102 INFO:teuthology.orchestra.run.smithi047.stdout:Get:113 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-k8sevents all 19.0.0-2778-ga971fd5f-1jammy [14.2 kB] 2024-04-14T15:19:53.103 INFO:teuthology.orchestra.run.smithi047.stdout:Get:114 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph-test amd64 19.0.0-2778-ga971fd5f-1jammy [51.0 MB] 2024-04-14T15:19:53.325 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package libqt5dbus5:amd64. 2024-04-14T15:19:53.351 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../004-libqt5dbus5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-04-14T15:19:53.392 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-14T15:19:53.720 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package libqt5network5:amd64. 2024-04-14T15:19:53.746 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../005-libqt5network5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-04-14T15:19:53.786 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-14T15:19:54.156 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package libthrift-0.16.0:amd64. 2024-04-14T15:19:54.183 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../006-libthrift-0.16.0_0.16.0-2_amd64.deb ... 2024-04-14T15:19:54.223 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-04-14T15:19:54.526 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package librados2. 2024-04-14T15:19:54.552 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../007-librados2_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:19:54.592 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking librados2 (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:19:54.987 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package librbd1. 2024-04-14T15:19:55.002 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../008-librbd1_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:19:55.036 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking librbd1 (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:19:55.465 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package libcephfs2. 2024-04-14T15:19:55.491 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../009-libcephfs2_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:19:55.531 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking libcephfs2 (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:19:55.777 INFO:teuthology.orchestra.run.smithi110.stdout:Get:100 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph-base amd64 19.0.0-2778-ga971fd5f-1jammy [5,087 kB] 2024-04-14T15:19:55.817 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-rados. 2024-04-14T15:19:55.832 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../010-python3-rados_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:19:55.875 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-rados (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:19:55.942 INFO:teuthology.orchestra.run.smithi047.stdout:Get:115 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph-volume all 19.0.0-2778-ga971fd5f-1jammy [121 kB] 2024-04-14T15:19:55.944 INFO:teuthology.orchestra.run.smithi047.stdout:Get:116 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs-dev amd64 19.0.0-2778-ga971fd5f-1jammy [38.9 kB] 2024-04-14T15:19:55.945 INFO:teuthology.orchestra.run.smithi047.stdout:Get:117 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 radosgw amd64 19.0.0-2778-ga971fd5f-1jammy [13.3 MB] 2024-04-14T15:19:56.169 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-ceph-argparse. 2024-04-14T15:19:56.196 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../011-python3-ceph-argparse_19.0.0-2778-ga971fd5f-1jammy_all.deb ... 2024-04-14T15:19:56.228 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-ceph-argparse (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:19:56.228 INFO:teuthology.orchestra.run.smithi110.stdout:Get:101 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-modules-core all 19.0.0-2778-ga971fd5f-1jammy [244 kB] 2024-04-14T15:19:56.245 INFO:teuthology.orchestra.run.smithi110.stdout:Get:102 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 libsqlite3-mod-ceph amd64 19.0.0-2778-ga971fd5f-1jammy [124 kB] 2024-04-14T15:19:56.250 INFO:teuthology.orchestra.run.smithi110.stdout:Get:103 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr amd64 19.0.0-2778-ga971fd5f-1jammy [1,526 kB] 2024-04-14T15:19:56.397 INFO:teuthology.orchestra.run.smithi110.stdout:Get:104 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mon amd64 19.0.0-2778-ga971fd5f-1jammy [6,260 kB] 2024-04-14T15:19:56.413 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-cephfs. 2024-04-14T15:19:56.429 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../012-python3-cephfs_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:19:56.463 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-cephfs (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:19:56.482 INFO:teuthology.orchestra.run.smithi047.stdout:Get:118 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 rbd-fuse amd64 19.0.0-2778-ga971fd5f-1jammy [91.5 kB] 2024-04-14T15:19:56.783 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-ceph-common. 2024-04-14T15:19:56.809 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../013-python3-ceph-common_19.0.0-2778-ga971fd5f-1jammy_all.deb ... 2024-04-14T15:19:56.849 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-ceph-common (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:19:56.928 INFO:teuthology.orchestra.run.smithi110.stdout:Get:105 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph-osd amd64 19.0.0-2778-ga971fd5f-1jammy [22.8 MB] 2024-04-14T15:19:57.075 INFO:teuthology.orchestra.run.smithi047.stdout:Fetched 180 MB in 13s (13.6 MB/s) 2024-04-14T15:19:57.203 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-wcwidth. 2024-04-14T15:19:57.214 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package liblttng-ust1:amd64. 2024-04-14T15:19:57.229 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../014-python3-wcwidth_0.2.5+dfsg1-1_all.deb ... 2024-04-14T15:19:57.269 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-wcwidth (0.2.5+dfsg1-1) ... 2024-04-14T15:19:57.290 INFO:teuthology.orchestra.run.smithi047.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-14T15:19:57.296 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../000-liblttng-ust1_2.13.1-1ubuntu1_amd64.deb ... 2024-04-14T15:19:57.388 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-04-14T15:19:57.588 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-prettytable. 2024-04-14T15:19:57.615 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../015-python3-prettytable_2.5.0-2_all.deb ... 2024-04-14T15:19:57.655 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-prettytable (2.5.0-2) ... 2024-04-14T15:19:57.725 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package libdouble-conversion3:amd64. 2024-04-14T15:19:57.751 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../001-libdouble-conversion3_3.1.7-4_amd64.deb ... 2024-04-14T15:19:57.791 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking libdouble-conversion3:amd64 (3.1.7-4) ... 2024-04-14T15:19:57.891 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-rbd. 2024-04-14T15:19:57.906 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../016-python3-rbd_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:19:57.966 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-rbd (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:19:58.252 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package libpcre2-16-0:amd64. 2024-04-14T15:19:58.277 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package librdkafka1:amd64. 2024-04-14T15:19:58.279 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../002-libpcre2-16-0_10.39-3ubuntu0.1_amd64.deb ... 2024-04-14T15:19:58.303 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../017-librdkafka1_1.8.0-1build1_amd64.deb ... 2024-04-14T15:19:58.319 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-04-14T15:19:58.352 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking librdkafka1:amd64 (1.8.0-1build1) ... 2024-04-14T15:19:58.516 INFO:teuthology.orchestra.run.smithi110.stdout:Get:106 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph amd64 19.0.0-2778-ga971fd5f-1jammy [14.1 kB] 2024-04-14T15:19:58.638 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package libreadline-dev:amd64. 2024-04-14T15:19:58.653 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../018-libreadline-dev_8.1.2-1_amd64.deb ... 2024-04-14T15:19:58.685 INFO:teuthology.orchestra.run.smithi110.stdout:Get:107 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph-fuse amd64 19.0.0-2778-ga971fd5f-1jammy [870 kB] 2024-04-14T15:19:58.696 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking libreadline-dev:amd64 (8.1.2-1) ... 2024-04-14T15:19:58.701 INFO:teuthology.orchestra.run.smithi110.stdout:Get:108 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mds amd64 19.0.0-2778-ga971fd5f-1jammy [2,437 kB] 2024-04-14T15:19:58.705 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package libqt5core5a:amd64. 2024-04-14T15:19:58.733 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../003-libqt5core5a_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-04-14T15:19:58.759 INFO:teuthology.orchestra.run.smithi110.stdout:Get:109 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 cephadm amd64 19.0.0-2778-ga971fd5f-1jammy [791 kB] 2024-04-14T15:19:58.781 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-14T15:19:58.851 INFO:teuthology.orchestra.run.smithi110.stdout:Get:110 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-cephadm all 19.0.0-2778-ga971fd5f-1jammy [147 kB] 2024-04-14T15:19:58.856 INFO:teuthology.orchestra.run.smithi110.stdout:Get:111 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-dashboard all 19.0.0-2778-ga971fd5f-1jammy [2,311 kB] 2024-04-14T15:19:58.998 INFO:teuthology.orchestra.run.smithi110.stdout:Get:112 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-diskprediction-local all 19.0.0-2778-ga971fd5f-1jammy [8,625 kB] 2024-04-14T15:19:59.007 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package liblua5.3-dev:amd64. 2024-04-14T15:19:59.033 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../019-liblua5.3-dev_5.3.6-1build1_amd64.deb ... 2024-04-14T15:19:59.074 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-04-14T15:19:59.234 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package libqt5dbus5:amd64. 2024-04-14T15:19:59.260 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../004-libqt5dbus5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-04-14T15:19:59.300 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-14T15:19:59.360 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package lua5.1. 2024-04-14T15:19:59.375 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../020-lua5.1_5.1.5-8.1build4_amd64.deb ... 2024-04-14T15:19:59.419 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking lua5.1 (5.1.5-8.1build4) ... 2024-04-14T15:19:59.429 INFO:teuthology.orchestra.run.smithi110.stdout:Get:113 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-k8sevents all 19.0.0-2778-ga971fd5f-1jammy [14.2 kB] 2024-04-14T15:19:59.430 INFO:teuthology.orchestra.run.smithi110.stdout:Get:114 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph-test amd64 19.0.0-2778-ga971fd5f-1jammy [51.0 MB] 2024-04-14T15:19:59.645 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package libqt5network5:amd64. 2024-04-14T15:19:59.671 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../005-libqt5network5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-04-14T15:19:59.712 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-14T15:20:00.257 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package libthrift-0.16.0:amd64. 2024-04-14T15:20:00.283 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../006-libthrift-0.16.0_0.16.0-2_amd64.deb ... 2024-04-14T15:20:00.323 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-04-14T15:20:00.439 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package lua-any. 2024-04-14T15:20:00.465 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../021-lua-any_27ubuntu1_all.deb ... 2024-04-14T15:20:00.505 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking lua-any (27ubuntu1) ... 2024-04-14T15:20:00.651 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package librados2. 2024-04-14T15:20:00.677 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../007-librados2_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:00.717 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking librados2 (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:00.724 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package zip. 2024-04-14T15:20:00.740 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../022-zip_3.0-12build2_amd64.deb ... 2024-04-14T15:20:00.774 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking zip (3.0-12build2) ... 2024-04-14T15:20:01.086 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package unzip. 2024-04-14T15:20:01.112 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../023-unzip_6.0-26ubuntu3.2_amd64.deb ... 2024-04-14T15:20:01.153 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking unzip (6.0-26ubuntu3.2) ... 2024-04-14T15:20:01.170 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package librbd1. 2024-04-14T15:20:01.197 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../008-librbd1_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:01.228 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking librbd1 (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:01.548 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package luarocks. 2024-04-14T15:20:01.575 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../024-luarocks_3.8.0+dfsg1-1_all.deb ... 2024-04-14T15:20:01.614 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking luarocks (3.8.0+dfsg1-1) ... 2024-04-14T15:20:01.681 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package libcephfs2. 2024-04-14T15:20:01.708 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../009-libcephfs2_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:01.747 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking libcephfs2 (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:01.862 INFO:teuthology.orchestra.run.smithi110.stdout:Get:115 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 ceph-volume all 19.0.0-2778-ga971fd5f-1jammy [121 kB] 2024-04-14T15:20:01.865 INFO:teuthology.orchestra.run.smithi110.stdout:Get:116 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs-dev amd64 19.0.0-2778-ga971fd5f-1jammy [38.9 kB] 2024-04-14T15:20:01.866 INFO:teuthology.orchestra.run.smithi110.stdout:Get:117 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 radosgw amd64 19.0.0-2778-ga971fd5f-1jammy [13.3 MB] 2024-04-14T15:20:02.017 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-rados. 2024-04-14T15:20:02.022 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package librgw2. 2024-04-14T15:20:02.033 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../010-python3-rados_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:02.049 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../025-librgw2_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:02.075 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-rados (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:02.089 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking librgw2 (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:02.308 INFO:teuthology.orchestra.run.smithi110.stdout:Get:118 https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default jammy/main amd64 rbd-fuse amd64 19.0.0-2778-ga971fd5f-1jammy [91.5 kB] 2024-04-14T15:20:02.378 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-ceph-argparse. 2024-04-14T15:20:02.394 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../011-python3-ceph-argparse_19.0.0-2778-ga971fd5f-1jammy_all.deb ... 2024-04-14T15:20:02.427 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-ceph-argparse (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:02.638 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-cephfs. 2024-04-14T15:20:02.654 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../012-python3-cephfs_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:02.658 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-rgw. 2024-04-14T15:20:02.673 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../026-python3-rgw_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:02.688 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-cephfs (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:02.708 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-rgw (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:02.859 INFO:teuthology.orchestra.run.smithi110.stdout:Fetched 180 MB in 19s (9,380 kB/s) 2024-04-14T15:20:02.991 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-ceph-common. 2024-04-14T15:20:03.018 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../013-python3-ceph-common_19.0.0-2778-ga971fd5f-1jammy_all.deb ... 2024-04-14T15:20:03.027 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package liboath0:amd64. 2024-04-14T15:20:03.032 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package liblttng-ust1:amd64. 2024-04-14T15:20:03.053 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../027-liboath0_2.6.7-3build1_amd64.deb ... 2024-04-14T15:20:03.082 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-ceph-common (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:03.094 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking liboath0:amd64 (2.6.7-3build1) ... 2024-04-14T15:20:03.133 INFO:teuthology.orchestra.run.smithi110.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-14T15:20:03.138 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../000-liblttng-ust1_2.13.1-1ubuntu1_amd64.deb ... 2024-04-14T15:20:03.222 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-04-14T15:20:03.406 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package libradosstriper1. 2024-04-14T15:20:03.410 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-wcwidth. 2024-04-14T15:20:03.424 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../028-libradosstriper1_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:03.437 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../014-python3-wcwidth_0.2.5+dfsg1-1_all.deb ... 2024-04-14T15:20:03.463 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking libradosstriper1 (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:03.477 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-wcwidth (0.2.5+dfsg1-1) ... 2024-04-14T15:20:03.568 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package libdouble-conversion3:amd64. 2024-04-14T15:20:03.594 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../001-libdouble-conversion3_3.1.7-4_amd64.deb ... 2024-04-14T15:20:03.634 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking libdouble-conversion3:amd64 (3.1.7-4) ... 2024-04-14T15:20:03.796 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-prettytable. 2024-04-14T15:20:03.823 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../015-python3-prettytable_2.5.0-2_all.deb ... 2024-04-14T15:20:03.863 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-prettytable (2.5.0-2) ... 2024-04-14T15:20:03.892 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package ceph-common. 2024-04-14T15:20:03.904 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package libpcre2-16-0:amd64. 2024-04-14T15:20:03.918 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../029-ceph-common_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:03.931 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../002-libpcre2-16-0_10.39-3ubuntu0.1_amd64.deb ... 2024-04-14T15:20:03.958 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking ceph-common (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:03.962 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-04-14T15:20:04.107 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-rbd. 2024-04-14T15:20:04.134 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../016-python3-rbd_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:04.165 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-rbd (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:04.407 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package libqt5core5a:amd64. 2024-04-14T15:20:04.434 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../003-libqt5core5a_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-04-14T15:20:04.482 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-14T15:20:04.485 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package librdkafka1:amd64. 2024-04-14T15:20:04.512 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../017-librdkafka1_1.8.0-1build1_amd64.deb ... 2024-04-14T15:20:04.551 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking librdkafka1:amd64 (1.8.0-1build1) ... 2024-04-14T15:20:04.812 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package libreadline-dev:amd64. 2024-04-14T15:20:04.828 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../018-libreadline-dev_8.1.2-1_amd64.deb ... 2024-04-14T15:20:04.870 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking libreadline-dev:amd64 (8.1.2-1) ... 2024-04-14T15:20:04.885 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package libqt5dbus5:amd64. 2024-04-14T15:20:04.912 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../004-libqt5dbus5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-04-14T15:20:04.952 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-14T15:20:05.190 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package liblua5.3-dev:amd64. 2024-04-14T15:20:05.206 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../019-liblua5.3-dev_5.3.6-1build1_amd64.deb ... 2024-04-14T15:20:05.248 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-04-14T15:20:05.263 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package libqt5network5:amd64. 2024-04-14T15:20:05.290 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../005-libqt5network5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-04-14T15:20:05.321 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-14T15:20:05.576 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package lua5.1. 2024-04-14T15:20:05.603 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../020-lua5.1_5.1.5-8.1build4_amd64.deb ... 2024-04-14T15:20:05.606 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package ceph-base. 2024-04-14T15:20:05.633 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../030-ceph-base_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:05.643 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking lua5.1 (5.1.5-8.1build4) ... 2024-04-14T15:20:05.658 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package libthrift-0.16.0:amd64. 2024-04-14T15:20:05.682 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking ceph-base (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:05.685 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../006-libthrift-0.16.0_0.16.0-2_amd64.deb ... 2024-04-14T15:20:05.724 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-04-14T15:20:05.946 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package lua-any. 2024-04-14T15:20:05.961 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../021-lua-any_27ubuntu1_all.deb ... 2024-04-14T15:20:05.996 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking lua-any (27ubuntu1) ... 2024-04-14T15:20:06.044 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package librados2. 2024-04-14T15:20:06.071 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../007-librados2_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:06.111 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking librados2 (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:06.218 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-jaraco.functools. 2024-04-14T15:20:06.232 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package zip. 2024-04-14T15:20:06.245 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../031-python3-jaraco.functools_3.4.0-2_all.deb ... 2024-04-14T15:20:06.248 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../022-zip_3.0-12build2_amd64.deb ... 2024-04-14T15:20:06.276 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-jaraco.functools (3.4.0-2) ... 2024-04-14T15:20:06.290 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking zip (3.0-12build2) ... 2024-04-14T15:20:06.539 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package librbd1. 2024-04-14T15:20:06.554 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-cheroot. 2024-04-14T15:20:06.565 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../008-librbd1_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:06.581 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../032-python3-cheroot_8.5.2+ds1-1ubuntu3.1_all.deb ... 2024-04-14T15:20:06.601 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package unzip. 2024-04-14T15:20:06.605 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking librbd1 (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:06.621 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-04-14T15:20:06.628 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../023-unzip_6.0-26ubuntu3.2_amd64.deb ... 2024-04-14T15:20:06.659 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking unzip (6.0-26ubuntu3.2) ... 2024-04-14T15:20:06.941 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-jaraco.classes. 2024-04-14T15:20:06.967 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../033-python3-jaraco.classes_3.2.1-3_all.deb ... 2024-04-14T15:20:07.007 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-jaraco.classes (3.2.1-3) ... 2024-04-14T15:20:07.016 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package libcephfs2. 2024-04-14T15:20:07.043 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../009-libcephfs2_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:07.046 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package luarocks. 2024-04-14T15:20:07.073 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../024-luarocks_3.8.0+dfsg1-1_all.deb ... 2024-04-14T15:20:07.083 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking libcephfs2 (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:07.113 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking luarocks (3.8.0+dfsg1-1) ... 2024-04-14T15:20:07.310 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-jaraco.text. 2024-04-14T15:20:07.336 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../034-python3-jaraco.text_3.6.0-2_all.deb ... 2024-04-14T15:20:07.376 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-jaraco.text (3.6.0-2) ... 2024-04-14T15:20:07.394 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-rados. 2024-04-14T15:20:07.420 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../010-python3-rados_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:07.460 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-rados (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:07.529 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package librgw2. 2024-04-14T15:20:07.556 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../025-librgw2_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:07.595 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking librgw2 (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:07.654 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-jaraco.collections. 2024-04-14T15:20:07.681 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../035-python3-jaraco.collections_3.4.0-2_all.deb ... 2024-04-14T15:20:07.721 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-jaraco.collections (3.4.0-2) ... 2024-04-14T15:20:07.788 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-ceph-argparse. 2024-04-14T15:20:07.814 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../011-python3-ceph-argparse_19.0.0-2778-ga971fd5f-1jammy_all.deb ... 2024-04-14T15:20:07.863 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-ceph-argparse (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:07.974 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-tempora. 2024-04-14T15:20:08.000 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../036-python3-tempora_4.1.2-1_all.deb ... 2024-04-14T15:20:08.040 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-tempora (4.1.2-1) ... 2024-04-14T15:20:08.090 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-cephfs. 2024-04-14T15:20:08.106 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../012-python3-cephfs_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:08.140 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-cephfs (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:08.148 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-rgw. 2024-04-14T15:20:08.174 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../026-python3-rgw_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:08.214 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-rgw (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:08.343 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-portend. 2024-04-14T15:20:08.370 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../037-python3-portend_3.0.0-1_all.deb ... 2024-04-14T15:20:08.410 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-portend (3.0.0-1) ... 2024-04-14T15:20:08.418 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-ceph-common. 2024-04-14T15:20:08.445 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../013-python3-ceph-common_19.0.0-2778-ga971fd5f-1jammy_all.deb ... 2024-04-14T15:20:08.485 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-ceph-common (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:08.525 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package liboath0:amd64. 2024-04-14T15:20:08.552 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../027-liboath0_2.6.7-3build1_amd64.deb ... 2024-04-14T15:20:08.584 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking liboath0:amd64 (2.6.7-3build1) ... 2024-04-14T15:20:08.721 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-zc.lockfile. 2024-04-14T15:20:08.747 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../038-python3-zc.lockfile_2.0-1_all.deb ... 2024-04-14T15:20:08.788 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-zc.lockfile (2.0-1) ... 2024-04-14T15:20:08.804 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-wcwidth. 2024-04-14T15:20:08.831 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../014-python3-wcwidth_0.2.5+dfsg1-1_all.deb ... 2024-04-14T15:20:08.871 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-wcwidth (0.2.5+dfsg1-1) ... 2024-04-14T15:20:08.895 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package libradosstriper1. 2024-04-14T15:20:08.922 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../028-libradosstriper1_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:08.970 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking libradosstriper1 (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:09.057 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-cherrypy3. 2024-04-14T15:20:09.083 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../039-python3-cherrypy3_18.6.1-4_all.deb ... 2024-04-14T15:20:09.116 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-cherrypy3 (18.6.1-4) ... 2024-04-14T15:20:09.199 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-prettytable. 2024-04-14T15:20:09.226 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../015-python3-prettytable_2.5.0-2_all.deb ... 2024-04-14T15:20:09.265 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-prettytable (2.5.0-2) ... 2024-04-14T15:20:09.398 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package ceph-common. 2024-04-14T15:20:09.425 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../029-ceph-common_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:09.464 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking ceph-common (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:09.486 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-natsort. 2024-04-14T15:20:09.513 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../040-python3-natsort_8.0.2-1_all.deb ... 2024-04-14T15:20:09.518 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-rbd. 2024-04-14T15:20:09.533 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../016-python3-rbd_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:09.552 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-natsort (8.0.2-1) ... 2024-04-14T15:20:09.576 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-rbd (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:09.822 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-logutils. 2024-04-14T15:20:09.848 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../041-python3-logutils_0.3.3-8_all.deb ... 2024-04-14T15:20:09.880 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-logutils (0.3.3-8) ... 2024-04-14T15:20:09.921 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package librdkafka1:amd64. 2024-04-14T15:20:09.948 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../017-librdkafka1_1.8.0-1build1_amd64.deb ... 2024-04-14T15:20:09.987 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking librdkafka1:amd64 (1.8.0-1build1) ... 2024-04-14T15:20:10.150 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-markupsafe. 2024-04-14T15:20:10.176 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../042-python3-markupsafe_2.0.1-2build1_amd64.deb ... 2024-04-14T15:20:10.216 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-markupsafe (2.0.1-2build1) ... 2024-04-14T15:20:10.274 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package libreadline-dev:amd64. 2024-04-14T15:20:10.289 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../018-libreadline-dev_8.1.2-1_amd64.deb ... 2024-04-14T15:20:10.332 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking libreadline-dev:amd64 (8.1.2-1) ... 2024-04-14T15:20:10.519 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-mako. 2024-04-14T15:20:10.545 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../043-python3-mako_1.1.3+ds1-2ubuntu0.1_all.deb ... 2024-04-14T15:20:10.586 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-04-14T15:20:10.618 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package liblua5.3-dev:amd64. 2024-04-14T15:20:10.645 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../019-liblua5.3-dev_5.3.6-1build1_amd64.deb ... 2024-04-14T15:20:10.676 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-04-14T15:20:10.821 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package ceph-base. 2024-04-14T15:20:10.848 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../030-ceph-base_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:10.898 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking ceph-base (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:10.906 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-simplegeneric. 2024-04-14T15:20:10.932 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../044-python3-simplegeneric_0.8.1-3_all.deb ... 2024-04-14T15:20:10.972 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-simplegeneric (0.8.1-3) ... 2024-04-14T15:20:11.005 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package lua5.1. 2024-04-14T15:20:11.031 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../020-lua5.1_5.1.5-8.1build4_amd64.deb ... 2024-04-14T15:20:11.071 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking lua5.1 (5.1.5-8.1build4) ... 2024-04-14T15:20:11.258 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-singledispatch. 2024-04-14T15:20:11.285 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../045-python3-singledispatch_3.4.0.3-3_all.deb ... 2024-04-14T15:20:11.325 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-singledispatch (3.4.0.3-3) ... 2024-04-14T15:20:11.424 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package lua-any. 2024-04-14T15:20:11.440 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../021-lua-any_27ubuntu1_all.deb ... 2024-04-14T15:20:11.476 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-jaraco.functools. 2024-04-14T15:20:11.483 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking lua-any (27ubuntu1) ... 2024-04-14T15:20:11.502 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../031-python3-jaraco.functools_3.4.0-2_all.deb ... 2024-04-14T15:20:11.542 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-jaraco.functools (3.4.0-2) ... 2024-04-14T15:20:11.603 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-webob. 2024-04-14T15:20:11.629 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../046-python3-webob_1%3a1.8.6-1.1_all.deb ... 2024-04-14T15:20:11.669 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-webob (1:1.8.6-1.1) ... 2024-04-14T15:20:11.727 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package zip. 2024-04-14T15:20:11.753 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../022-zip_3.0-12build2_amd64.deb ... 2024-04-14T15:20:11.785 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking zip (3.0-12build2) ... 2024-04-14T15:20:11.803 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-cheroot. 2024-04-14T15:20:11.830 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../032-python3-cheroot_8.5.2+ds1-1ubuntu3.1_all.deb ... 2024-04-14T15:20:11.870 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-04-14T15:20:11.947 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-waitress. 2024-04-14T15:20:11.974 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../047-python3-waitress_1.4.4-1.1ubuntu1_all.deb ... 2024-04-14T15:20:12.017 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-waitress (1.4.4-1.1ubuntu1) ... 2024-04-14T15:20:12.072 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package unzip. 2024-04-14T15:20:12.098 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../023-unzip_6.0-26ubuntu3.2_amd64.deb ... 2024-04-14T15:20:12.138 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking unzip (6.0-26ubuntu3.2) ... 2024-04-14T15:20:12.189 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-jaraco.classes. 2024-04-14T15:20:12.216 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../033-python3-jaraco.classes_3.2.1-3_all.deb ... 2024-04-14T15:20:12.256 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-jaraco.classes (3.2.1-3) ... 2024-04-14T15:20:12.292 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-tempita. 2024-04-14T15:20:12.318 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../048-python3-tempita_0.5.2-6ubuntu1_all.deb ... 2024-04-14T15:20:12.358 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-tempita (0.5.2-6ubuntu1) ... 2024-04-14T15:20:12.526 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package luarocks. 2024-04-14T15:20:12.552 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../024-luarocks_3.8.0+dfsg1-1_all.deb ... 2024-04-14T15:20:12.559 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-jaraco.text. 2024-04-14T15:20:12.586 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../034-python3-jaraco.text_3.6.0-2_all.deb ... 2024-04-14T15:20:12.601 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking luarocks (3.8.0+dfsg1-1) ... 2024-04-14T15:20:12.617 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-jaraco.text (3.6.0-2) ... 2024-04-14T15:20:12.644 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-paste. 2024-04-14T15:20:12.671 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../049-python3-paste_3.5.0+dfsg1-1_all.deb ... 2024-04-14T15:20:12.711 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-paste (3.5.0+dfsg1-1) ... 2024-04-14T15:20:12.887 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-jaraco.collections. 2024-04-14T15:20:12.913 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../035-python3-jaraco.collections_3.4.0-2_all.deb ... 2024-04-14T15:20:12.953 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-jaraco.collections (3.4.0-2) ... 2024-04-14T15:20:12.984 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package librgw2. 2024-04-14T15:20:13.006 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python-pastedeploy-tpl. 2024-04-14T15:20:13.010 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../025-librgw2_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:13.021 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../050-python-pastedeploy-tpl_2.1.1-1_all.deb ... 2024-04-14T15:20:13.050 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking librgw2 (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:13.064 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python-pastedeploy-tpl (2.1.1-1) ... 2024-04-14T15:20:13.256 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-tempora. 2024-04-14T15:20:13.283 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../036-python3-tempora_4.1.2-1_all.deb ... 2024-04-14T15:20:13.322 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-tempora (4.1.2-1) ... 2024-04-14T15:20:13.376 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-pastedeploy. 2024-04-14T15:20:13.402 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../051-python3-pastedeploy_2.1.1-1_all.deb ... 2024-04-14T15:20:13.442 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-pastedeploy (2.1.1-1) ... 2024-04-14T15:20:13.602 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-rgw. 2024-04-14T15:20:13.618 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../026-python3-rgw_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:13.625 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-portend. 2024-04-14T15:20:13.652 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../037-python3-portend_3.0.0-1_all.deb ... 2024-04-14T15:20:13.661 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-rgw (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:13.700 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-portend (3.0.0-1) ... 2024-04-14T15:20:13.745 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-webtest. 2024-04-14T15:20:13.771 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../052-python3-webtest_2.0.35-1_all.deb ... 2024-04-14T15:20:13.830 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-webtest (2.0.35-1) ... 2024-04-14T15:20:13.953 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-zc.lockfile. 2024-04-14T15:20:13.976 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../038-python3-zc.lockfile_2.0-1_all.deb ... 2024-04-14T15:20:13.997 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package liboath0:amd64. 2024-04-14T15:20:14.011 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-zc.lockfile (2.0-1) ... 2024-04-14T15:20:14.023 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../027-liboath0_2.6.7-3build1_amd64.deb ... 2024-04-14T15:20:14.064 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking liboath0:amd64 (2.6.7-3build1) ... 2024-04-14T15:20:14.142 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-pecan. 2024-04-14T15:20:14.169 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../053-python3-pecan_1.3.3-4ubuntu2_all.deb ... 2024-04-14T15:20:14.208 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-pecan (1.3.3-4ubuntu2) ... 2024-04-14T15:20:14.297 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-cherrypy3. 2024-04-14T15:20:14.324 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../039-python3-cherrypy3_18.6.1-4_all.deb ... 2024-04-14T15:20:14.325 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package libradosstriper1. 2024-04-14T15:20:14.351 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../028-libradosstriper1_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:14.364 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-cherrypy3 (18.6.1-4) ... 2024-04-14T15:20:14.391 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking libradosstriper1 (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:14.581 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-certifi. 2024-04-14T15:20:14.608 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../054-python3-certifi_2020.6.20-1_all.deb ... 2024-04-14T15:20:14.647 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-04-14T15:20:14.709 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-natsort. 2024-04-14T15:20:14.736 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../040-python3-natsort_8.0.2-1_all.deb ... 2024-04-14T15:20:14.776 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-natsort (8.0.2-1) ... 2024-04-14T15:20:14.934 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-idna. 2024-04-14T15:20:14.961 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../055-python3-idna_3.3-1_all.deb ... 2024-04-14T15:20:15.001 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-idna (3.3-1) ... 2024-04-14T15:20:15.028 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package ceph-common. 2024-04-14T15:20:15.055 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../029-ceph-common_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:15.087 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-logutils. 2024-04-14T15:20:15.094 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking ceph-common (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:15.114 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../041-python3-logutils_0.3.3-8_all.deb ... 2024-04-14T15:20:15.153 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-logutils (0.3.3-8) ... 2024-04-14T15:20:15.321 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-urllib3. 2024-04-14T15:20:15.347 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../056-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-04-14T15:20:15.387 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-04-14T15:20:15.465 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-markupsafe. 2024-04-14T15:20:15.492 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../042-python3-markupsafe_2.0.1-2build1_amd64.deb ... 2024-04-14T15:20:15.531 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-markupsafe (2.0.1-2build1) ... 2024-04-14T15:20:15.708 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-requests. 2024-04-14T15:20:15.735 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../057-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-04-14T15:20:15.774 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-04-14T15:20:16.086 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-werkzeug. 2024-04-14T15:20:16.113 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../058-python3-werkzeug_2.0.2+dfsg1-1ubuntu0.22.04.1_all.deb ... 2024-04-14T15:20:16.152 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.1) ... 2024-04-14T15:20:16.457 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package ceph-mgr-modules-core. 2024-04-14T15:20:16.476 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-mako. 2024-04-14T15:20:16.483 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../059-ceph-mgr-modules-core_19.0.0-2778-ga971fd5f-1jammy_all.deb ... 2024-04-14T15:20:16.503 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../043-python3-mako_1.1.3+ds1-2ubuntu0.1_all.deb ... 2024-04-14T15:20:16.523 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking ceph-mgr-modules-core (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:16.543 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-04-14T15:20:16.888 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-simplegeneric. 2024-04-14T15:20:16.915 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../044-python3-simplegeneric_0.8.1-3_all.deb ... 2024-04-14T15:20:16.954 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-simplegeneric (0.8.1-3) ... 2024-04-14T15:20:17.042 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package ceph-base. 2024-04-14T15:20:17.069 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../030-ceph-base_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:17.177 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking ceph-base (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:17.257 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-singledispatch. 2024-04-14T15:20:17.284 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../045-python3-singledispatch_3.4.0.3-3_all.deb ... 2024-04-14T15:20:17.323 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-singledispatch (3.4.0.3-3) ... 2024-04-14T15:20:17.593 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-webob. 2024-04-14T15:20:17.609 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../046-python3-webob_1%3a1.8.6-1.1_all.deb ... 2024-04-14T15:20:17.653 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-webob (1:1.8.6-1.1) ... 2024-04-14T15:20:17.721 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-jaraco.functools. 2024-04-14T15:20:17.745 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package libsqlite3-mod-ceph. 2024-04-14T15:20:17.748 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../031-python3-jaraco.functools_3.4.0-2_all.deb ... 2024-04-14T15:20:17.772 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../060-libsqlite3-mod-ceph_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:17.780 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-jaraco.functools (3.4.0-2) ... 2024-04-14T15:20:17.803 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking libsqlite3-mod-ceph (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:17.954 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-waitress. 2024-04-14T15:20:17.970 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../047-python3-waitress_1.4.4-1.1ubuntu1_all.deb ... 2024-04-14T15:20:18.006 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-waitress (1.4.4-1.1ubuntu1) ... 2024-04-14T15:20:18.074 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-cheroot. 2024-04-14T15:20:18.101 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../032-python3-cheroot_8.5.2+ds1-1ubuntu3.1_all.deb ... 2024-04-14T15:20:18.115 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-bcrypt. 2024-04-14T15:20:18.141 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-04-14T15:20:18.142 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../061-python3-bcrypt_3.2.0-1build1_amd64.deb ... 2024-04-14T15:20:18.182 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-bcrypt (3.2.0-1build1) ... 2024-04-14T15:20:18.257 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-tempita. 2024-04-14T15:20:18.283 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../048-python3-tempita_0.5.2-6ubuntu1_all.deb ... 2024-04-14T15:20:18.323 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-tempita (0.5.2-6ubuntu1) ... 2024-04-14T15:20:18.469 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-jaraco.classes. 2024-04-14T15:20:18.485 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-openssl. 2024-04-14T15:20:18.496 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../033-python3-jaraco.classes_3.2.1-3_all.deb ... 2024-04-14T15:20:18.512 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../062-python3-openssl_21.0.0-1_all.deb ... 2024-04-14T15:20:18.535 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-jaraco.classes (3.2.1-3) ... 2024-04-14T15:20:18.552 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-openssl (21.0.0-1) ... 2024-04-14T15:20:18.635 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-paste. 2024-04-14T15:20:18.661 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../049-python3-paste_3.5.0+dfsg1-1_all.deb ... 2024-04-14T15:20:18.701 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-paste (3.5.0+dfsg1-1) ... 2024-04-14T15:20:18.838 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-jaraco.text. 2024-04-14T15:20:18.865 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../034-python3-jaraco.text_3.6.0-2_all.deb ... 2024-04-14T15:20:18.872 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package ceph-mgr. 2024-04-14T15:20:18.899 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../063-ceph-mgr_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:18.905 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-jaraco.text (3.6.0-2) ... 2024-04-14T15:20:18.931 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking ceph-mgr (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:19.029 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python-pastedeploy-tpl. 2024-04-14T15:20:19.056 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../050-python-pastedeploy-tpl_2.1.1-1_all.deb ... 2024-04-14T15:20:19.095 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python-pastedeploy-tpl (2.1.1-1) ... 2024-04-14T15:20:19.174 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-jaraco.collections. 2024-04-14T15:20:19.190 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../035-python3-jaraco.collections_3.4.0-2_all.deb ... 2024-04-14T15:20:19.225 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-jaraco.collections (3.4.0-2) ... 2024-04-14T15:20:19.309 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package ceph-mon. 2024-04-14T15:20:19.335 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../064-ceph-mon_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:19.375 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking ceph-mon (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:19.423 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-pastedeploy. 2024-04-14T15:20:19.451 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../051-python3-pastedeploy_2.1.1-1_all.deb ... 2024-04-14T15:20:19.506 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-pastedeploy (2.1.1-1) ... 2024-04-14T15:20:19.536 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-tempora. 2024-04-14T15:20:19.562 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../036-python3-tempora_4.1.2-1_all.deb ... 2024-04-14T15:20:19.602 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-tempora (4.1.2-1) ... 2024-04-14T15:20:19.885 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-webtest. 2024-04-14T15:20:19.905 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-portend. 2024-04-14T15:20:19.912 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../052-python3-webtest_2.0.35-1_all.deb ... 2024-04-14T15:20:19.932 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../037-python3-portend_3.0.0-1_all.deb ... 2024-04-14T15:20:19.951 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-webtest (2.0.35-1) ... 2024-04-14T15:20:19.971 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package ceph-osd. 2024-04-14T15:20:19.972 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-portend (3.0.0-1) ... 2024-04-14T15:20:19.998 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../065-ceph-osd_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:20.038 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking ceph-osd (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:20.258 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-zc.lockfile. 2024-04-14T15:20:20.262 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-pecan. 2024-04-14T15:20:20.285 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../038-python3-zc.lockfile_2.0-1_all.deb ... 2024-04-14T15:20:20.290 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../053-python3-pecan_1.3.3-4ubuntu2_all.deb ... 2024-04-14T15:20:20.325 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-zc.lockfile (2.0-1) ... 2024-04-14T15:20:20.329 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-pecan (1.3.3-4ubuntu2) ... 2024-04-14T15:20:20.603 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-cherrypy3. 2024-04-14T15:20:20.629 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../039-python3-cherrypy3_18.6.1-4_all.deb ... 2024-04-14T15:20:20.667 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-certifi. 2024-04-14T15:20:20.669 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-cherrypy3 (18.6.1-4) ... 2024-04-14T15:20:20.694 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../054-python3-certifi_2020.6.20-1_all.deb ... 2024-04-14T15:20:20.733 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-04-14T15:20:21.020 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-idna. 2024-04-14T15:20:21.023 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-natsort. 2024-04-14T15:20:21.047 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../055-python3-idna_3.3-1_all.deb ... 2024-04-14T15:20:21.050 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../040-python3-natsort_8.0.2-1_all.deb ... 2024-04-14T15:20:21.078 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-idna (3.3-1) ... 2024-04-14T15:20:21.089 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-natsort (8.0.2-1) ... 2024-04-14T15:20:21.233 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package ceph. 2024-04-14T15:20:21.249 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../066-ceph_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:21.300 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking ceph (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:21.359 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-logutils. 2024-04-14T15:20:21.372 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-urllib3. 2024-04-14T15:20:21.386 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../041-python3-logutils_0.3.3-8_all.deb ... 2024-04-14T15:20:21.399 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../056-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-04-14T15:20:21.417 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-logutils (0.3.3-8) ... 2024-04-14T15:20:21.438 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-04-14T15:20:21.587 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package ceph-fuse. 2024-04-14T15:20:21.613 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../067-ceph-fuse_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:21.645 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking ceph-fuse (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:21.712 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-markupsafe. 2024-04-14T15:20:21.739 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../042-python3-markupsafe_2.0.1-2build1_amd64.deb ... 2024-04-14T15:20:21.750 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-requests. 2024-04-14T15:20:21.777 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../057-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-04-14T15:20:21.778 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-markupsafe (2.0.1-2build1) ... 2024-04-14T15:20:21.816 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-04-14T15:20:22.007 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package ceph-mds. 2024-04-14T15:20:22.034 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../068-ceph-mds_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:22.074 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking ceph-mds (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:22.081 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-mako. 2024-04-14T15:20:22.108 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../043-python3-mako_1.1.3+ds1-2ubuntu0.1_all.deb ... 2024-04-14T15:20:22.128 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-werkzeug. 2024-04-14T15:20:22.148 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-04-14T15:20:22.156 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../058-python3-werkzeug_2.0.2+dfsg1-1ubuntu0.22.04.1_all.deb ... 2024-04-14T15:20:22.194 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.1) ... 2024-04-14T15:20:22.468 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-simplegeneric. 2024-04-14T15:20:22.481 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package ceph-mgr-modules-core. 2024-04-14T15:20:22.485 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package cephadm. 2024-04-14T15:20:22.495 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../044-python3-simplegeneric_0.8.1-3_all.deb ... 2024-04-14T15:20:22.508 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../059-ceph-mgr-modules-core_19.0.0-2778-ga971fd5f-1jammy_all.deb ... 2024-04-14T15:20:22.512 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../069-cephadm_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:22.534 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-simplegeneric (0.8.1-3) ... 2024-04-14T15:20:22.547 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking ceph-mgr-modules-core (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:22.560 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking cephadm (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:22.796 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-singledispatch. 2024-04-14T15:20:22.822 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../045-python3-singledispatch_3.4.0.3-3_all.deb ... 2024-04-14T15:20:22.854 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-singledispatch (3.4.0.3-3) ... 2024-04-14T15:20:22.855 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-asyncssh. 2024-04-14T15:20:22.882 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../070-python3-asyncssh_2.5.0-1_all.deb ... 2024-04-14T15:20:22.911 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package libsqlite3-mod-ceph. 2024-04-14T15:20:22.913 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-asyncssh (2.5.0-1) ... 2024-04-14T15:20:22.938 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../060-libsqlite3-mod-ceph_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:22.968 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking libsqlite3-mod-ceph (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:23.148 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-webob. 2024-04-14T15:20:23.175 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../046-python3-webob_1%3a1.8.6-1.1_all.deb ... 2024-04-14T15:20:23.215 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-webob (1:1.8.6-1.1) ... 2024-04-14T15:20:23.233 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python-babel-localedata. 2024-04-14T15:20:23.255 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-bcrypt. 2024-04-14T15:20:23.260 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../071-python-babel-localedata_2.8.0+dfsg.1-7_all.deb ... 2024-04-14T15:20:23.282 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../061-python3-bcrypt_3.2.0-1build1_amd64.deb ... 2024-04-14T15:20:23.300 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-04-14T15:20:23.321 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-bcrypt (3.2.0-1build1) ... 2024-04-14T15:20:23.593 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-waitress. 2024-04-14T15:20:23.620 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../047-python3-waitress_1.4.4-1.1ubuntu1_all.deb ... 2024-04-14T15:20:23.657 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-openssl. 2024-04-14T15:20:23.663 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-waitress (1.4.4-1.1ubuntu1) ... 2024-04-14T15:20:23.684 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../062-python3-openssl_21.0.0-1_all.deb ... 2024-04-14T15:20:23.724 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-openssl (21.0.0-1) ... 2024-04-14T15:20:23.971 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-tempita. 2024-04-14T15:20:23.997 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../048-python3-tempita_0.5.2-6ubuntu1_all.deb ... 2024-04-14T15:20:24.037 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-tempita (0.5.2-6ubuntu1) ... 2024-04-14T15:20:24.060 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package ceph-mgr. 2024-04-14T15:20:24.088 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../063-ceph-mgr_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:24.126 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking ceph-mgr (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:24.256 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-babel. 2024-04-14T15:20:24.283 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../072-python3-babel_2.8.0+dfsg.1-7_all.deb ... 2024-04-14T15:20:24.316 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-paste. 2024-04-14T15:20:24.331 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-babel (2.8.0+dfsg.1-7) ... 2024-04-14T15:20:24.342 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../049-python3-paste_3.5.0+dfsg1-1_all.deb ... 2024-04-14T15:20:24.384 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-paste (3.5.0+dfsg1-1) ... 2024-04-14T15:20:24.471 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package ceph-mon. 2024-04-14T15:20:24.499 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../064-ceph-mon_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:24.529 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking ceph-mon (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:24.659 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-jinja2. 2024-04-14T15:20:24.686 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../073-python3-jinja2_3.0.3-1ubuntu0.1_all.deb ... 2024-04-14T15:20:24.720 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python-pastedeploy-tpl. 2024-04-14T15:20:24.725 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-jinja2 (3.0.3-1ubuntu0.1) ... 2024-04-14T15:20:24.747 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../050-python-pastedeploy-tpl_2.1.1-1_all.deb ... 2024-04-14T15:20:24.787 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python-pastedeploy-tpl (2.1.1-1) ... 2024-04-14T15:20:25.023 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-pastedeploy. 2024-04-14T15:20:25.046 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../051-python3-pastedeploy_2.1.1-1_all.deb ... 2024-04-14T15:20:25.090 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-pastedeploy (2.1.1-1) ... 2024-04-14T15:20:25.104 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package ceph-mgr-cephadm. 2024-04-14T15:20:25.131 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../074-ceph-mgr-cephadm_19.0.0-2778-ga971fd5f-1jammy_all.deb ... 2024-04-14T15:20:25.171 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking ceph-mgr-cephadm (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:25.233 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package ceph-osd. 2024-04-14T15:20:25.260 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../065-ceph-osd_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:25.299 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking ceph-osd (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:25.401 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-webtest. 2024-04-14T15:20:25.428 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../052-python3-webtest_2.0.35-1_all.deb ... 2024-04-14T15:20:25.468 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-webtest (2.0.35-1) ... 2024-04-14T15:20:25.508 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-repoze.lru. 2024-04-14T15:20:25.535 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../075-python3-repoze.lru_0.7-2_all.deb ... 2024-04-14T15:20:25.575 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-repoze.lru (0.7-2) ... 2024-04-14T15:20:25.779 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-pecan. 2024-04-14T15:20:25.806 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../053-python3-pecan_1.3.3-4ubuntu2_all.deb ... 2024-04-14T15:20:25.844 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-routes. 2024-04-14T15:20:25.846 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-pecan (1.3.3-4ubuntu2) ... 2024-04-14T15:20:25.860 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../076-python3-routes_2.5.1-1ubuntu1_all.deb ... 2024-04-14T15:20:25.894 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-routes (2.5.1-1ubuntu1) ... 2024-04-14T15:20:26.209 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-certifi. 2024-04-14T15:20:26.232 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package ceph-mgr-dashboard. 2024-04-14T15:20:26.235 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../054-python3-certifi_2020.6.20-1_all.deb ... 2024-04-14T15:20:26.259 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../077-ceph-mgr-dashboard_19.0.0-2778-ga971fd5f-1jammy_all.deb ... 2024-04-14T15:20:26.275 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-04-14T15:20:26.290 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking ceph-mgr-dashboard (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:26.444 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package ceph. 2024-04-14T15:20:26.460 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../066-ceph_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:26.502 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking ceph (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:26.578 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-idna. 2024-04-14T15:20:26.605 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../055-python3-idna_3.3-1_all.deb ... 2024-04-14T15:20:26.645 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-idna (3.3-1) ... 2024-04-14T15:20:26.822 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package ceph-fuse. 2024-04-14T15:20:26.849 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../067-ceph-fuse_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:26.888 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking ceph-fuse (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:26.898 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-urllib3. 2024-04-14T15:20:26.924 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../056-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-04-14T15:20:26.964 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-04-14T15:20:27.200 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package ceph-mds. 2024-04-14T15:20:27.227 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../068-ceph-mds_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:27.251 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-requests. 2024-04-14T15:20:27.266 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking ceph-mds (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:27.277 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../057-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-04-14T15:20:27.317 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-04-14T15:20:27.571 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-sklearn-lib:amd64. 2024-04-14T15:20:27.586 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../078-python3-sklearn-lib_0.23.2-5ubuntu6_amd64.deb ... 2024-04-14T15:20:27.629 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-04-14T15:20:27.637 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-werkzeug. 2024-04-14T15:20:27.664 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../058-python3-werkzeug_2.0.2+dfsg1-1ubuntu0.22.04.1_all.deb ... 2024-04-14T15:20:27.703 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package cephadm. 2024-04-14T15:20:27.712 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.1) ... 2024-04-14T15:20:27.729 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../069-cephadm_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:27.769 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking cephadm (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:27.974 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package ceph-mgr-modules-core. 2024-04-14T15:20:28.001 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../059-ceph-mgr-modules-core_19.0.0-2778-ga971fd5f-1jammy_all.deb ... 2024-04-14T15:20:28.040 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking ceph-mgr-modules-core (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:28.071 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-asyncssh. 2024-04-14T15:20:28.099 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../070-python3-asyncssh_2.5.0-1_all.deb ... 2024-04-14T15:20:28.133 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-joblib. 2024-04-14T15:20:28.138 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-asyncssh (2.5.0-1) ... 2024-04-14T15:20:28.160 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../079-python3-joblib_0.17.0-4ubuntu1_all.deb ... 2024-04-14T15:20:28.200 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-joblib (0.17.0-4ubuntu1) ... 2024-04-14T15:20:28.420 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package libsqlite3-mod-ceph. 2024-04-14T15:20:28.446 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../060-libsqlite3-mod-ceph_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:28.474 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python-babel-localedata. 2024-04-14T15:20:28.486 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking libsqlite3-mod-ceph (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:28.501 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../071-python-babel-localedata_2.8.0+dfsg.1-7_all.deb ... 2024-04-14T15:20:28.537 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-threadpoolctl. 2024-04-14T15:20:28.540 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-04-14T15:20:28.564 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../080-python3-threadpoolctl_3.1.0-1_all.deb ... 2024-04-14T15:20:28.604 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-threadpoolctl (3.1.0-1) ... 2024-04-14T15:20:28.747 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-bcrypt. 2024-04-14T15:20:28.763 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../061-python3-bcrypt_3.2.0-1build1_amd64.deb ... 2024-04-14T15:20:28.797 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-bcrypt (3.2.0-1build1) ... 2024-04-14T15:20:28.907 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-sklearn. 2024-04-14T15:20:28.934 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../081-python3-sklearn_0.23.2-5ubuntu6_all.deb ... 2024-04-14T15:20:28.973 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-sklearn (0.23.2-5ubuntu6) ... 2024-04-14T15:20:29.100 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-openssl. 2024-04-14T15:20:29.127 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../062-python3-openssl_21.0.0-1_all.deb ... 2024-04-14T15:20:29.167 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-openssl (21.0.0-1) ... 2024-04-14T15:20:29.470 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-babel. 2024-04-14T15:20:29.498 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../072-python3-babel_2.8.0+dfsg.1-7_all.deb ... 2024-04-14T15:20:29.567 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-babel (2.8.0+dfsg.1-7) ... 2024-04-14T15:20:29.567 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package ceph-mgr. 2024-04-14T15:20:29.567 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../063-ceph-mgr_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:29.570 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking ceph-mgr (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:29.684 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package ceph-mgr-diskprediction-local. 2024-04-14T15:20:29.711 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../082-ceph-mgr-diskprediction-local_19.0.0-2778-ga971fd5f-1jammy_all.deb ... 2024-04-14T15:20:29.836 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking ceph-mgr-diskprediction-local (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:29.842 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-jinja2. 2024-04-14T15:20:29.867 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../073-python3-jinja2_3.0.3-1ubuntu0.1_all.deb ... 2024-04-14T15:20:29.906 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-jinja2 (3.0.3-1ubuntu0.1) ... 2024-04-14T15:20:29.931 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package ceph-mon. 2024-04-14T15:20:29.958 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../064-ceph-mon_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:29.998 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking ceph-mon (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:30.234 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package ceph-mgr-cephadm. 2024-04-14T15:20:30.262 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../074-ceph-mgr-cephadm_19.0.0-2778-ga971fd5f-1jammy_all.deb ... 2024-04-14T15:20:30.300 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking ceph-mgr-cephadm (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:30.560 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package ceph-osd. 2024-04-14T15:20:30.587 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../065-ceph-osd_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:30.618 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking ceph-osd (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:30.654 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-repoze.lru. 2024-04-14T15:20:30.682 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../075-python3-repoze.lru_0.7-2_all.deb ... 2024-04-14T15:20:30.720 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-repoze.lru (0.7-2) ... 2024-04-14T15:20:30.866 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-cachetools. 2024-04-14T15:20:30.893 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../083-python3-cachetools_5.0.0-1_all.deb ... 2024-04-14T15:20:30.932 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-cachetools (5.0.0-1) ... 2024-04-14T15:20:31.007 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-routes. 2024-04-14T15:20:31.034 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../076-python3-routes_2.5.1-1ubuntu1_all.deb ... 2024-04-14T15:20:31.073 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-routes (2.5.1-1ubuntu1) ... 2024-04-14T15:20:31.399 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-pyasn1. 2024-04-14T15:20:31.401 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package ceph-mgr-dashboard. 2024-04-14T15:20:31.426 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../084-python3-pyasn1_0.4.8-1_all.deb ... 2024-04-14T15:20:31.429 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../077-ceph-mgr-dashboard_19.0.0-2778-ga971fd5f-1jammy_all.deb ... 2024-04-14T15:20:31.468 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking ceph-mgr-dashboard (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:31.526 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-pyasn1 (0.4.8-1) ... 2024-04-14T15:20:31.696 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package ceph. 2024-04-14T15:20:31.723 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../066-ceph_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:31.788 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking ceph (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:31.864 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-pyasn1-modules. 2024-04-14T15:20:31.891 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../085-python3-pyasn1-modules_0.2.1-1_all.deb ... 2024-04-14T15:20:31.930 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-pyasn1-modules (0.2.1-1) ... 2024-04-14T15:20:32.107 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package ceph-fuse. 2024-04-14T15:20:32.134 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../067-ceph-fuse_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:32.174 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking ceph-fuse (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:32.243 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-rsa. 2024-04-14T15:20:32.270 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../086-python3-rsa_4.8-1_all.deb ... 2024-04-14T15:20:32.309 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-rsa (4.8-1) ... 2024-04-14T15:20:32.519 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package ceph-mds. 2024-04-14T15:20:32.545 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../068-ceph-mds_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:32.585 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking ceph-mds (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:32.630 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-google-auth. 2024-04-14T15:20:32.657 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../087-python3-google-auth_1.5.1-3_all.deb ... 2024-04-14T15:20:32.696 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-google-auth (1.5.1-3) ... 2024-04-14T15:20:32.732 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-sklearn-lib:amd64. 2024-04-14T15:20:32.748 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../078-python3-sklearn-lib_0.23.2-5ubuntu6_amd64.deb ... 2024-04-14T15:20:32.789 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-04-14T15:20:32.972 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package cephadm. 2024-04-14T15:20:32.999 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../069-cephadm_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:33.034 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-requests-oauthlib. 2024-04-14T15:20:33.038 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking cephadm (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:33.061 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../088-python3-requests-oauthlib_1.3.0+ds-0.1_all.deb ... 2024-04-14T15:20:33.100 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-04-14T15:20:33.293 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-joblib. 2024-04-14T15:20:33.320 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../079-python3-joblib_0.17.0-4ubuntu1_all.deb ... 2024-04-14T15:20:33.359 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-joblib (0.17.0-4ubuntu1) ... 2024-04-14T15:20:33.374 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-asyncssh. 2024-04-14T15:20:33.402 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../070-python3-asyncssh_2.5.0-1_all.deb ... 2024-04-14T15:20:33.412 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-websocket. 2024-04-14T15:20:33.439 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../089-python3-websocket_1.2.3-1_all.deb ... 2024-04-14T15:20:33.440 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-asyncssh (2.5.0-1) ... 2024-04-14T15:20:33.478 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-websocket (1.2.3-1) ... 2024-04-14T15:20:33.738 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-threadpoolctl. 2024-04-14T15:20:33.744 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python-babel-localedata. 2024-04-14T15:20:33.759 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../071-python-babel-localedata_2.8.0+dfsg.1-7_all.deb ... 2024-04-14T15:20:33.765 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../080-python3-threadpoolctl_3.1.0-1_all.deb ... 2024-04-14T15:20:33.774 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-kubernetes. 2024-04-14T15:20:33.802 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-04-14T15:20:33.802 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../090-python3-kubernetes_12.0.1-1ubuntu1_all.deb ... 2024-04-14T15:20:33.804 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-threadpoolctl (3.1.0-1) ... 2024-04-14T15:20:33.833 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-kubernetes (12.0.1-1ubuntu1) ... 2024-04-14T15:20:34.115 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-sklearn. 2024-04-14T15:20:34.143 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../081-python3-sklearn_0.23.2-5ubuntu6_all.deb ... 2024-04-14T15:20:34.181 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-sklearn (0.23.2-5ubuntu6) ... 2024-04-14T15:20:34.522 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package ceph-mgr-k8sevents. 2024-04-14T15:20:34.550 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../091-ceph-mgr-k8sevents_19.0.0-2778-ga971fd5f-1jammy_all.deb ... 2024-04-14T15:20:34.589 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking ceph-mgr-k8sevents (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:34.765 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-babel. 2024-04-14T15:20:34.792 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../072-python3-babel_2.8.0+dfsg.1-7_all.deb ... 2024-04-14T15:20:34.831 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-babel (2.8.0+dfsg.1-7) ... 2024-04-14T15:20:34.901 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package libonig5:amd64. 2024-04-14T15:20:34.928 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../092-libonig5_6.9.7.1-2build1_amd64.deb ... 2024-04-14T15:20:34.931 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package ceph-mgr-diskprediction-local. 2024-04-14T15:20:34.950 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../082-ceph-mgr-diskprediction-local_19.0.0-2778-ga971fd5f-1jammy_all.deb ... 2024-04-14T15:20:34.967 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking libonig5:amd64 (6.9.7.1-2build1) ... 2024-04-14T15:20:35.075 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking ceph-mgr-diskprediction-local (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:35.176 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-jinja2. 2024-04-14T15:20:35.203 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../073-python3-jinja2_3.0.3-1ubuntu0.1_all.deb ... 2024-04-14T15:20:35.243 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-jinja2 (3.0.3-1ubuntu0.1) ... 2024-04-14T15:20:35.304 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package libjq1:amd64. 2024-04-14T15:20:35.331 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../093-libjq1_1.6-2.1ubuntu3_amd64.deb ... 2024-04-14T15:20:35.370 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-04-14T15:20:35.596 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package ceph-mgr-cephadm. 2024-04-14T15:20:35.623 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../074-ceph-mgr-cephadm_19.0.0-2778-ga971fd5f-1jammy_all.deb ... 2024-04-14T15:20:35.624 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package jq. 2024-04-14T15:20:35.639 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../094-jq_1.6-2.1ubuntu3_amd64.deb ... 2024-04-14T15:20:35.663 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking ceph-mgr-cephadm (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:35.682 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking jq (1.6-2.1ubuntu3) ... 2024-04-14T15:20:35.935 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package socat. 2024-04-14T15:20:35.951 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../095-socat_1.7.4.1-3ubuntu4_amd64.deb ... 2024-04-14T15:20:35.993 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking socat (1.7.4.1-3ubuntu4) ... 2024-04-14T15:20:36.158 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-repoze.lru. 2024-04-14T15:20:36.185 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../075-python3-repoze.lru_0.7-2_all.deb ... 2024-04-14T15:20:36.224 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-repoze.lru (0.7-2) ... 2024-04-14T15:20:36.305 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package xmlstarlet. 2024-04-14T15:20:36.321 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../096-xmlstarlet_1.6.1-2.1_amd64.deb ... 2024-04-14T15:20:36.380 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking xmlstarlet (1.6.1-2.1) ... 2024-04-14T15:20:36.404 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-cachetools. 2024-04-14T15:20:36.431 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../083-python3-cachetools_5.0.0-1_all.deb ... 2024-04-14T15:20:36.470 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-cachetools (5.0.0-1) ... 2024-04-14T15:20:36.494 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-routes. 2024-04-14T15:20:36.521 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../076-python3-routes_2.5.1-1ubuntu1_all.deb ... 2024-04-14T15:20:36.560 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-routes (2.5.1-1ubuntu1) ... 2024-04-14T15:20:36.727 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package ceph-test. 2024-04-14T15:20:36.743 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../097-ceph-test_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:36.773 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-pyasn1. 2024-04-14T15:20:36.785 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking ceph-test (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:36.800 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../084-python3-pyasn1_0.4.8-1_all.deb ... 2024-04-14T15:20:36.839 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-pyasn1 (0.4.8-1) ... 2024-04-14T15:20:36.897 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package ceph-mgr-dashboard. 2024-04-14T15:20:36.924 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../077-ceph-mgr-dashboard_19.0.0-2778-ga971fd5f-1jammy_all.deb ... 2024-04-14T15:20:36.963 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking ceph-mgr-dashboard (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:37.168 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-pyasn1-modules. 2024-04-14T15:20:37.195 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../085-python3-pyasn1-modules_0.2.1-1_all.deb ... 2024-04-14T15:20:37.234 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-pyasn1-modules (0.2.1-1) ... 2024-04-14T15:20:37.562 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-rsa. 2024-04-14T15:20:37.590 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../086-python3-rsa_4.8-1_all.deb ... 2024-04-14T15:20:37.629 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-rsa (4.8-1) ... 2024-04-14T15:20:37.907 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-google-auth. 2024-04-14T15:20:37.924 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../087-python3-google-auth_1.5.1-3_all.deb ... 2024-04-14T15:20:37.957 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-google-auth (1.5.1-3) ... 2024-04-14T15:20:38.235 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-sklearn-lib:amd64. 2024-04-14T15:20:38.252 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../078-python3-sklearn-lib_0.23.2-5ubuntu6_amd64.deb ... 2024-04-14T15:20:38.260 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-requests-oauthlib. 2024-04-14T15:20:38.285 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-04-14T15:20:38.288 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../088-python3-requests-oauthlib_1.3.0+ds-0.1_all.deb ... 2024-04-14T15:20:38.327 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-04-14T15:20:38.646 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-websocket. 2024-04-14T15:20:38.674 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../089-python3-websocket_1.2.3-1_all.deb ... 2024-04-14T15:20:38.712 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-websocket (1.2.3-1) ... 2024-04-14T15:20:38.764 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-joblib. 2024-04-14T15:20:38.791 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../079-python3-joblib_0.17.0-4ubuntu1_all.deb ... 2024-04-14T15:20:38.830 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-joblib (0.17.0-4ubuntu1) ... 2024-04-14T15:20:39.024 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-kubernetes. 2024-04-14T15:20:39.052 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../090-python3-kubernetes_12.0.1-1ubuntu1_all.deb ... 2024-04-14T15:20:39.057 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package ceph-volume. 2024-04-14T15:20:39.085 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../098-ceph-volume_19.0.0-2778-ga971fd5f-1jammy_all.deb ... 2024-04-14T15:20:39.091 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-kubernetes (12.0.1-1ubuntu1) ... 2024-04-14T15:20:39.124 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking ceph-volume (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:39.209 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-threadpoolctl. 2024-04-14T15:20:39.236 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../080-python3-threadpoolctl_3.1.0-1_all.deb ... 2024-04-14T15:20:39.275 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-threadpoolctl (3.1.0-1) ... 2024-04-14T15:20:39.395 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package libcephfs-dev. 2024-04-14T15:20:39.411 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../099-libcephfs-dev_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:39.453 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking libcephfs-dev (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:39.587 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-sklearn. 2024-04-14T15:20:39.614 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../081-python3-sklearn_0.23.2-5ubuntu6_all.deb ... 2024-04-14T15:20:39.653 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-sklearn (0.23.2-5ubuntu6) ... 2024-04-14T15:20:39.721 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package ceph-mgr-k8sevents. 2024-04-14T15:20:39.738 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../091-ceph-mgr-k8sevents_19.0.0-2778-ga971fd5f-1jammy_all.deb ... 2024-04-14T15:20:39.765 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package lua-socket:amd64. 2024-04-14T15:20:39.771 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking ceph-mgr-k8sevents (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:39.792 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../100-lua-socket_3.0~rc1+git+ac3201d-6_amd64.deb ... 2024-04-14T15:20:39.831 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-04-14T15:20:40.091 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package libonig5:amd64. 2024-04-14T15:20:40.118 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../092-libonig5_6.9.7.1-2build1_amd64.deb ... 2024-04-14T15:20:40.157 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking libonig5:amd64 (6.9.7.1-2build1) ... 2024-04-14T15:20:40.162 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package lua-sec:amd64. 2024-04-14T15:20:40.189 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../101-lua-sec_1.0.2-1_amd64.deb ... 2024-04-14T15:20:40.236 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking lua-sec:amd64 (1.0.2-1) ... 2024-04-14T15:20:40.328 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package ceph-mgr-diskprediction-local. 2024-04-14T15:20:40.356 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../082-ceph-mgr-diskprediction-local_19.0.0-2778-ga971fd5f-1jammy_all.deb ... 2024-04-14T15:20:40.480 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking ceph-mgr-diskprediction-local (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:40.526 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package libjq1:amd64. 2024-04-14T15:20:40.554 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../093-libjq1_1.6-2.1ubuntu3_amd64.deb ... 2024-04-14T15:20:40.591 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package nvme-cli. 2024-04-14T15:20:40.593 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-04-14T15:20:40.619 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../102-nvme-cli_1.16-3ubuntu0.1_amd64.deb ... 2024-04-14T15:20:40.658 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking nvme-cli (1.16-3ubuntu0.1) ... 2024-04-14T15:20:40.846 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package jq. 2024-04-14T15:20:40.862 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../094-jq_1.6-2.1ubuntu3_amd64.deb ... 2024-04-14T15:20:40.895 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking jq (1.6-2.1ubuntu3) ... 2024-04-14T15:20:41.140 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package socat. 2024-04-14T15:20:41.168 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../095-socat_1.7.4.1-3ubuntu4_amd64.deb ... 2024-04-14T15:20:41.206 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking socat (1.7.4.1-3ubuntu4) ... 2024-04-14T15:20:41.214 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package pkg-config. 2024-04-14T15:20:41.241 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../103-pkg-config_0.29.2-1ubuntu3_amd64.deb ... 2024-04-14T15:20:41.288 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking pkg-config (0.29.2-1ubuntu3) ... 2024-04-14T15:20:41.434 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-cachetools. 2024-04-14T15:20:41.461 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../083-python3-cachetools_5.0.0-1_all.deb ... 2024-04-14T15:20:41.500 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-cachetools (5.0.0-1) ... 2024-04-14T15:20:41.518 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package xmlstarlet. 2024-04-14T15:20:41.546 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../096-xmlstarlet_1.6.1-2.1_amd64.deb ... 2024-04-14T15:20:41.584 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python-asyncssh-doc. 2024-04-14T15:20:41.584 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking xmlstarlet (1.6.1-2.1) ... 2024-04-14T15:20:41.611 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../104-python-asyncssh-doc_2.5.0-1_all.deb ... 2024-04-14T15:20:41.650 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python-asyncssh-doc (2.5.0-1) ... 2024-04-14T15:20:41.812 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-pyasn1. 2024-04-14T15:20:41.839 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../084-python3-pyasn1_0.4.8-1_all.deb ... 2024-04-14T15:20:41.878 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-pyasn1 (0.4.8-1) ... 2024-04-14T15:20:41.905 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package ceph-test. 2024-04-14T15:20:41.930 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../097-ceph-test_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:41.971 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking ceph-test (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:42.079 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-iniconfig. 2024-04-14T15:20:42.106 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../105-python3-iniconfig_1.1.1-2_all.deb ... 2024-04-14T15:20:42.146 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-iniconfig (1.1.1-2) ... 2024-04-14T15:20:42.173 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-pyasn1-modules. 2024-04-14T15:20:42.200 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../085-python3-pyasn1-modules_0.2.1-1_all.deb ... 2024-04-14T15:20:42.231 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-pyasn1-modules (0.2.1-1) ... 2024-04-14T15:20:42.449 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-pastescript. 2024-04-14T15:20:42.476 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../106-python3-pastescript_2.0.2-4_all.deb ... 2024-04-14T15:20:42.524 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-pastescript (2.0.2-4) ... 2024-04-14T15:20:42.526 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-rsa. 2024-04-14T15:20:42.553 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../086-python3-rsa_4.8-1_all.deb ... 2024-04-14T15:20:42.592 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-rsa (4.8-1) ... 2024-04-14T15:20:42.811 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-pluggy. 2024-04-14T15:20:42.827 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../107-python3-pluggy_0.13.0-7.1_all.deb ... 2024-04-14T15:20:42.861 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-pluggy (0.13.0-7.1) ... 2024-04-14T15:20:42.930 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-google-auth. 2024-04-14T15:20:42.957 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../087-python3-google-auth_1.5.1-3_all.deb ... 2024-04-14T15:20:42.996 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-google-auth (1.5.1-3) ... 2024-04-14T15:20:43.173 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-psutil. 2024-04-14T15:20:43.200 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../108-python3-psutil_5.9.0-1build1_amd64.deb ... 2024-04-14T15:20:43.239 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-psutil (5.9.0-1build1) ... 2024-04-14T15:20:43.316 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-requests-oauthlib. 2024-04-14T15:20:43.343 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../088-python3-requests-oauthlib_1.3.0+ds-0.1_all.deb ... 2024-04-14T15:20:43.382 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-04-14T15:20:43.535 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-py. 2024-04-14T15:20:43.562 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../109-python3-py_1.10.0-1_all.deb ... 2024-04-14T15:20:43.601 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-py (1.10.0-1) ... 2024-04-14T15:20:43.669 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-websocket. 2024-04-14T15:20:43.696 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../089-python3-websocket_1.2.3-1_all.deb ... 2024-04-14T15:20:43.736 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-websocket (1.2.3-1) ... 2024-04-14T15:20:43.913 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-pygments. 2024-04-14T15:20:43.940 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../110-python3-pygments_2.11.2+dfsg-2_all.deb ... 2024-04-14T15:20:43.980 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-pygments (2.11.2+dfsg-2) ... 2024-04-14T15:20:44.039 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-kubernetes. 2024-04-14T15:20:44.066 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../090-python3-kubernetes_12.0.1-1ubuntu1_all.deb ... 2024-04-14T15:20:44.105 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-kubernetes (12.0.1-1ubuntu1) ... 2024-04-14T15:20:44.368 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package ceph-volume. 2024-04-14T15:20:44.395 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../098-ceph-volume_19.0.0-2778-ga971fd5f-1jammy_all.deb ... 2024-04-14T15:20:44.434 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking ceph-volume (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:44.443 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-pyinotify. 2024-04-14T15:20:44.471 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../111-python3-pyinotify_0.9.6-1.3_all.deb ... 2024-04-14T15:20:44.509 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-pyinotify (0.9.6-1.3) ... 2024-04-14T15:20:44.754 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package libcephfs-dev. 2024-04-14T15:20:44.771 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../099-libcephfs-dev_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:44.803 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package ceph-mgr-k8sevents. 2024-04-14T15:20:44.812 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking libcephfs-dev (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:44.821 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-toml. 2024-04-14T15:20:44.830 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../091-ceph-mgr-k8sevents_19.0.0-2778-ga971fd5f-1jammy_all.deb ... 2024-04-14T15:20:44.849 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../112-python3-toml_0.10.2-1_all.deb ... 2024-04-14T15:20:44.869 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking ceph-mgr-k8sevents (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:44.887 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-toml (0.10.2-1) ... 2024-04-14T15:20:45.140 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package lua-socket:amd64. 2024-04-14T15:20:45.168 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../100-lua-socket_3.0~rc1+git+ac3201d-6_amd64.deb ... 2024-04-14T15:20:45.180 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package libonig5:amd64. 2024-04-14T15:20:45.191 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-pytest. 2024-04-14T15:20:45.208 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../092-libonig5_6.9.7.1-2build1_amd64.deb ... 2024-04-14T15:20:45.218 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../113-python3-pytest_6.2.5-1ubuntu2_all.deb ... 2024-04-14T15:20:45.240 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-04-14T15:20:45.247 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking libonig5:amd64 (6.9.7.1-2build1) ... 2024-04-14T15:20:45.257 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-pytest (6.2.5-1ubuntu2) ... 2024-04-14T15:20:45.528 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package lua-sec:amd64. 2024-04-14T15:20:45.556 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../101-lua-sec_1.0.2-1_amd64.deb ... 2024-04-14T15:20:45.586 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking lua-sec:amd64 (1.0.2-1) ... 2024-04-14T15:20:45.609 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package libjq1:amd64. 2024-04-14T15:20:45.620 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-simplejson. 2024-04-14T15:20:45.637 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../093-libjq1_1.6-2.1ubuntu3_amd64.deb ... 2024-04-14T15:20:45.647 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../114-python3-simplejson_3.17.6-1build1_amd64.deb ... 2024-04-14T15:20:45.686 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-simplejson (3.17.6-1build1) ... 2024-04-14T15:20:45.858 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-04-14T15:20:45.956 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package qttranslations5-l10n. 2024-04-14T15:20:45.956 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package nvme-cli. 2024-04-14T15:20:45.984 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../115-qttranslations5-l10n_5.15.3-1_all.deb ... 2024-04-14T15:20:45.984 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../102-nvme-cli_1.16-3ubuntu0.1_amd64.deb ... 2024-04-14T15:20:46.022 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking qttranslations5-l10n (5.15.3-1) ... 2024-04-14T15:20:46.023 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking nvme-cli (1.16-3ubuntu0.1) ... 2024-04-14T15:20:46.103 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package jq. 2024-04-14T15:20:46.130 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../094-jq_1.6-2.1ubuntu3_amd64.deb ... 2024-04-14T15:20:46.177 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking jq (1.6-2.1ubuntu3) ... 2024-04-14T15:20:46.388 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package socat. 2024-04-14T15:20:46.416 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../095-socat_1.7.4.1-3ubuntu4_amd64.deb ... 2024-04-14T15:20:46.455 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking socat (1.7.4.1-3ubuntu4) ... 2024-04-14T15:20:46.470 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package pkg-config. 2024-04-14T15:20:46.498 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../103-pkg-config_0.29.2-1ubuntu3_amd64.deb ... 2024-04-14T15:20:46.536 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking pkg-config (0.29.2-1ubuntu3) ... 2024-04-14T15:20:46.686 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package radosgw. 2024-04-14T15:20:46.713 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../116-radosgw_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:46.752 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking radosgw (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:46.767 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package xmlstarlet. 2024-04-14T15:20:46.781 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python-asyncssh-doc. 2024-04-14T15:20:46.794 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../096-xmlstarlet_1.6.1-2.1_amd64.deb ... 2024-04-14T15:20:46.808 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../104-python-asyncssh-doc_2.5.0-1_all.deb ... 2024-04-14T15:20:46.833 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking xmlstarlet (1.6.1-2.1) ... 2024-04-14T15:20:46.847 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python-asyncssh-doc (2.5.0-1) ... 2024-04-14T15:20:47.145 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package ceph-test. 2024-04-14T15:20:47.161 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../097-ceph-test_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:47.204 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking ceph-test (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:47.292 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-iniconfig. 2024-04-14T15:20:47.319 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../105-python3-iniconfig_1.1.1-2_all.deb ... 2024-04-14T15:20:47.358 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-iniconfig (1.1.1-2) ... 2024-04-14T15:20:47.623 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package rbd-fuse. 2024-04-14T15:20:47.635 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-pastescript. 2024-04-14T15:20:47.650 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../117-rbd-fuse_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:47.663 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../106-python3-pastescript_2.0.2-4_all.deb ... 2024-04-14T15:20:47.689 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking rbd-fuse (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:47.702 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-pastescript (2.0.2-4) ... 2024-04-14T15:20:47.956 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-pluggy. 2024-04-14T15:20:47.969 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../107-python3-pluggy_0.13.0-7.1_all.deb ... 2024-04-14T15:20:47.997 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-pluggy (0.13.0-7.1) ... 2024-04-14T15:20:48.027 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-iniconfig (1.1.1-2) ... 2024-04-14T15:20:48.278 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up libdouble-conversion3:amd64 (3.1.7-4) ... 2024-04-14T15:20:48.300 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-psutil. 2024-04-14T15:20:48.328 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../108-python3-psutil_5.9.0-1build1_amd64.deb ... 2024-04-14T15:20:48.391 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-psutil (5.9.0-1build1) ... 2024-04-14T15:20:48.396 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up nvme-cli (1.16-3ubuntu0.1) ... 2024-04-14T15:20:48.655 INFO:teuthology.orchestra.run.smithi138.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service -> /lib/systemd/system/nvmefc-boot-connections.service. 2024-04-14T15:20:48.711 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-py. 2024-04-14T15:20:48.739 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../109-python3-py_1.10.0-1_all.deb ... 2024-04-14T15:20:48.777 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-py (1.10.0-1) ... 2024-04-14T15:20:48.967 INFO:teuthology.orchestra.run.smithi138.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmf-autoconnect.service -> /lib/systemd/system/nvmf-autoconnect.service. 2024-04-14T15:20:49.056 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-pygments. 2024-04-14T15:20:49.072 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../110-python3-pygments_2.11.2+dfsg-2_all.deb ... 2024-04-14T15:20:49.105 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-pygments (2.11.2+dfsg-2) ... 2024-04-14T15:20:49.387 INFO:teuthology.orchestra.run.smithi138.stdout:nvmf-connect.target is a disabled or a static unit, not starting it. 2024-04-14T15:20:49.458 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package ceph-volume. 2024-04-14T15:20:49.482 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up cephadm (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:49.486 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../098-ceph-volume_19.0.0-2778-ga971fd5f-1jammy_all.deb ... 2024-04-14T15:20:49.525 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking ceph-volume (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:49.568 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-pyinotify. 2024-04-14T15:20:49.596 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../111-python3-pyinotify_0.9.6-1.3_all.deb ... 2024-04-14T15:20:49.634 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-pyinotify (0.9.6-1.3) ... 2024-04-14T15:20:49.829 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package libcephfs-dev. 2024-04-14T15:20:49.845 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../099-libcephfs-dev_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:49.888 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking libcephfs-dev (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:49.931 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-toml. 2024-04-14T15:20:49.959 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../112-python3-toml_0.10.2-1_all.deb ... 2024-04-14T15:20:49.997 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-toml (0.10.2-1) ... 2024-04-14T15:20:50.207 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package lua-socket:amd64. 2024-04-14T15:20:50.222 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../100-lua-socket_3.0~rc1+git+ac3201d-6_amd64.deb ... 2024-04-14T15:20:50.264 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-04-14T15:20:50.266 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-pytest. 2024-04-14T15:20:50.295 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../113-python3-pytest_6.2.5-1ubuntu2_all.deb ... 2024-04-14T15:20:50.332 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-pytest (6.2.5-1ubuntu2) ... 2024-04-14T15:20:50.408 INFO:teuthology.orchestra.run.smithi138.stdout:Adding system user cephadm....done 2024-04-14T15:20:50.565 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-waitress (1.4.4-1.1ubuntu1) ... 2024-04-14T15:20:50.569 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package lua-sec:amd64. 2024-04-14T15:20:50.597 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../101-lua-sec_1.0.2-1_amd64.deb ... 2024-04-14T15:20:50.627 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking lua-sec:amd64 (1.0.2-1) ... 2024-04-14T15:20:50.670 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package python3-simplejson. 2024-04-14T15:20:50.698 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../114-python3-simplejson_3.17.6-1build1_amd64.deb ... 2024-04-14T15:20:50.736 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking python3-simplejson (3.17.6-1build1) ... 2024-04-14T15:20:50.842 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-jaraco.classes (3.2.1-3) ... 2024-04-14T15:20:50.998 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package nvme-cli. 2024-04-14T15:20:51.014 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package qttranslations5-l10n. 2024-04-14T15:20:51.026 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../102-nvme-cli_1.16-3ubuntu0.1_amd64.deb ... 2024-04-14T15:20:51.030 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../115-qttranslations5-l10n_5.15.3-1_all.deb ... 2024-04-14T15:20:51.065 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking nvme-cli (1.16-3ubuntu0.1) ... 2024-04-14T15:20:51.072 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking qttranslations5-l10n (5.15.3-1) ... 2024-04-14T15:20:51.135 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python-asyncssh-doc (2.5.0-1) ... 2024-04-14T15:20:51.236 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-jaraco.functools (3.4.0-2) ... 2024-04-14T15:20:51.488 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-repoze.lru (0.7-2) ... 2024-04-14T15:20:51.522 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package pkg-config. 2024-04-14T15:20:51.548 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../103-pkg-config_0.29.2-1ubuntu3_amd64.deb ... 2024-04-14T15:20:51.586 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking pkg-config (0.29.2-1ubuntu3) ... 2024-04-14T15:20:51.764 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up liboath0:amd64 (2.6.7-3build1) ... 2024-04-14T15:20:51.823 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python-asyncssh-doc. 2024-04-14T15:20:51.839 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../104-python-asyncssh-doc_2.5.0-1_all.deb ... 2024-04-14T15:20:51.842 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package radosgw. 2024-04-14T15:20:51.871 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../116-radosgw_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:51.881 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python-asyncssh-doc (2.5.0-1) ... 2024-04-14T15:20:51.890 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-py (1.10.0-1) ... 2024-04-14T15:20:51.908 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking radosgw (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:52.195 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-joblib (0.17.0-4ubuntu1) ... 2024-04-14T15:20:52.309 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-iniconfig. 2024-04-14T15:20:52.336 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../105-python3-iniconfig_1.1.1-2_all.deb ... 2024-04-14T15:20:52.375 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-iniconfig (1.1.1-2) ... 2024-04-14T15:20:52.572 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-cachetools (5.0.0-1) ... 2024-04-14T15:20:52.654 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-pastescript. 2024-04-14T15:20:52.681 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../106-python3-pastescript_2.0.2-4_all.deb ... 2024-04-14T15:20:52.695 INFO:teuthology.orchestra.run.smithi047.stdout:Selecting previously unselected package rbd-fuse. 2024-04-14T15:20:52.712 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-pastescript (2.0.2-4) ... 2024-04-14T15:20:52.723 INFO:teuthology.orchestra.run.smithi047.stdout:Preparing to unpack .../117-rbd-fuse_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:52.761 INFO:teuthology.orchestra.run.smithi047.stdout:Unpacking rbd-fuse (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:52.831 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-openssl (21.0.0-1) ... 2024-04-14T15:20:52.982 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-pluggy. 2024-04-14T15:20:53.010 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../107-python3-pluggy_0.13.0-7.1_all.deb ... 2024-04-14T15:20:53.048 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-pluggy (0.13.0-7.1) ... 2024-04-14T15:20:53.083 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-iniconfig (1.1.1-2) ... 2024-04-14T15:20:53.125 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up unzip (6.0-26ubuntu3.2) ... 2024-04-14T15:20:53.360 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-psutil. 2024-04-14T15:20:53.360 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-bcrypt (3.2.0-1build1) ... 2024-04-14T15:20:53.387 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../108-python3-psutil_5.9.0-1build1_amd64.deb ... 2024-04-14T15:20:53.425 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up libdouble-conversion3:amd64 (3.1.7-4) ... 2024-04-14T15:20:53.426 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-psutil (5.9.0-1build1) ... 2024-04-14T15:20:53.526 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up nvme-cli (1.16-3ubuntu0.1) ... 2024-04-14T15:20:53.619 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-pyinotify (0.9.6-1.3) ... 2024-04-14T15:20:53.729 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-py. 2024-04-14T15:20:53.757 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../109-python3-py_1.10.0-1_all.deb ... 2024-04-14T15:20:53.766 INFO:teuthology.orchestra.run.smithi047.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service -> /lib/systemd/system/nvmefc-boot-connections.service. 2024-04-14T15:20:53.795 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-py (1.10.0-1) ... 2024-04-14T15:20:53.887 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-threadpoolctl (3.1.0-1) ... 2024-04-14T15:20:54.126 INFO:teuthology.orchestra.run.smithi047.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmf-autoconnect.service -> /lib/systemd/system/nvmf-autoconnect.service. 2024-04-14T15:20:54.132 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-pygments. 2024-04-14T15:20:54.139 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-ceph-argparse (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:54.160 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../110-python3-pygments_2.11.2+dfsg-2_all.deb ... 2024-04-14T15:20:54.198 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-pygments (2.11.2+dfsg-2) ... 2024-04-14T15:20:54.390 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-04-14T15:20:54.491 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-04-14T15:20:54.541 INFO:teuthology.orchestra.run.smithi047.stdout:nvmf-connect.target is a disabled or a static unit, not starting it. 2024-04-14T15:20:54.610 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up cephadm (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:54.617 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up libreadline-dev:amd64 (8.1.2-1) ... 2024-04-14T15:20:54.669 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-pyinotify. 2024-04-14T15:20:54.698 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../111-python3-pyinotify_0.9.6-1.3_all.deb ... 2024-04-14T15:20:54.736 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-pyinotify (0.9.6-1.3) ... 2024-04-14T15:20:54.743 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-markupsafe (2.0.1-2build1) ... 2024-04-14T15:20:54.995 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up lua5.1 (5.1.5-8.1build4) ... 2024-04-14T15:20:55.039 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-toml. 2024-04-14T15:20:55.067 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../112-python3-toml_0.10.2-1_all.deb ... 2024-04-14T15:20:55.105 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-toml (0.10.2-1) ... 2024-04-14T15:20:55.161 INFO:teuthology.orchestra.run.smithi047.stdout:Adding system user cephadm....done 2024-04-14T15:20:55.241 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-waitress (1.4.4-1.1ubuntu1) ... 2024-04-14T15:20:55.373 INFO:teuthology.orchestra.run.smithi138.stdout:update-alternatives: using /usr/bin/lua5.1 to provide /usr/bin/lua (lua-interpreter) in auto mode 2024-04-14T15:20:55.391 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-pytest. 2024-04-14T15:20:55.410 INFO:teuthology.orchestra.run.smithi138.stdout:update-alternatives: using /usr/bin/luac5.1 to provide /usr/bin/luac (lua-compiler) in auto mode 2024-04-14T15:20:55.419 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../113-python3-pytest_6.2.5-1ubuntu2_all.deb ... 2024-04-14T15:20:55.449 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-pytest (6.2.5-1ubuntu2) ... 2024-04-14T15:20:55.465 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-04-14T15:20:55.501 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-jaraco.classes (3.2.1-3) ... 2024-04-14T15:20:55.591 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-psutil (5.9.0-1build1) ... 2024-04-14T15:20:55.727 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python-asyncssh-doc (2.5.0-1) ... 2024-04-14T15:20:55.786 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package python3-simplejson. 2024-04-14T15:20:55.814 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../114-python3-simplejson_3.17.6-1build1_amd64.deb ... 2024-04-14T15:20:55.853 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking python3-simplejson (3.17.6-1build1) ... 2024-04-14T15:20:55.853 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-jaraco.functools (3.4.0-2) ... 2024-04-14T15:20:55.951 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-04-14T15:20:56.061 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-natsort (8.0.2-1) ... 2024-04-14T15:20:56.104 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-repoze.lru (0.7-2) ... 2024-04-14T15:20:56.122 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package qttranslations5-l10n. 2024-04-14T15:20:56.150 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../115-qttranslations5-l10n_5.15.3-1_all.deb ... 2024-04-14T15:20:56.189 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking qttranslations5-l10n (5.15.3-1) ... 2024-04-14T15:20:56.320 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-routes (2.5.1-1ubuntu1) ... 2024-04-14T15:20:56.372 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up liboath0:amd64 (2.6.7-3build1) ... 2024-04-14T15:20:56.498 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-py (1.10.0-1) ... 2024-04-14T15:20:56.580 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-simplejson (3.17.6-1build1) ... 2024-04-14T15:20:56.841 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-joblib (0.17.0-4ubuntu1) ... 2024-04-14T15:20:56.890 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up zip (3.0-12build2) ... 2024-04-14T15:20:56.893 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package radosgw. 2024-04-14T15:20:56.921 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../116-radosgw_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:56.951 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking radosgw (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:56.991 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-pygments (2.11.2+dfsg-2) ... 2024-04-14T15:20:57.218 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-cachetools (5.0.0-1) ... 2024-04-14T15:20:57.469 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-openssl (21.0.0-1) ... 2024-04-14T15:20:57.668 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-tempita (0.5.2-6ubuntu1) ... 2024-04-14T15:20:57.754 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package rbd-fuse. 2024-04-14T15:20:57.761 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up unzip (6.0-26ubuntu3.2) ... 2024-04-14T15:20:57.770 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../117-rbd-fuse_19.0.0-2778-ga971fd5f-1jammy_amd64.deb ... 2024-04-14T15:20:57.813 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking rbd-fuse (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:57.903 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python-pastedeploy-tpl (2.1.1-1) ... 2024-04-14T15:20:58.021 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up qttranslations5-l10n (5.15.3-1) ... 2024-04-14T15:20:58.038 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-bcrypt (3.2.0-1build1) ... 2024-04-14T15:20:58.108 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-iniconfig (1.1.1-2) ... 2024-04-14T15:20:58.147 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-wcwidth (0.2.5+dfsg1-1) ... 2024-04-14T15:20:58.298 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-pyinotify (0.9.6-1.3) ... 2024-04-14T15:20:58.359 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up libdouble-conversion3:amd64 (3.1.7-4) ... 2024-04-14T15:20:58.457 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-asyncssh (2.5.0-1) ... 2024-04-14T15:20:58.468 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up nvme-cli (1.16-3ubuntu0.1) ... 2024-04-14T15:20:58.557 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-threadpoolctl (3.1.0-1) ... 2024-04-14T15:20:58.720 INFO:teuthology.orchestra.run.smithi110.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service -> /lib/systemd/system/nvmefc-boot-connections.service. 2024-04-14T15:20:58.800 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-ceph-argparse (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:58.841 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-04-14T15:20:59.046 INFO:teuthology.orchestra.run.smithi110.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmf-autoconnect.service -> /lib/systemd/system/nvmf-autoconnect.service. 2024-04-14T15:20:59.117 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-paste (3.5.0+dfsg1-1) ... 2024-04-14T15:20:59.118 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-04-14T15:20:59.245 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-04-14T15:20:59.369 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up libreadline-dev:amd64 (8.1.2-1) ... 2024-04-14T15:20:59.485 INFO:teuthology.orchestra.run.smithi110.stdout:nvmf-connect.target is a disabled or a static unit, not starting it. 2024-04-14T15:20:59.486 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-04-14T15:20:59.495 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-markupsafe (2.0.1-2build1) ... 2024-04-14T15:20:59.545 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up cephadm (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:20:59.771 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.1) ... 2024-04-14T15:20:59.779 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up lua5.1 (5.1.5-8.1build4) ... 2024-04-14T15:21:00.036 INFO:teuthology.orchestra.run.smithi110.stdout:Adding system user cephadm....done 2024-04-14T15:21:00.115 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-jaraco.text (3.6.0-2) ... 2024-04-14T15:21:00.182 INFO:teuthology.orchestra.run.smithi047.stdout:update-alternatives: using /usr/bin/lua5.1 to provide /usr/bin/lua (lua-interpreter) in auto mode 2024-04-14T15:21:00.184 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-waitress (1.4.4-1.1ubuntu1) ... 2024-04-14T15:21:00.220 INFO:teuthology.orchestra.run.smithi047.stdout:update-alternatives: using /usr/bin/luac5.1 to provide /usr/bin/luac (lua-compiler) in auto mode 2024-04-14T15:21:00.274 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-04-14T15:21:00.366 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up socat (1.7.4.1-3ubuntu4) ... 2024-04-14T15:21:00.384 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-psutil (5.9.0-1build1) ... 2024-04-14T15:21:00.478 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-jaraco.classes (3.2.1-3) ... 2024-04-14T15:21:00.492 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-ceph-common (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:00.737 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python-asyncssh-doc (2.5.0-1) ... 2024-04-14T15:21:00.751 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-04-14T15:21:00.793 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-idna (3.3-1) ... 2024-04-14T15:21:00.863 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-jaraco.functools (3.4.0-2) ... 2024-04-14T15:21:00.877 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-natsort (8.0.2-1) ... 2024-04-14T15:21:01.095 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-sklearn (0.23.2-5ubuntu6) ... 2024-04-14T15:21:01.131 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-repoze.lru (0.7-2) ... 2024-04-14T15:21:01.162 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-routes (2.5.1-1ubuntu1) ... 2024-04-14T15:21:01.382 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up liboath0:amd64 (2.6.7-3build1) ... 2024-04-14T15:21:01.517 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-py (1.10.0-1) ... 2024-04-14T15:21:01.539 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-simplejson (3.17.6-1build1) ... 2024-04-14T15:21:01.819 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-joblib (0.17.0-4ubuntu1) ... 2024-04-14T15:21:02.165 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up zip (3.0-12build2) ... 2024-04-14T15:21:02.179 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-cachetools (5.0.0-1) ... 2024-04-14T15:21:02.274 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-pygments (2.11.2+dfsg-2) ... 2024-04-14T15:21:02.344 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up pkg-config (0.29.2-1ubuntu3) ... 2024-04-14T15:21:02.430 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-openssl (21.0.0-1) ... 2024-04-14T15:21:02.545 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-14T15:21:02.680 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-toml (0.10.2-1) ... 2024-04-14T15:21:02.706 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up unzip (6.0-26ubuntu3.2) ... 2024-04-14T15:21:02.974 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-bcrypt (3.2.0-1build1) ... 2024-04-14T15:21:02.976 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-tempita (0.5.2-6ubuntu1) ... 2024-04-14T15:21:03.234 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-pyinotify (0.9.6-1.3) ... 2024-04-14T15:21:03.235 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python-pastedeploy-tpl (2.1.1-1) ... 2024-04-14T15:21:03.281 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up librdkafka1:amd64 (1.8.0-1build1) ... 2024-04-14T15:21:03.361 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up qttranslations5-l10n (5.15.3-1) ... 2024-04-14T15:21:03.407 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up xmlstarlet (1.6.1-2.1) ... 2024-04-14T15:21:03.487 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-wcwidth (0.2.5+dfsg1-1) ... 2024-04-14T15:21:03.493 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-threadpoolctl (3.1.0-1) ... 2024-04-14T15:21:03.533 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-04-14T15:21:03.736 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-ceph-argparse (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:03.788 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-asyncssh (2.5.0-1) ... 2024-04-14T15:21:03.827 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-pluggy (0.13.0-7.1) ... 2024-04-14T15:21:04.054 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-04-14T15:21:04.062 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-zc.lockfile (2.0-1) ... 2024-04-14T15:21:04.180 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-04-14T15:21:04.190 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-04-14T15:21:04.306 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up libreadline-dev:amd64 (8.1.2-1) ... 2024-04-14T15:21:04.313 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-14T15:21:04.431 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-pyasn1 (0.4.8-1) ... 2024-04-14T15:21:04.432 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-markupsafe (2.0.1-2build1) ... 2024-04-14T15:21:04.440 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-paste (3.5.0+dfsg1-1) ... 2024-04-14T15:21:04.691 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up lua5.1 (5.1.5-8.1build4) ... 2024-04-14T15:21:04.724 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-singledispatch (3.4.0.3-3) ... 2024-04-14T15:21:04.809 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-04-14T15:21:04.967 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-logutils (0.3.3-8) ... 2024-04-14T15:21:05.085 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.1) ... 2024-04-14T15:21:05.093 INFO:teuthology.orchestra.run.smithi110.stdout:update-alternatives: using /usr/bin/lua5.1 to provide /usr/bin/lua (lua-interpreter) in auto mode 2024-04-14T15:21:05.123 INFO:teuthology.orchestra.run.smithi110.stdout:update-alternatives: using /usr/bin/luac5.1 to provide /usr/bin/luac (lua-compiler) in auto mode 2024-04-14T15:21:05.186 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-04-14T15:21:05.226 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-tempora (4.1.2-1) ... 2024-04-14T15:21:05.306 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-psutil (5.9.0-1build1) ... 2024-04-14T15:21:05.436 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-jaraco.text (3.6.0-2) ... 2024-04-14T15:21:05.470 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-simplegeneric (0.8.1-3) ... 2024-04-14T15:21:05.673 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-04-14T15:21:05.695 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up socat (1.7.4.1-3ubuntu4) ... 2024-04-14T15:21:05.712 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-prettytable (2.5.0-2) ... 2024-04-14T15:21:05.799 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-natsort (8.0.2-1) ... 2024-04-14T15:21:05.830 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-ceph-common (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:05.964 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-04-14T15:21:06.065 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-websocket (1.2.3-1) ... 2024-04-14T15:21:06.092 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-routes (2.5.1-1ubuntu1) ... 2024-04-14T15:21:06.131 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-idna (3.3-1) ... 2024-04-14T15:21:06.358 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up libonig5:amd64 (6.9.7.1-2build1) ... 2024-04-14T15:21:06.368 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-simplejson (3.17.6-1build1) ... 2024-04-14T15:21:06.449 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-sklearn (0.23.2-5ubuntu6) ... 2024-04-14T15:21:06.484 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-04-14T15:21:06.653 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up zip (3.0-12build2) ... 2024-04-14T15:21:06.754 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-pygments (2.11.2+dfsg-2) ... 2024-04-14T15:21:06.777 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-webob (1:1.8.6-1.1) ... 2024-04-14T15:21:07.087 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-jaraco.collections (3.4.0-2) ... 2024-04-14T15:21:07.339 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-04-14T15:21:07.423 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-tempita (0.5.2-6ubuntu1) ... 2024-04-14T15:21:07.464 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up lua-sec:amd64 (1.0.2-1) ... 2024-04-14T15:21:07.591 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-babel (2.8.0+dfsg.1-7) ... 2024-04-14T15:21:07.679 INFO:teuthology.orchestra.run.smithi138.stdout:update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode 2024-04-14T15:21:07.690 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python-pastedeploy-tpl (2.1.1-1) ... 2024-04-14T15:21:07.697 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up pkg-config (0.29.2-1ubuntu3) ... 2024-04-14T15:21:07.816 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up qttranslations5-l10n (5.15.3-1) ... 2024-04-14T15:21:07.918 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-04-14T15:21:07.942 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-wcwidth (0.2.5+dfsg1-1) ... 2024-04-14T15:21:07.948 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-14T15:21:08.019 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-pytest (6.2.5-1ubuntu2) ... 2024-04-14T15:21:08.057 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-toml (0.10.2-1) ... 2024-04-14T15:21:08.243 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-asyncssh (2.5.0-1) ... 2024-04-14T15:21:08.300 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up librdkafka1:amd64 (1.8.0-1build1) ... 2024-04-14T15:21:08.396 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-pastedeploy (2.1.1-1) ... 2024-04-14T15:21:08.418 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up xmlstarlet (1.6.1-2.1) ... 2024-04-14T15:21:08.544 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-04-14T15:21:08.611 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-04-14T15:21:08.656 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up lua-any (27ubuntu1) ... 2024-04-14T15:21:08.782 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-portend (3.0.0-1) ... 2024-04-14T15:21:08.870 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-pluggy (0.13.0-7.1) ... 2024-04-14T15:21:08.870 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-paste (3.5.0+dfsg1-1) ... 2024-04-14T15:21:09.033 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-14T15:21:09.129 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-zc.lockfile (2.0-1) ... 2024-04-14T15:21:09.134 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-jinja2 (3.0.3-1ubuntu0.1) ... 2024-04-14T15:21:09.230 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-04-14T15:21:09.381 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-14T15:21:09.419 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-pyasn1-modules (0.2.1-1) ... 2024-04-14T15:21:09.507 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-pyasn1 (0.4.8-1) ... 2024-04-14T15:21:09.531 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.1) ... 2024-04-14T15:21:09.704 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-04-14T15:21:09.800 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-singledispatch (3.4.0.3-3) ... 2024-04-14T15:21:09.874 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-jaraco.text (3.6.0-2) ... 2024-04-14T15:21:09.989 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up jq (1.6-2.1ubuntu3) ... 2024-04-14T15:21:10.034 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-logutils (0.3.3-8) ... 2024-04-14T15:21:10.114 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-rsa (4.8-1) ... 2024-04-14T15:21:10.134 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up socat (1.7.4.1-3ubuntu4) ... 2024-04-14T15:21:10.260 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-ceph-common (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:10.294 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-tempora (4.1.2-1) ... 2024-04-14T15:21:10.391 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-webtest (2.0.35-1) ... 2024-04-14T15:21:10.552 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-idna (3.3-1) ... 2024-04-14T15:21:10.553 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-simplegeneric (0.8.1-3) ... 2024-04-14T15:21:10.650 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-04-14T15:21:10.804 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-prettytable (2.5.0-2) ... 2024-04-14T15:21:10.862 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-sklearn (0.23.2-5ubuntu6) ... 2024-04-14T15:21:11.030 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-cherrypy3 (18.6.1-4) ... 2024-04-14T15:21:11.080 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-04-14T15:21:11.206 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-websocket (1.2.3-1) ... 2024-04-14T15:21:11.415 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-pastescript (2.0.2-4) ... 2024-04-14T15:21:11.474 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up libonig5:amd64 (6.9.7.1-2build1) ... 2024-04-14T15:21:11.575 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-04-14T15:21:11.759 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-pecan (1.3.3-4ubuntu2) ... 2024-04-14T15:21:11.851 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-webob (1:1.8.6-1.1) ... 2024-04-14T15:21:12.059 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up pkg-config (0.29.2-1ubuntu3) ... 2024-04-14T15:21:12.078 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-04-14T15:21:12.152 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-jaraco.collections (3.4.0-2) ... 2024-04-14T15:21:12.204 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up librados2 (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:12.294 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-14T15:21:12.331 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up libsqlite3-mod-ceph (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:12.412 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-04-14T15:21:12.428 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-toml (0.10.2-1) ... 2024-04-14T15:21:12.457 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up luarocks (3.8.0+dfsg1-1) ... 2024-04-14T15:21:12.538 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up lua-sec:amd64 (1.0.2-1) ... 2024-04-14T15:21:12.672 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-babel (2.8.0+dfsg.1-7) ... 2024-04-14T15:21:12.687 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up librdkafka1:amd64 (1.8.0-1build1) ... 2024-04-14T15:21:12.761 INFO:teuthology.orchestra.run.smithi047.stdout:update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode 2024-04-14T15:21:12.794 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up libcephfs2 (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:12.847 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up xmlstarlet (1.6.1-2.1) ... 2024-04-14T15:21:12.895 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up libradosstriper1 (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:12.973 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-04-14T15:21:13.021 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-google-auth (1.5.1-3) ... 2024-04-14T15:21:13.032 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-04-14T15:21:13.133 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-pytest (6.2.5-1ubuntu2) ... 2024-04-14T15:21:13.266 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-pluggy (0.13.0-7.1) ... 2024-04-14T15:21:13.306 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up librbd1 (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:13.433 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up ceph-mgr-modules-core (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:13.501 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-pastedeploy (2.1.1-1) ... 2024-04-14T15:21:13.517 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-zc.lockfile (2.0-1) ... 2024-04-14T15:21:13.534 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up ceph-fuse (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:13.730 INFO:teuthology.orchestra.run.smithi138.stdout:Created symlink /etc/systemd/system/remote-fs.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-04-14T15:21:13.730 INFO:teuthology.orchestra.run.smithi138.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-04-14T15:21:13.743 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-14T15:21:13.769 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up lua-any (27ubuntu1) ... 2024-04-14T15:21:13.861 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-pyasn1 (0.4.8-1) ... 2024-04-14T15:21:13.895 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-portend (3.0.0-1) ... 2024-04-14T15:21:14.162 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-singledispatch (3.4.0.3-3) ... 2024-04-14T15:21:14.171 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-14T15:21:14.186 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up libcephfs-dev (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:14.287 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-rados (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:14.305 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-jinja2 (3.0.3-1ubuntu0.1) ... 2024-04-14T15:21:14.405 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up librgw2 (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:14.413 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-logutils (0.3.3-8) ... 2024-04-14T15:21:14.531 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-kubernetes (12.0.1-1ubuntu1) ... 2024-04-14T15:21:14.631 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-pyasn1-modules (0.2.1-1) ... 2024-04-14T15:21:14.681 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-tempora (4.1.2-1) ... 2024-04-14T15:21:14.924 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-04-14T15:21:14.940 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-simplegeneric (0.8.1-3) ... 2024-04-14T15:21:15.175 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up jq (1.6-2.1ubuntu3) ... 2024-04-14T15:21:15.191 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-prettytable (2.5.0-2) ... 2024-04-14T15:21:15.293 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-rsa (4.8-1) ... 2024-04-14T15:21:15.459 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-04-14T15:21:15.561 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-webtest (2.0.35-1) ... 2024-04-14T15:21:15.614 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-websocket (1.2.3-1) ... 2024-04-14T15:21:15.694 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-rbd (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:15.803 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up rbd-fuse (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:15.828 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-04-14T15:21:15.886 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up libonig5:amd64 (6.9.7.1-2build1) ... 2024-04-14T15:21:15.913 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-rgw (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:15.987 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-04-14T15:21:16.039 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-cephfs (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:16.165 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up ceph-common (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:16.240 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-cherrypy3 (18.6.1-4) ... 2024-04-14T15:21:16.263 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-webob (1:1.8.6-1.1) ... 2024-04-14T15:21:16.617 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-pastescript (2.0.2-4) ... 2024-04-14T15:21:16.683 INFO:teuthology.orchestra.run.smithi138.stdout:Adding group ceph....done 2024-04-14T15:21:16.889 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-jaraco.collections (3.4.0-2) ... 2024-04-14T15:21:16.893 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-pecan (1.3.3-4ubuntu2) ... 2024-04-14T15:21:17.002 INFO:teuthology.orchestra.run.smithi138.stdout:Adding system user ceph....done 2024-04-14T15:21:17.140 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-04-14T15:21:17.162 INFO:teuthology.orchestra.run.smithi138.stdout:Setting system user ceph properties....done 2024-04-14T15:21:17.176 INFO:teuthology.orchestra.run.smithi138.stdout:chown: cannot access '/var/log/ceph/*.log*': No such file or directory 2024-04-14T15:21:17.229 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-04-14T15:21:17.266 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up lua-sec:amd64 (1.0.2-1) ... 2024-04-14T15:21:17.314 INFO:teuthology.orchestra.run.smithi138.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /lib/systemd/system/ceph.target. 2024-04-14T15:21:17.355 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up librados2 (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:17.392 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-babel (2.8.0+dfsg.1-7) ... 2024-04-14T15:21:17.481 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up libsqlite3-mod-ceph (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:17.481 INFO:teuthology.orchestra.run.smithi110.stdout:update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode 2024-04-14T15:21:17.607 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up luarocks (3.8.0+dfsg1-1) ... 2024-04-14T15:21:17.662 INFO:teuthology.orchestra.run.smithi138.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/rbdmap.service -> /lib/systemd/system/rbdmap.service. 2024-04-14T15:21:17.744 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-04-14T15:21:17.853 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-pytest (6.2.5-1ubuntu2) ... 2024-04-14T15:21:17.901 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up libcephfs2 (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:18.027 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up libradosstriper1 (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:18.126 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up ceph-test (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:18.153 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-google-auth (1.5.1-3) ... 2024-04-14T15:21:18.230 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-pastedeploy (2.1.1-1) ... 2024-04-14T15:21:18.253 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up radosgw (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:18.430 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up librbd1 (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:18.506 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up lua-any (27ubuntu1) ... 2024-04-14T15:21:18.564 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up ceph-mgr-modules-core (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:18.632 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-portend (3.0.0-1) ... 2024-04-14T15:21:18.682 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up ceph-fuse (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:18.884 INFO:teuthology.orchestra.run.smithi047.stdout:Created symlink /etc/systemd/system/remote-fs.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-04-14T15:21:18.884 INFO:teuthology.orchestra.run.smithi047.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-04-14T15:21:18.891 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-14T15:21:18.965 INFO:teuthology.orchestra.run.smithi138.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-04-14T15:21:18.965 INFO:teuthology.orchestra.run.smithi138.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-04-14T15:21:19.017 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-jinja2 (3.0.3-1ubuntu0.1) ... 2024-04-14T15:21:19.351 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-pyasn1-modules (0.2.1-1) ... 2024-04-14T15:21:19.375 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up libcephfs-dev (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:19.405 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up ceph-base (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:19.486 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-rados (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:19.610 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up librgw2 (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:19.652 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-04-14T15:21:19.736 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-kubernetes (12.0.1-1ubuntu1) ... 2024-04-14T15:21:19.754 INFO:teuthology.orchestra.run.smithi138.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service -> /lib/systemd/system/ceph-crash.service. 2024-04-14T15:21:19.928 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up jq (1.6-2.1ubuntu3) ... 2024-04-14T15:21:20.029 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-rsa (4.8-1) ... 2024-04-14T15:21:20.216 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up ceph-mds (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:20.297 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-webtest (2.0.35-1) ... 2024-04-14T15:21:20.438 INFO:teuthology.orchestra.run.smithi138.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-04-14T15:21:20.438 INFO:teuthology.orchestra.run.smithi138.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-04-14T15:21:20.565 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-04-14T15:21:20.901 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up ceph-mgr (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:20.934 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-cherrypy3 (18.6.1-4) ... 2024-04-14T15:21:21.056 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-rbd (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:21.112 INFO:teuthology.orchestra.run.smithi138.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-04-14T15:21:21.112 INFO:teuthology.orchestra.run.smithi138.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-04-14T15:21:21.191 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up rbd-fuse (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:21.300 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-rgw (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:21.302 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-pastescript (2.0.2-4) ... 2024-04-14T15:21:21.409 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up python3-cephfs (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:21.535 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up ceph-common (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:21.571 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-pecan (1.3.3-4ubuntu2) ... 2024-04-14T15:21:21.585 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up ceph-osd (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:21.825 INFO:teuthology.orchestra.run.smithi138.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-04-14T15:21:21.825 INFO:teuthology.orchestra.run.smithi138.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-04-14T15:21:21.906 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-04-14T15:21:22.033 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up librados2 (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:22.087 INFO:teuthology.orchestra.run.smithi047.stdout:Adding group ceph....done 2024-04-14T15:21:22.159 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up libsqlite3-mod-ceph (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:22.263 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up ceph-mgr-k8sevents (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:22.285 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up luarocks (3.8.0+dfsg1-1) ... 2024-04-14T15:21:22.389 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up ceph-mgr-diskprediction-local (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:22.463 INFO:teuthology.orchestra.run.smithi047.stdout:Adding system user ceph....done 2024-04-14T15:21:22.566 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up ceph-mon (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:22.579 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up libcephfs2 (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:22.631 INFO:teuthology.orchestra.run.smithi047.stdout:Setting system user ceph properties....done 2024-04-14T15:21:22.650 INFO:teuthology.orchestra.run.smithi047.stdout:chown: cannot access '/var/log/ceph/*.log*': No such file or directory 2024-04-14T15:21:22.697 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up libradosstriper1 (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:22.778 INFO:teuthology.orchestra.run.smithi138.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-04-14T15:21:22.778 INFO:teuthology.orchestra.run.smithi138.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-04-14T15:21:22.794 INFO:teuthology.orchestra.run.smithi047.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /lib/systemd/system/ceph.target. 2024-04-14T15:21:22.823 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-google-auth (1.5.1-3) ... 2024-04-14T15:21:23.099 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up librbd1 (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:23.150 INFO:teuthology.orchestra.run.smithi047.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/rbdmap.service -> /lib/systemd/system/rbdmap.service. 2024-04-14T15:21:23.209 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up ceph-mgr-modules-core (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:23.249 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up ceph-mgr-cephadm (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:23.309 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up ceph-fuse (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:23.384 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up ceph (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:23.510 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up ceph-mgr-dashboard (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:23.524 INFO:teuthology.orchestra.run.smithi110.stdout:Created symlink /etc/systemd/system/remote-fs.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-04-14T15:21:23.524 INFO:teuthology.orchestra.run.smithi110.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-04-14T15:21:23.619 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up ceph-test (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:23.662 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up ceph-volume (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:23.745 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up radosgw (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:24.002 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up libcephfs-dev (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:24.024 INFO:teuthology.orchestra.run.smithi138.stdout:Processing triggers for mailcap (3.70+nmu1ubuntu1) ... 2024-04-14T15:21:24.125 INFO:teuthology.orchestra.run.smithi138.stdout:Processing triggers for libc-bin (2.35-0ubuntu3.1) ... 2024-04-14T15:21:24.128 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-rados (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:24.222 INFO:teuthology.orchestra.run.smithi047.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-04-14T15:21:24.222 INFO:teuthology.orchestra.run.smithi047.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-04-14T15:21:24.254 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up librgw2 (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:24.286 INFO:teuthology.orchestra.run.smithi138.stdout:Processing triggers for man-db (2.10.2-1) ... 2024-04-14T15:21:24.380 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-kubernetes (12.0.1-1ubuntu1) ... 2024-04-14T15:21:24.689 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up ceph-base (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:25.054 INFO:teuthology.orchestra.run.smithi047.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service -> /lib/systemd/system/ceph-crash.service. 2024-04-14T15:21:25.414 INFO:teuthology.orchestra.run.smithi138.stdout:Processing triggers for install-info (6.8-4build1) ... 2024-04-14T15:21:25.532 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up ceph-mds (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:25.534 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-rbd (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:25.660 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up rbd-fuse (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:25.768 INFO:teuthology.orchestra.run.smithi047.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-04-14T15:21:25.768 INFO:teuthology.orchestra.run.smithi047.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-04-14T15:21:25.769 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-rgw (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:25.878 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up python3-cephfs (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:25.979 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up ceph-common (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:26.095 INFO:teuthology.orchestra.run.smithi138.stderr:W: --force-yes is deprecated, use one of the options starting with --allow instead. 2024-04-14T15:21:26.101 DEBUG:teuthology.parallel:result is None 2024-04-14T15:21:26.259 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up ceph-mgr (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:26.489 INFO:teuthology.orchestra.run.smithi047.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-04-14T15:21:26.489 INFO:teuthology.orchestra.run.smithi047.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-04-14T15:21:26.522 INFO:teuthology.orchestra.run.smithi110.stdout:Adding group ceph....done 2024-04-14T15:21:26.915 INFO:teuthology.orchestra.run.smithi110.stdout:Adding system user ceph....done 2024-04-14T15:21:26.993 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up ceph-osd (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:27.084 INFO:teuthology.orchestra.run.smithi110.stdout:Setting system user ceph properties....done 2024-04-14T15:21:27.100 INFO:teuthology.orchestra.run.smithi110.stdout:chown: cannot access '/var/log/ceph/*.log*': No such file or directory 2024-04-14T15:21:27.235 INFO:teuthology.orchestra.run.smithi110.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /lib/systemd/system/ceph.target. 2024-04-14T15:21:27.269 INFO:teuthology.orchestra.run.smithi047.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-04-14T15:21:27.269 INFO:teuthology.orchestra.run.smithi047.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-04-14T15:21:27.581 INFO:teuthology.orchestra.run.smithi110.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/rbdmap.service -> /lib/systemd/system/rbdmap.service. 2024-04-14T15:21:27.736 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up ceph-mgr-k8sevents (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:27.862 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up ceph-mgr-diskprediction-local (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:28.014 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up ceph-mon (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:28.038 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up ceph-test (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:28.173 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up radosgw (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:28.395 INFO:teuthology.orchestra.run.smithi047.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-04-14T15:21:28.396 INFO:teuthology.orchestra.run.smithi047.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-04-14T15:21:28.668 INFO:teuthology.orchestra.run.smithi110.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-04-14T15:21:28.668 INFO:teuthology.orchestra.run.smithi110.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-04-14T15:21:28.876 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up ceph-mgr-cephadm (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:29.027 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up ceph (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:29.133 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up ceph-base (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:29.152 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up ceph-mgr-dashboard (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:29.304 INFO:teuthology.orchestra.run.smithi047.stdout:Setting up ceph-volume (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:29.455 INFO:teuthology.orchestra.run.smithi110.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service -> /lib/systemd/system/ceph-crash.service. 2024-04-14T15:21:29.840 INFO:teuthology.orchestra.run.smithi047.stdout:Processing triggers for mailcap (3.70+nmu1ubuntu1) ... 2024-04-14T15:21:29.935 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up ceph-mds (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:29.949 INFO:teuthology.orchestra.run.smithi047.stdout:Processing triggers for libc-bin (2.35-0ubuntu3.1) ... 2024-04-14T15:21:30.077 INFO:teuthology.orchestra.run.smithi047.stdout:Processing triggers for man-db (2.10.2-1) ... 2024-04-14T15:21:30.142 INFO:teuthology.orchestra.run.smithi110.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-04-14T15:21:30.142 INFO:teuthology.orchestra.run.smithi110.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-04-14T15:21:30.603 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up ceph-mgr (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:30.830 INFO:teuthology.orchestra.run.smithi110.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-04-14T15:21:30.830 INFO:teuthology.orchestra.run.smithi110.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-04-14T15:21:31.185 INFO:teuthology.orchestra.run.smithi047.stdout:Processing triggers for install-info (6.8-4build1) ... 2024-04-14T15:21:31.296 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up ceph-osd (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:31.570 INFO:teuthology.orchestra.run.smithi110.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-04-14T15:21:31.570 INFO:teuthology.orchestra.run.smithi110.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-04-14T15:21:31.820 INFO:teuthology.orchestra.run.smithi047.stderr:W: --force-yes is deprecated, use one of the options starting with --allow instead. 2024-04-14T15:21:31.826 DEBUG:teuthology.parallel:result is None 2024-04-14T15:21:32.073 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up ceph-mgr-k8sevents (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:32.216 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up ceph-mgr-diskprediction-local (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:32.369 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up ceph-mon (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:32.584 INFO:teuthology.orchestra.run.smithi110.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-04-14T15:21:32.584 INFO:teuthology.orchestra.run.smithi110.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-04-14T15:21:33.068 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up ceph-mgr-cephadm (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:33.236 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up ceph (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:33.362 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up ceph-mgr-dashboard (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:33.513 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up ceph-volume (19.0.0-2778-ga971fd5f-1jammy) ... 2024-04-14T15:21:33.857 INFO:teuthology.orchestra.run.smithi110.stdout:Processing triggers for mailcap (3.70+nmu1ubuntu1) ... 2024-04-14T15:21:33.966 INFO:teuthology.orchestra.run.smithi110.stdout:Processing triggers for libc-bin (2.35-0ubuntu3.1) ... 2024-04-14T15:21:34.119 INFO:teuthology.orchestra.run.smithi110.stdout:Processing triggers for man-db (2.10.2-1) ... 2024-04-14T15:21:35.252 INFO:teuthology.orchestra.run.smithi110.stdout:Processing triggers for install-info (6.8-4build1) ... 2024-04-14T15:21:35.892 INFO:teuthology.orchestra.run.smithi110.stderr:W: --force-yes is deprecated, use one of the options starting with --allow instead. 2024-04-14T15:21:35.897 DEBUG:teuthology.parallel:result is None 2024-04-14T15:21:35.897 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=a971fd5f5719038c70b817bafacd6d5400b1d888 2024-04-14T15:21:36.114 DEBUG:teuthology.orchestra.run.smithi047:> dpkg-query -W -f '${Version}' ceph 2024-04-14T15:21:36.135 INFO:teuthology.orchestra.run.smithi047.stdout:19.0.0-2778-ga971fd5f-1jammy 2024-04-14T15:21:36.135 INFO:teuthology.packaging:The installed version of ceph is 19.0.0-2778-ga971fd5f-1jammy 2024-04-14T15:21:36.136 INFO:teuthology.task.install:The correct ceph version 19.0.0-2778-ga971fd5f-1jammy is installed. 2024-04-14T15:21:36.137 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=a971fd5f5719038c70b817bafacd6d5400b1d888 2024-04-14T15:21:36.354 DEBUG:teuthology.orchestra.run.smithi110:> dpkg-query -W -f '${Version}' ceph 2024-04-14T15:21:36.373 INFO:teuthology.orchestra.run.smithi110.stdout:19.0.0-2778-ga971fd5f-1jammy 2024-04-14T15:21:36.373 INFO:teuthology.packaging:The installed version of ceph is 19.0.0-2778-ga971fd5f-1jammy 2024-04-14T15:21:36.373 INFO:teuthology.task.install:The correct ceph version 19.0.0-2778-ga971fd5f-1jammy is installed. 2024-04-14T15:21:36.375 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=a971fd5f5719038c70b817bafacd6d5400b1d888 2024-04-14T15:21:36.588 DEBUG:teuthology.orchestra.run.smithi138:> dpkg-query -W -f '${Version}' ceph 2024-04-14T15:21:36.607 INFO:teuthology.orchestra.run.smithi138.stdout:19.0.0-2778-ga971fd5f-1jammy 2024-04-14T15:21:36.607 INFO:teuthology.packaging:The installed version of ceph is 19.0.0-2778-ga971fd5f-1jammy 2024-04-14T15:21:36.607 INFO:teuthology.task.install:The correct ceph version 19.0.0-2778-ga971fd5f-1jammy is installed. 2024-04-14T15:21:36.609 INFO:teuthology.task.install.util:Shipping valgrind.supp... 2024-04-14T15:21:36.609 DEBUG:teuthology.orchestra.run.smithi047:> set -ex 2024-04-14T15:21:36.609 DEBUG:teuthology.orchestra.run.smithi047:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-04-14T15:21:36.624 DEBUG:teuthology.orchestra.run.smithi110:> set -ex 2024-04-14T15:21:36.624 DEBUG:teuthology.orchestra.run.smithi110:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-04-14T15:21:36.638 DEBUG:teuthology.orchestra.run.smithi138:> set -ex 2024-04-14T15:21:36.638 DEBUG:teuthology.orchestra.run.smithi138:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-04-14T15:21:36.661 INFO:teuthology.task.install.util:Shipping 'daemon-helper'... 2024-04-14T15:21:36.661 DEBUG:teuthology.orchestra.run.smithi047:> set -ex 2024-04-14T15:21:36.661 DEBUG:teuthology.orchestra.run.smithi047:> sudo dd of=/usr/bin/daemon-helper 2024-04-14T15:21:36.682 DEBUG:teuthology.orchestra.run.smithi047:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-04-14T15:21:36.736 DEBUG:teuthology.orchestra.run.smithi110:> set -ex 2024-04-14T15:21:36.736 DEBUG:teuthology.orchestra.run.smithi110:> sudo dd of=/usr/bin/daemon-helper 2024-04-14T15:21:36.749 DEBUG:teuthology.orchestra.run.smithi110:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-04-14T15:21:36.802 DEBUG:teuthology.orchestra.run.smithi138:> set -ex 2024-04-14T15:21:36.802 DEBUG:teuthology.orchestra.run.smithi138:> sudo dd of=/usr/bin/daemon-helper 2024-04-14T15:21:36.816 DEBUG:teuthology.orchestra.run.smithi138:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-04-14T15:21:36.868 INFO:teuthology.task.install.util:Shipping 'adjust-ulimits'... 2024-04-14T15:21:36.868 DEBUG:teuthology.orchestra.run.smithi047:> set -ex 2024-04-14T15:21:36.868 DEBUG:teuthology.orchestra.run.smithi047:> sudo dd of=/usr/bin/adjust-ulimits 2024-04-14T15:21:36.918 DEBUG:teuthology.orchestra.run.smithi047:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-04-14T15:21:36.972 DEBUG:teuthology.orchestra.run.smithi110:> set -ex 2024-04-14T15:21:36.972 DEBUG:teuthology.orchestra.run.smithi110:> sudo dd of=/usr/bin/adjust-ulimits 2024-04-14T15:21:36.985 DEBUG:teuthology.orchestra.run.smithi110:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-04-14T15:21:37.038 DEBUG:teuthology.orchestra.run.smithi138:> set -ex 2024-04-14T15:21:37.038 DEBUG:teuthology.orchestra.run.smithi138:> sudo dd of=/usr/bin/adjust-ulimits 2024-04-14T15:21:37.052 DEBUG:teuthology.orchestra.run.smithi138:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-04-14T15:21:37.104 INFO:teuthology.task.install.util:Shipping 'stdin-killer'... 2024-04-14T15:21:37.104 DEBUG:teuthology.orchestra.run.smithi047:> set -ex 2024-04-14T15:21:37.104 DEBUG:teuthology.orchestra.run.smithi047:> sudo dd of=/usr/bin/stdin-killer 2024-04-14T15:21:37.117 DEBUG:teuthology.orchestra.run.smithi047:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-04-14T15:21:37.172 DEBUG:teuthology.orchestra.run.smithi110:> set -ex 2024-04-14T15:21:37.172 DEBUG:teuthology.orchestra.run.smithi110:> sudo dd of=/usr/bin/stdin-killer 2024-04-14T15:21:37.185 DEBUG:teuthology.orchestra.run.smithi110:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-04-14T15:21:37.238 DEBUG:teuthology.orchestra.run.smithi138:> set -ex 2024-04-14T15:21:37.238 DEBUG:teuthology.orchestra.run.smithi138:> sudo dd of=/usr/bin/stdin-killer 2024-04-14T15:21:37.251 DEBUG:teuthology.orchestra.run.smithi138:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-04-14T15:21:37.303 INFO:teuthology.run_tasks:Running task cephadm... 2024-04-14T15:21:37.399 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', 'mons down', 'mon down', 'out of quorum'], 'sha1': 'a971fd5f5719038c70b817bafacd6d5400b1d888'} 2024-04-14T15:21:37.400 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 2024-04-14T15:21:37.400 INFO:tasks.cephadm:Cluster fsid is af942ef8-fa72-11ee-bc8e-c7b262605968 2024-04-14T15:21:37.400 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-04-14T15:21:37.400 INFO:tasks.cephadm:Monitor IPs: {'mon.a': '172.21.15.47', 'mon.b': '172.21.15.110', 'mon.c': '172.21.15.138'} 2024-04-14T15:21:37.400 INFO:tasks.cephadm:First mon is mon.a on smithi047 2024-04-14T15:21:37.401 INFO:tasks.cephadm:First mgr is a 2024-04-14T15:21:37.401 INFO:tasks.cephadm:Normalizing hostnames... 2024-04-14T15:21:37.401 DEBUG:teuthology.orchestra.run.smithi047:> sudo hostname $(hostname -s) 2024-04-14T15:21:37.416 DEBUG:teuthology.orchestra.run.smithi110:> sudo hostname $(hostname -s) 2024-04-14T15:21:37.430 DEBUG:teuthology.orchestra.run.smithi138:> sudo hostname $(hostname -s) 2024-04-14T15:21:37.445 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-04-14T15:21:37.445 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=a971fd5f5719038c70b817bafacd6d5400b1d888 2024-04-14T15:21:37.662 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': 'a971fd5f5719038c70b817bafacd6d5400b1d888', '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/54841/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.0.0-2778-ga971fd5f', 'node_name': '172.21.2.12+braggi12', '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-2778-ga971fd5f-1jammy'}, 'url': 'https://1.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default/', 'distro_codename': 'jammy', 'modified': '2024-04-06 21:45:50.271389', 'distro_version': '22.04', 'project': 'ceph', 'flavor': 'default', 'ref': 'main', 'chacra_url': 'https://1.chacra.ceph.com/repos/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/flavors/default/', 'archs': ['x86_64'], 'distro': 'ubuntu'}] 2024-04-14T15:21:37.876 INFO:tasks.util.chacra:got chacra host 1.chacra.ceph.com, ref main, sha1 a971fd5f5719038c70b817bafacd6d5400b1d888 from https://shaman.ceph.com/api/search/?project=ceph&distros=ubuntu%2F22.04%2Fx86_64&flavor=default&sha1=a971fd5f5719038c70b817bafacd6d5400b1d888 2024-04-14T15:21:37.878 INFO:tasks.cephadm:Discovered cachra url: https://1.chacra.ceph.com/binaries/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/x86_64/flavors/default/cephadm 2024-04-14T15:21:37.878 DEBUG:teuthology.orchestra.run.smithi047:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-14T15:21:38.403 INFO:teuthology.orchestra.run.smithi047.stdout:-rw-rw-r-- 1 ubuntu ubuntu 788795 Apr 14 15:21 /home/ubuntu/cephtest/cephadm 2024-04-14T15:21:38.403 DEBUG:teuthology.orchestra.run.smithi110:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-14T15:21:39.055 INFO:teuthology.orchestra.run.smithi110.stdout:-rw-rw-r-- 1 ubuntu ubuntu 788795 Apr 14 15:21 /home/ubuntu/cephtest/cephadm 2024-04-14T15:21:39.055 DEBUG:teuthology.orchestra.run.smithi138:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-14T15:21:39.626 INFO:teuthology.orchestra.run.smithi138.stdout:-rw-rw-r-- 1 ubuntu ubuntu 788795 Apr 14 15:21 /home/ubuntu/cephtest/cephadm 2024-04-14T15:21:39.627 DEBUG:teuthology.orchestra.run.smithi047:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-14T15:21:39.635 DEBUG:teuthology.orchestra.run.smithi110:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-14T15:21:39.642 DEBUG:teuthology.orchestra.run.smithi138:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-14T15:21:39.660 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 on all hosts... 2024-04-14T15:21:39.660 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 pull 2024-04-14T15:21:39.677 DEBUG:teuthology.orchestra.run.smithi110:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 pull 2024-04-14T15:21:39.688 DEBUG:teuthology.orchestra.run.smithi138:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 pull 2024-04-14T15:21:39.846 INFO:teuthology.orchestra.run.smithi047.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888... 2024-04-14T15:21:39.853 INFO:teuthology.orchestra.run.smithi110.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888... 2024-04-14T15:21:39.858 INFO:teuthology.orchestra.run.smithi138.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888... 2024-04-14T15:22:39.067 INFO:teuthology.orchestra.run.smithi047.stdout:{ 2024-04-14T15:22:39.067 INFO:teuthology.orchestra.run.smithi047.stdout: "ceph_version": "ceph version 19.0.0-2778-ga971fd5f (a971fd5f5719038c70b817bafacd6d5400b1d888) squid (dev)", 2024-04-14T15:22:39.067 INFO:teuthology.orchestra.run.smithi047.stdout: "image_id": "b96c509eef841460b3271f5fdd331860da87b004524f4ed59414aa3680183b53", 2024-04-14T15:22:39.067 INFO:teuthology.orchestra.run.smithi047.stdout: "repo_digests": [ 2024-04-14T15:22:39.067 INFO:teuthology.orchestra.run.smithi047.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608" 2024-04-14T15:22:39.067 INFO:teuthology.orchestra.run.smithi047.stdout: ] 2024-04-14T15:22:39.067 INFO:teuthology.orchestra.run.smithi047.stdout:} 2024-04-14T15:22:49.459 INFO:teuthology.orchestra.run.smithi138.stdout:{ 2024-04-14T15:22:49.459 INFO:teuthology.orchestra.run.smithi138.stdout: "ceph_version": "ceph version 19.0.0-2778-ga971fd5f (a971fd5f5719038c70b817bafacd6d5400b1d888) squid (dev)", 2024-04-14T15:22:49.459 INFO:teuthology.orchestra.run.smithi138.stdout: "image_id": "b96c509eef841460b3271f5fdd331860da87b004524f4ed59414aa3680183b53", 2024-04-14T15:22:49.459 INFO:teuthology.orchestra.run.smithi138.stdout: "repo_digests": [ 2024-04-14T15:22:49.459 INFO:teuthology.orchestra.run.smithi138.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608" 2024-04-14T15:22:49.459 INFO:teuthology.orchestra.run.smithi138.stdout: ] 2024-04-14T15:22:49.459 INFO:teuthology.orchestra.run.smithi138.stdout:} 2024-04-14T15:22:50.456 INFO:teuthology.orchestra.run.smithi110.stdout:{ 2024-04-14T15:22:50.456 INFO:teuthology.orchestra.run.smithi110.stdout: "ceph_version": "ceph version 19.0.0-2778-ga971fd5f (a971fd5f5719038c70b817bafacd6d5400b1d888) squid (dev)", 2024-04-14T15:22:50.456 INFO:teuthology.orchestra.run.smithi110.stdout: "image_id": "b96c509eef841460b3271f5fdd331860da87b004524f4ed59414aa3680183b53", 2024-04-14T15:22:50.456 INFO:teuthology.orchestra.run.smithi110.stdout: "repo_digests": [ 2024-04-14T15:22:50.456 INFO:teuthology.orchestra.run.smithi110.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608" 2024-04-14T15:22:50.456 INFO:teuthology.orchestra.run.smithi110.stdout: ] 2024-04-14T15:22:50.456 INFO:teuthology.orchestra.run.smithi110.stdout:} 2024-04-14T15:22:50.495 DEBUG:teuthology.orchestra.run.smithi047:> sudo mkdir -p /etc/ceph 2024-04-14T15:22:50.510 DEBUG:teuthology.orchestra.run.smithi110:> sudo mkdir -p /etc/ceph 2024-04-14T15:22:50.524 DEBUG:teuthology.orchestra.run.smithi138:> sudo mkdir -p /etc/ceph 2024-04-14T15:22:50.538 DEBUG:teuthology.orchestra.run.smithi047:> sudo chmod 777 /etc/ceph 2024-04-14T15:22:50.566 DEBUG:teuthology.orchestra.run.smithi110:> sudo chmod 777 /etc/ceph 2024-04-14T15:22:50.579 DEBUG:teuthology.orchestra.run.smithi138:> sudo chmod 777 /etc/ceph 2024-04-14T15:22:50.591 INFO:tasks.cephadm:Writing seed config... 2024-04-14T15:22:50.592 INFO:tasks.cephadm: override: [global] mon election default strategy = 1 2024-04-14T15:22:50.592 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-04-14T15:22:50.592 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-04-14T15:22:50.593 INFO:tasks.cephadm: override: [mgr] mgr/cephadm/use_agent = True 2024-04-14T15:22:50.593 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-04-14T15:22:50.593 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-04-14T15:22:50.593 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-04-14T15:22:50.593 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-04-14T15:22:50.593 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-04-14T15:22:50.593 DEBUG:teuthology.orchestra.run.smithi047:> set -ex 2024-04-14T15:22:50.594 DEBUG:teuthology.orchestra.run.smithi047:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-04-14T15:22:50.619 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 = af942ef8-fa72-11ee-bc8e-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-14T15:22:50.619 DEBUG:teuthology.orchestra.run.smithi047:mon.a> sudo journalctl -f -n 0 -u ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@mon.a.service 2024-04-14T15:22:50.664 DEBUG:teuthology.orchestra.run.smithi047:mgr.a> sudo journalctl -f -n 0 -u ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@mgr.a.service 2024-04-14T15:22:50.711 INFO:tasks.cephadm:Bootstrapping... 2024-04-14T15:22:50.712 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 -v bootstrap --fsid af942ef8-fa72-11ee-bc8e-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.47 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-04-14T15:22:50.929 INFO:teuthology.orchestra.run.smithi047.stdout:-------------------------------------------------------------------------------- 2024-04-14T15:22:50.929 INFO:teuthology.orchestra.run.smithi047.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888', '-v', 'bootstrap', '--fsid', 'af942ef8-fa72-11ee-bc8e-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.47', '--skip-admin-label'] 2024-04-14T15:22:50.929 INFO:teuthology.orchestra.run.smithi047.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-04-14T15:22:50.930 INFO:teuthology.orchestra.run.smithi047.stdout:Verifying podman|docker is present... 2024-04-14T15:22:50.930 INFO:teuthology.orchestra.run.smithi047.stdout:Verifying lvm2 is present... 2024-04-14T15:22:50.930 INFO:teuthology.orchestra.run.smithi047.stdout:Verifying time synchronization is in place... 2024-04-14T15:22:50.936 INFO:teuthology.orchestra.run.smithi047.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-04-14T15:22:50.936 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-04-14T15:22:50.941 INFO:teuthology.orchestra.run.smithi047.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-04-14T15:22:50.941 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stdout inactive 2024-04-14T15:22:50.945 INFO:teuthology.orchestra.run.smithi047.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-04-14T15:22:50.945 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-04-14T15:22:50.949 INFO:teuthology.orchestra.run.smithi047.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-04-14T15:22:50.949 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stdout inactive 2024-04-14T15:22:50.953 INFO:teuthology.orchestra.run.smithi047.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-04-14T15:22:50.953 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stdout masked 2024-04-14T15:22:50.957 INFO:teuthology.orchestra.run.smithi047.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-04-14T15:22:50.957 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stdout inactive 2024-04-14T15:22:50.961 INFO:teuthology.orchestra.run.smithi047.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-04-14T15:22:50.961 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-04-14T15:22:50.965 INFO:teuthology.orchestra.run.smithi047.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-04-14T15:22:50.965 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stdout inactive 2024-04-14T15:22:50.969 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stdout enabled 2024-04-14T15:22:50.973 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stdout active 2024-04-14T15:22:50.974 INFO:teuthology.orchestra.run.smithi047.stdout:Unit ntp.service is enabled and running 2024-04-14T15:22:50.974 INFO:teuthology.orchestra.run.smithi047.stdout:Repeating the final host check... 2024-04-14T15:22:50.974 INFO:teuthology.orchestra.run.smithi047.stdout:docker (/usr/bin/docker) is present 2024-04-14T15:22:50.974 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl is present 2024-04-14T15:22:50.974 INFO:teuthology.orchestra.run.smithi047.stdout:lvcreate is present 2024-04-14T15:22:50.977 INFO:teuthology.orchestra.run.smithi047.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-04-14T15:22:50.977 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-04-14T15:22:50.980 INFO:teuthology.orchestra.run.smithi047.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-04-14T15:22:50.980 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stdout inactive 2024-04-14T15:22:50.984 INFO:teuthology.orchestra.run.smithi047.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-04-14T15:22:50.984 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-04-14T15:22:50.987 INFO:teuthology.orchestra.run.smithi047.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-04-14T15:22:50.988 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stdout inactive 2024-04-14T15:22:50.991 INFO:teuthology.orchestra.run.smithi047.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-04-14T15:22:50.992 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stdout masked 2024-04-14T15:22:50.995 INFO:teuthology.orchestra.run.smithi047.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-04-14T15:22:50.995 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stdout inactive 2024-04-14T15:22:50.999 INFO:teuthology.orchestra.run.smithi047.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-04-14T15:22:50.999 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-04-14T15:22:51.003 INFO:teuthology.orchestra.run.smithi047.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-04-14T15:22:51.003 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stdout inactive 2024-04-14T15:22:51.007 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stdout enabled 2024-04-14T15:22:51.012 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stdout active 2024-04-14T15:22:51.012 INFO:teuthology.orchestra.run.smithi047.stdout:Unit ntp.service is enabled and running 2024-04-14T15:22:51.012 INFO:teuthology.orchestra.run.smithi047.stdout:Host looks OK 2024-04-14T15:22:51.012 INFO:teuthology.orchestra.run.smithi047.stdout:Cluster fsid: af942ef8-fa72-11ee-bc8e-c7b262605968 2024-04-14T15:22:51.012 INFO:teuthology.orchestra.run.smithi047.stdout:Acquiring lock 140324267304816 on /run/cephadm/af942ef8-fa72-11ee-bc8e-c7b262605968.lock 2024-04-14T15:22:51.012 INFO:teuthology.orchestra.run.smithi047.stdout:Lock 140324267304816 acquired on /run/cephadm/af942ef8-fa72-11ee-bc8e-c7b262605968.lock 2024-04-14T15:22:51.012 INFO:teuthology.orchestra.run.smithi047.stdout:Verifying IP 172.21.15.47 port 3300 ... 2024-04-14T15:22:51.012 INFO:teuthology.orchestra.run.smithi047.stdout:Verifying IP 172.21.15.47 port 6789 ... 2024-04-14T15:22:51.012 INFO:teuthology.orchestra.run.smithi047.stdout:Base mon IP(s) is [172.21.15.47:3300, 172.21.15.47:6789], mon addrv is [v2:172.21.15.47:3300,v1:172.21.15.47:6789] 2024-04-14T15:22:51.015 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/sbin/ip: stdout default via 172.21.15.254 dev ens1f0 2024-04-14T15:22:51.015 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/sbin/ip: stdout 172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-04-14T15:22:51.015 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/sbin/ip: stdout 172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.47 2024-04-14T15:22:51.017 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-04-14T15:22:51.017 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/sbin/ip: stdout fe80::/64 dev ens1f0 proto kernel metric 256 pref medium 2024-04-14T15:22:51.017 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev ens1f0 proto ra metric 1024 expires 1799sec hoplimit 64 pref medium 2024-04-14T15:22:51.019 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-04-14T15:22:51.019 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/sbin/ip: stdout inet6 ::1/128 scope host 2024-04-14T15:22:51.019 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-04-14T15:22:51.020 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/sbin/ip: stdout 4: ens1f0: mtu 1500 state UP qlen 1000 2024-04-14T15:22:51.020 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/sbin/ip: stdout inet6 fe80::ec4:7aff:febd:148e/64 scope link 2024-04-14T15:22:51.020 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-04-14T15:22:51.020 INFO:teuthology.orchestra.run.smithi047.stdout:Mon IP `172.21.15.47` is in CIDR network `172.21.0.0/20` 2024-04-14T15:22:51.020 INFO:teuthology.orchestra.run.smithi047.stdout:Mon IP `172.21.15.47` is in CIDR network `172.21.0.0/20` 2024-04-14T15:22:51.020 INFO:teuthology.orchestra.run.smithi047.stdout:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20'] 2024-04-14T15:22:51.021 INFO:teuthology.orchestra.run.smithi047.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-04-14T15:22:51.021 INFO:teuthology.orchestra.run.smithi047.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888... 2024-04-14T15:22:51.320 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/docker: stdout a971fd5f5719038c70b817bafacd6d5400b1d888: Pulling from ceph-ci/ceph 2024-04-14T15:22:51.320 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/docker: stdout Digest: sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608 2024-04-14T15:22:51.320 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/docker: stdout Status: Image is up to date for quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 2024-04-14T15:22:51.320 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/docker: stdout quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 2024-04-14T15:22:52.810 INFO:teuthology.orchestra.run.smithi047.stdout:ceph: stdout ceph version 19.0.0-2778-ga971fd5f (a971fd5f5719038c70b817bafacd6d5400b1d888) squid (dev) 2024-04-14T15:22:52.810 INFO:teuthology.orchestra.run.smithi047.stdout:Ceph version: ceph version 19.0.0-2778-ga971fd5f (a971fd5f5719038c70b817bafacd6d5400b1d888) squid (dev) 2024-04-14T15:22:52.810 INFO:teuthology.orchestra.run.smithi047.stdout:Extracting ceph user uid/gid from container image... 2024-04-14T15:22:54.031 INFO:teuthology.orchestra.run.smithi047.stdout:stat: stdout 167 167 2024-04-14T15:22:54.031 INFO:teuthology.orchestra.run.smithi047.stdout:Creating initial keys... 2024-04-14T15:22:55.270 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-authtool: stdout AQDO9Btm+8jZKxAAfLUiHJ5hBQuSbAhv1EywZg== 2024-04-14T15:22:56.507 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-authtool: stdout AQDP9BtmmcieOhAAbP+4JNFNiPPvP9spZzwEqQ== 2024-04-14T15:22:57.929 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-authtool: stdout AQDR9BtmH0mbFRAAw2eChXYT8ck713nFdm7Qkw== 2024-04-14T15:22:57.930 INFO:teuthology.orchestra.run.smithi047.stdout:Creating initial monmap... 2024-04-14T15:22:59.284 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-04-14T15:22:59.284 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = quincy 2024-04-14T15:22:59.284 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to af942ef8-fa72-11ee-bc8e-c7b262605968 2024-04-14T15:22:59.284 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-04-14T15:22:59.284 INFO:teuthology.orchestra.run.smithi047.stdout:monmaptool for a [v2:172.21.15.47:3300,v1:172.21.15.47:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-04-14T15:22:59.284 INFO:teuthology.orchestra.run.smithi047.stdout:setting min_mon_release = quincy 2024-04-14T15:22:59.284 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/monmaptool: set fsid to af942ef8-fa72-11ee-bc8e-c7b262605968 2024-04-14T15:22:59.284 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-04-14T15:22:59.284 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-04-14T15:22:59.285 INFO:teuthology.orchestra.run.smithi047.stdout:Creating mon... 2024-04-14T15:23:00.557 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 0 set uid:gid to 167:167 (ceph:ceph) 2024-04-14T15:23:00.557 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 1 imported monmap: 2024-04-14T15:23:00.557 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr epoch 0 2024-04-14T15:23:00.557 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr fsid af942ef8-fa72-11ee-bc8e-c7b262605968 2024-04-14T15:23:00.557 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr last_changed 2024-04-14T15:22:58.674104+0000 2024-04-14T15:23:00.557 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr created 2024-04-14T15:22:58.674104+0000 2024-04-14T15:23:00.558 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr min_mon_release 17 (quincy) 2024-04-14T15:23:00.558 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr election_strategy: 1 2024-04-14T15:23:00.558 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr 0: [v2:172.21.15.47:3300/0,v1:172.21.15.47:6789/0] mon.a 2024-04-14T15:23:00.558 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr 2024-04-14T15:23:00.558 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 0 /usr/bin/ceph-mon: set fsid to af942ef8-fa72-11ee-bc8e-c7b262605968 2024-04-14T15:23:00.558 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: RocksDB version: 7.9.2 2024-04-14T15:23:00.558 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr 2024-04-14T15:23:00.558 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Git sha 0 2024-04-14T15:23:00.558 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Compile date 2024-04-06 20:28:24 2024-04-14T15:23:00.558 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: DB SUMMARY 2024-04-14T15:23:00.558 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr 2024-04-14T15:23:00.558 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: DB Session ID: VBPNMP5CTPBPBT2BNYW4 2024-04-14T15:23:00.558 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr 2024-04-14T15:23:00.559 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-a/store.db dir, Total Num: 0, files: 2024-04-14T15:23:00.559 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr 2024-04-14T15:23:00.559 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-a/store.db: 2024-04-14T15:23:00.559 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr 2024-04-14T15:23:00.559 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.error_if_exists: 0 2024-04-14T15:23:00.559 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.create_if_missing: 1 2024-04-14T15:23:00.559 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.paranoid_checks: 1 2024-04-14T15:23:00.559 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-04-14T15:23:00.559 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-04-14T15:23:00.559 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-04-14T15:23:00.560 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.env: 0x55dd10ca7c60 2024-04-14T15:23:00.560 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.fs: PosixFileSystem 2024-04-14T15:23:00.560 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.info_log: 0x55dd130f2e60 2024-04-14T15:23:00.560 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.max_file_opening_threads: 16 2024-04-14T15:23:00.560 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.statistics: (nil) 2024-04-14T15:23:00.560 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.use_fsync: 0 2024-04-14T15:23:00.560 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.max_log_file_size: 0 2024-04-14T15:23:00.560 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-04-14T15:23:00.560 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-04-14T15:23:00.560 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.keep_log_file_num: 1000 2024-04-14T15:23:00.560 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.recycle_log_file_num: 0 2024-04-14T15:23:00.560 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.allow_fallocate: 1 2024-04-14T15:23:00.560 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.allow_mmap_reads: 0 2024-04-14T15:23:00.560 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.allow_mmap_writes: 0 2024-04-14T15:23:00.561 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.use_direct_reads: 0 2024-04-14T15:23:00.561 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-04-14T15:23:00.561 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.create_missing_column_families: 0 2024-04-14T15:23:00.561 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.db_log_dir: 2024-04-14T15:23:00.561 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.wal_dir: 2024-04-14T15:23:00.561 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-04-14T15:23:00.561 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-04-14T15:23:00.561 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-04-14T15:23:00.561 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-04-14T15:23:00.561 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-04-14T15:23:00.561 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-04-14T15:23:00.561 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.advise_random_on_open: 1 2024-04-14T15:23:00.561 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.db_write_buffer_size: 0 2024-04-14T15:23:00.561 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.write_buffer_manager: 0x55dd130c5360 2024-04-14T15:23:00.562 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-04-14T15:23:00.562 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-04-14T15:23:00.562 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-04-14T15:23:00.562 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.rate_limiter: (nil) 2024-04-14T15:23:00.562 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-04-14T15:23:00.562 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.wal_recovery_mode: 2 2024-04-14T15:23:00.562 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.enable_thread_tracking: 0 2024-04-14T15:23:00.562 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.enable_pipelined_write: 0 2024-04-14T15:23:00.562 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.unordered_write: 0 2024-04-14T15:23:00.562 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-04-14T15:23:00.562 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-04-14T15:23:00.562 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-04-14T15:23:00.562 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-04-14T15:23:00.562 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.row_cache: None 2024-04-14T15:23:00.563 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.wal_filter: None 2024-04-14T15:23:00.563 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-04-14T15:23:00.563 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.allow_ingest_behind: 0 2024-04-14T15:23:00.563 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.two_write_queues: 0 2024-04-14T15:23:00.563 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.manual_wal_flush: 0 2024-04-14T15:23:00.563 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.wal_compression: 0 2024-04-14T15:23:00.563 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.atomic_flush: 0 2024-04-14T15:23:00.563 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-04-14T15:23:00.563 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-04-14T15:23:00.563 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-04-14T15:23:00.563 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.log_readahead_size: 0 2024-04-14T15:23:00.563 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-04-14T15:23:00.563 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.best_efforts_recovery: 0 2024-04-14T15:23:00.563 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-04-14T15:23:00.563 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-04-14T15:23:00.564 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.allow_data_in_errors: 0 2024-04-14T15:23:00.564 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.db_host_id: __hostname__ 2024-04-14T15:23:00.564 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-04-14T15:23:00.564 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.max_background_jobs: 2 2024-04-14T15:23:00.564 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.max_background_compactions: -1 2024-04-14T15:23:00.564 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.max_subcompactions: 1 2024-04-14T15:23:00.564 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-04-14T15:23:00.564 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-04-14T15:23:00.564 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-04-14T15:23:00.564 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.max_total_wal_size: 0 2024-04-14T15:23:00.564 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-04-14T15:23:00.564 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-04-14T15:23:00.564 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-04-14T15:23:00.564 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-04-14T15:23:00.564 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.max_open_files: -1 2024-04-14T15:23:00.565 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.bytes_per_sync: 0 2024-04-14T15:23:00.565 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-04-14T15:23:00.565 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-04-14T15:23:00.565 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.compaction_readahead_size: 0 2024-04-14T15:23:00.565 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Options.max_background_flushes: -1 2024-04-14T15:23:00.565 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Compression algorithms supported: 2024-04-14T15:23:00.565 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-04-14T15:23:00.565 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: kZSTD supported: 0 2024-04-14T15:23:00.565 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: kXpressCompression supported: 0 2024-04-14T15:23:00.565 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: kLZ4HCCompression supported: 1 2024-04-14T15:23:00.565 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: kZlibCompression supported: 1 2024-04-14T15:23:00.565 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: kSnappyCompression supported: 1 2024-04-14T15:23:00.565 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: kLZ4Compression supported: 1 2024-04-14T15:23:00.565 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: kBZip2Compression supported: 0 2024-04-14T15:23:00.566 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-04-14T15:23:00.566 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.037+0000 7f3ce69fec80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-04-14T15:23:00.566 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: [db/db_impl/db_impl_open.cc:317] Creating manifest 1 2024-04-14T15:23:00.566 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr 2024-04-14T15:23:00.566 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000001 2024-04-14T15:23:00.566 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr 2024-04-14T15:23:00.566 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-04-14T15:23:00.566 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr 2024-04-14T15:23:00.566 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-04-14T15:23:00.566 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.merge_operator: 2024-04-14T15:23:00.566 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.compaction_filter: None 2024-04-14T15:23:00.566 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.compaction_filter_factory: None 2024-04-14T15:23:00.566 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.sst_partitioner_factory: None 2024-04-14T15:23:00.566 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-04-14T15:23:00.567 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-04-14T15:23:00.567 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55dd130f3040) 2024-04-14T15:23:00.567 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks: 1 2024-04-14T15:23:00.567 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks_with_high_priority: 0 2024-04-14T15:23:00.567 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr pin_l0_filter_and_index_blocks_in_cache: 0 2024-04-14T15:23:00.567 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr pin_top_level_index_and_filter: 1 2024-04-14T15:23:00.567 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr index_type: 0 2024-04-14T15:23:00.567 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr data_block_index_type: 0 2024-04-14T15:23:00.567 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr index_shortening: 1 2024-04-14T15:23:00.567 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr data_block_hash_table_util_ratio: 0.750000 2024-04-14T15:23:00.567 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr checksum: 4 2024-04-14T15:23:00.567 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr no_block_cache: 0 2024-04-14T15:23:00.567 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr block_cache: 0x55dd130f7090 2024-04-14T15:23:00.567 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr block_cache_name: BinnedLRUCache 2024-04-14T15:23:00.567 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr block_cache_options: 2024-04-14T15:23:00.568 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr capacity : 536870912 2024-04-14T15:23:00.568 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr num_shard_bits : 4 2024-04-14T15:23:00.568 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr strict_capacity_limit : 0 2024-04-14T15:23:00.568 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr high_pri_pool_ratio: 0.000 2024-04-14T15:23:00.568 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr block_cache_compressed: (nil) 2024-04-14T15:23:00.568 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr persistent_cache: (nil) 2024-04-14T15:23:00.568 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr block_size: 4096 2024-04-14T15:23:00.568 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr block_size_deviation: 10 2024-04-14T15:23:00.568 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr block_restart_interval: 16 2024-04-14T15:23:00.568 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr index_block_restart_interval: 1 2024-04-14T15:23:00.568 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr metadata_block_size: 4096 2024-04-14T15:23:00.568 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr partition_filters: 0 2024-04-14T15:23:00.568 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr use_delta_encoding: 1 2024-04-14T15:23:00.568 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr filter_policy: bloomfilter 2024-04-14T15:23:00.569 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr whole_key_filtering: 1 2024-04-14T15:23:00.569 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr verify_compression: 0 2024-04-14T15:23:00.569 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr read_amp_bytes_per_bit: 0 2024-04-14T15:23:00.569 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr format_version: 5 2024-04-14T15:23:00.569 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr enable_index_compression: 1 2024-04-14T15:23:00.569 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr block_align: 0 2024-04-14T15:23:00.569 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr max_auto_readahead_size: 262144 2024-04-14T15:23:00.569 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr prepopulate_block_cache: 0 2024-04-14T15:23:00.569 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr initial_auto_readahead_size: 8192 2024-04-14T15:23:00.569 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr num_file_reads_for_auto_readahead: 2 2024-04-14T15:23:00.569 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr 2024-04-14T15:23:00.569 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.write_buffer_size: 33554432 2024-04-14T15:23:00.569 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.max_write_buffer_number: 2 2024-04-14T15:23:00.569 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.compression: NoCompression 2024-04-14T15:23:00.569 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.bottommost_compression: Disabled 2024-04-14T15:23:00.570 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.prefix_extractor: nullptr 2024-04-14T15:23:00.570 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-04-14T15:23:00.570 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.num_levels: 7 2024-04-14T15:23:00.570 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-04-14T15:23:00.570 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-04-14T15:23:00.570 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-04-14T15:23:00.570 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-04-14T15:23:00.570 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-04-14T15:23:00.570 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-04-14T15:23:00.570 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-04-14T15:23:00.570 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-04-14T15:23:00.570 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-04-14T15:23:00.570 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-04-14T15:23:00.570 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-04-14T15:23:00.571 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-04-14T15:23:00.571 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-04-14T15:23:00.571 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.compression_opts.level: 32767 2024-04-14T15:23:00.571 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.compression_opts.strategy: 0 2024-04-14T15:23:00.571 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-04-14T15:23:00.571 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-04-14T15:23:00.571 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-04-14T15:23:00.571 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-04-14T15:23:00.571 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.compression_opts.enabled: false 2024-04-14T15:23:00.571 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-04-14T15:23:00.571 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-04-14T15:23:00.571 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-04-14T15:23:00.571 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-04-14T15:23:00.571 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.target_file_size_base: 67108864 2024-04-14T15:23:00.571 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-04-14T15:23:00.571 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-04-14T15:23:00.572 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-04-14T15:23:00.572 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-04-14T15:23:00.572 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-04-14T15:23:00.572 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-04-14T15:23:00.572 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-04-14T15:23:00.572 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-04-14T15:23:00.572 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-04-14T15:23:00.572 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-04-14T15:23:00.572 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-04-14T15:23:00.572 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-04-14T15:23:00.572 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-04-14T15:23:00.572 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-04-14T15:23:00.572 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.arena_block_size: 1048576 2024-04-14T15:23:00.572 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-04-14T15:23:00.572 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-04-14T15:23:00.572 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.disable_auto_compactions: 0 2024-04-14T15:23:00.573 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-04-14T15:23:00.573 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-04-14T15:23:00.573 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-04-14T15:23:00.573 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-04-14T15:23:00.573 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-04-14T15:23:00.573 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-04-14T15:23:00.573 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-04-14T15:23:00.573 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-04-14T15:23:00.573 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-04-14T15:23:00.573 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-04-14T15:23:00.573 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-04-14T15:23:00.573 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.inplace_update_support: 0 2024-04-14T15:23:00.573 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-04-14T15:23:00.573 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-04-14T15:23:00.573 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-04-14T15:23:00.574 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-04-14T15:23:00.574 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.bloom_locality: 0 2024-04-14T15:23:00.574 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.max_successive_merges: 0 2024-04-14T15:23:00.574 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-04-14T15:23:00.574 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.paranoid_file_checks: 0 2024-04-14T15:23:00.574 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.force_consistency_checks: 1 2024-04-14T15:23:00.574 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.report_bg_io_stats: 0 2024-04-14T15:23:00.574 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.ttl: 2592000 2024-04-14T15:23:00.574 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-04-14T15:23:00.574 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-04-14T15:23:00.574 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-04-14T15:23:00.574 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.enable_blob_files: false 2024-04-14T15:23:00.574 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.min_blob_size: 0 2024-04-14T15:23:00.574 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.blob_file_size: 268435456 2024-04-14T15:23:00.575 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-04-14T15:23:00.575 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-04-14T15:23:00.575 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-04-14T15:23:00.575 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-04-14T15:23:00.575 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-04-14T15:23:00.575 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.blob_file_starting_level: 0 2024-04-14T15:23:00.575 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-04-14T15:23:00.575 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 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-14T15:23:00.575 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr 2024-04-14T15:23:00.575 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-04-14T15:23:00.575 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr 2024-04-14T15:23:00.575 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 5472ca76-7f86-4463-ad61-e0103f56b38c 2024-04-14T15:23:00.575 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr 2024-04-14T15:23:00.575 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 5 2024-04-14T15:23:00.575 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr 2024-04-14T15:23:00.576 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x55dd131c0000 2024-04-14T15:23:00.576 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3ce69fec80 4 rocksdb: DB pointer 0x55dd131b0000 2024-04-14T15:23:00.576 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3cd6b60700 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-04-14T15:23:00.576 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.041+0000 7f3cd6b60700 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-04-14T15:23:00.576 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr ** DB Stats ** 2024-04-14T15:23:00.576 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-04-14T15:23:00.576 INFO:teuthology.orchestra.run.smithi047.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-14T15:23:00.576 INFO:teuthology.orchestra.run.smithi047.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-14T15:23:00.576 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-14T15:23:00.576 INFO:teuthology.orchestra.run.smithi047.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-14T15:23:00.576 INFO:teuthology.orchestra.run.smithi047.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-14T15:23:00.576 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-14T15:23:00.576 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr 2024-04-14T15:23:00.576 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-04-14T15:23:00.576 INFO:teuthology.orchestra.run.smithi047.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-14T15:23:00.577 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-04-14T15:23:00.577 INFO:teuthology.orchestra.run.smithi047.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-14T15:23:00.577 INFO:teuthology.orchestra.run.smithi047.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-14T15:23:00.577 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr 2024-04-14T15:23:00.577 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-04-14T15:23:00.577 INFO:teuthology.orchestra.run.smithi047.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-14T15:23:00.577 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-04-14T15:23:00.577 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr 2024-04-14T15:23:00.577 INFO:teuthology.orchestra.run.smithi047.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-14T15:23:00.577 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr 2024-04-14T15:23:00.577 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-04-14T15:23:00.577 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr Flush(GB): cumulative 0.000, interval 0.000 2024-04-14T15:23:00.577 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr AddFile(GB): cumulative 0.000, interval 0.000 2024-04-14T15:23:00.577 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr AddFile(Total Files): cumulative 0, interval 0 2024-04-14T15:23:00.577 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr AddFile(L0 Files): cumulative 0, interval 0 2024-04-14T15:23:00.578 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr AddFile(Keys): cumulative 0, interval 0 2024-04-14T15:23:00.578 INFO:teuthology.orchestra.run.smithi047.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-14T15:23:00.578 INFO:teuthology.orchestra.run.smithi047.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-14T15:23:00.578 INFO:teuthology.orchestra.run.smithi047.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-14T15:23:00.578 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr Block cache BinnedLRUCache@0x55dd130f7090#7 capacity: 512.00 MB usage: 0.00 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.2e-05 secs_since: 0 2024-04-14T15:23:00.578 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) 2024-04-14T15:23:00.578 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr 2024-04-14T15:23:00.578 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr ** File Read Latency Histogram By Level [default] ** 2024-04-14T15:23:00.578 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr 2024-04-14T15:23:00.578 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.045+0000 7f3ce69fec80 4 rocksdb: [db/db_impl/db_impl.cc:496] Shutdown: canceling all background work 2024-04-14T15:23:00.578 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.045+0000 7f3ce69fec80 4 rocksdb: [db/db_impl/db_impl.cc:704] Shutdown complete 2024-04-14T15:23:00.578 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-14T15:23:00.045+0000 7f3ce69fec80 0 /usr/bin/ceph-mon: created monfs at /var/lib/ceph/mon/ceph-a for mon.a 2024-04-14T15:23:00.578 INFO:teuthology.orchestra.run.smithi047.stdout:create mon.a on 2024-04-14T15:23:00.782 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stderr Removed /etc/systemd/system/multi-user.target.wants/ceph.target. 2024-04-14T15:23:00.975 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /etc/systemd/system/ceph.target. 2024-04-14T15:23:01.199 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-af942ef8-fa72-11ee-bc8e-c7b262605968.target -> /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-c7b262605968.target. 2024-04-14T15:23:01.199 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-af942ef8-fa72-11ee-bc8e-c7b262605968.target -> /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-c7b262605968.target. 2024-04-14T15:23:01.470 INFO:teuthology.orchestra.run.smithi047.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@mon.a 2024-04-14T15:23:01.470 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stderr Failed to reset failed state of unit ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@mon.a.service: Unit ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@mon.a.service not loaded. 2024-04-14T15:23:01.667 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-c7b262605968.target.wants/ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@mon.a.service -> /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@.service. 2024-04-14T15:23:01.676 INFO:teuthology.orchestra.run.smithi047.stdout:firewalld does not appear to be present 2024-04-14T15:23:01.677 INFO:teuthology.orchestra.run.smithi047.stdout:Not possible to enable service . firewalld.service is not available 2024-04-14T15:23:01.677 INFO:teuthology.orchestra.run.smithi047.stdout:Waiting for mon to start... 2024-04-14T15:23:01.677 INFO:teuthology.orchestra.run.smithi047.stdout:Waiting for mon... 2024-04-14T15:23:02.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:02 smithi047 bash[20961]: cluster 2024-04-14T15:23:02.787743+0000 mon.a (mon.0) 1 : cluster [INF] mon.a is new leader, mons a in quorum (ranks 0) 2024-04-14T15:23:03.690 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout cluster: 2024-04-14T15:23:03.691 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout id: af942ef8-fa72-11ee-bc8e-c7b262605968 2024-04-14T15:23:03.691 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-04-14T15:23:03.691 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout 2024-04-14T15:23:03.691 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout services: 2024-04-14T15:23:03.691 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum a (age 0.298584s) 2024-04-14T15:23:03.691 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-04-14T15:23:03.692 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-04-14T15:23:03.692 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout 2024-04-14T15:23:03.692 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout data: 2024-04-14T15:23:03.692 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-04-14T15:23:03.692 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-04-14T15:23:03.692 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-04-14T15:23:03.693 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout pgs: 2024-04-14T15:23:03.693 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout 2024-04-14T15:23:03.693 INFO:teuthology.orchestra.run.smithi047.stdout:mon is available 2024-04-14T15:23:03.693 INFO:teuthology.orchestra.run.smithi047.stdout:Assimilating anything we can from ceph.conf... 2024-04-14T15:23:03.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:03 smithi047 bash[20961]: cluster 2024-04-14T15:23:02.808344+0000 mon.a (mon.0) 2 : cluster [INF] mon.a is new leader, mons a in quorum (ranks 0) 2024-04-14T15:23:03.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:03 smithi047 bash[20961]: cluster 2024-04-14T15:23:02.808549+0000 mon.a (mon.0) 3 : cluster [DBG] monmap epoch 1 2024-04-14T15:23:03.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:03 smithi047 bash[20961]: cluster 2024-04-14T15:23:02.808561+0000 mon.a (mon.0) 4 : cluster [DBG] fsid af942ef8-fa72-11ee-bc8e-c7b262605968 2024-04-14T15:23:03.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:03 smithi047 bash[20961]: cluster 2024-04-14T15:23:02.808569+0000 mon.a (mon.0) 5 : cluster [DBG] last_changed 2024-04-14T15:22:58.674104+0000 2024-04-14T15:23:03.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:03 smithi047 bash[20961]: cluster 2024-04-14T15:23:02.808577+0000 mon.a (mon.0) 6 : cluster [DBG] created 2024-04-14T15:22:58.674104+0000 2024-04-14T15:23:03.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:03 smithi047 bash[20961]: cluster 2024-04-14T15:23:02.808587+0000 mon.a (mon.0) 7 : cluster [DBG] min_mon_release 19 (squid) 2024-04-14T15:23:03.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:03 smithi047 bash[20961]: cluster 2024-04-14T15:23:02.808594+0000 mon.a (mon.0) 8 : cluster [DBG] election_strategy: 1 2024-04-14T15:23:03.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:03 smithi047 bash[20961]: cluster 2024-04-14T15:23:02.808606+0000 mon.a (mon.0) 9 : cluster [DBG] 0: [v2:172.21.15.47:3300/0,v1:172.21.15.47:6789/0] mon.a 2024-04-14T15:23:03.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:03 smithi047 bash[20961]: cluster 2024-04-14T15:23:02.834505+0000 mon.a (mon.0) 10 : cluster [DBG] fsmap 2024-04-14T15:23:03.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:03 smithi047 bash[20961]: cluster 2024-04-14T15:23:02.836792+0000 mon.a (mon.0) 11 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-04-14T15:23:03.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:03 smithi047 bash[20961]: cluster 2024-04-14T15:23:02.837266+0000 mon.a (mon.0) 12 : cluster [DBG] mgrmap e1: no daemons active 2024-04-14T15:23:03.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:03 smithi047 bash[20961]: audit 2024-04-14T15:23:03.106856+0000 mon.a (mon.0) 13 : audit [DBG] from='client.? 172.21.15.47:0/3967120407' entity='client.admin' cmd=[{"prefix": "status"}]: dispatch 2024-04-14T15:23:04.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:04 smithi047 bash[20961]: audit 2024-04-14T15:23:04.667166+0000 mon.a (mon.0) 14 : audit [INF] from='client.? 172.21.15.47:0/4062921272' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-04-14T15:23:04.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:04 smithi047 bash[20961]: audit 2024-04-14T15:23:04.671558+0000 mon.a (mon.0) 15 : audit [INF] from='client.? 172.21.15.47:0/4062921272' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-04-14T15:23:05.239 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout 2024-04-14T15:23:05.239 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout [global] 2024-04-14T15:23:05.239 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout fsid = af942ef8-fa72-11ee-bc8e-c7b262605968 2024-04-14T15:23:05.239 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.47:3300,v1:172.21.15.47:6789] 2024-04-14T15:23:05.239 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-04-14T15:23:05.239 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-04-14T15:23:05.240 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-04-14T15:23:05.240 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-04-14T15:23:05.240 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout 2024-04-14T15:23:05.240 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout [mgr] 2024-04-14T15:23:05.241 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout mgr/cephadm/use_agent = True 2024-04-14T15:23:05.241 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-04-14T15:23:05.241 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout 2024-04-14T15:23:05.241 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout [osd] 2024-04-14T15:23:05.241 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-04-14T15:23:05.241 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-04-14T15:23:05.241 INFO:teuthology.orchestra.run.smithi047.stdout:Generating new minimal ceph.conf... 2024-04-14T15:23:06.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:06 smithi047 bash[20961]: audit 2024-04-14T15:23:06.183351+0000 mon.a (mon.0) 16 : audit [DBG] from='client.? 172.21.15.47:0/362587582' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:23:06.759 INFO:teuthology.orchestra.run.smithi047.stdout:Restarting the monitor... 2024-04-14T15:23:07.098 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:06 smithi047 systemd[1]: Stopping Ceph mon.a for af942ef8-fa72-11ee-bc8e-c7b262605968... 2024-04-14T15:23:07.098 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:06 smithi047 bash[20961]: debug 2024-04-14T15:23:06.909+0000 7f17db31f700 -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-14T15:23:07.098 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:06 smithi047 bash[20961]: debug 2024-04-14T15:23:06.909+0000 7f17db31f700 -1 mon.a@0(leader) e1 *** Got Signal Terminated *** 2024-04-14T15:23:07.677 INFO:teuthology.orchestra.run.smithi047.stdout:Setting public_network to 172.21.0.0/20 in mon config section 2024-04-14T15:23:07.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:07 smithi047 bash[21347]: ceph-af942ef8-fa72-11ee-bc8e-c7b262605968-mon-a 2024-04-14T15:23:07.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:07 smithi047 bash[21408]: Error response from daemon: No such container: ceph-af942ef8-fa72-11ee-bc8e-c7b262605968-mon-a 2024-04-14T15:23:07.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:07 smithi047 systemd[1]: ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@mon.a.service: Deactivated successfully. 2024-04-14T15:23:07.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:07 smithi047 systemd[1]: Stopped Ceph mon.a for af942ef8-fa72-11ee-bc8e-c7b262605968. 2024-04-14T15:23:07.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:07 smithi047 systemd[1]: Started Ceph mon.a for af942ef8-fa72-11ee-bc8e-c7b262605968. 2024-04-14T15:23:08.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.728+0000 7f5b762d5c80 0 set uid:gid to 167:167 (ceph:ceph) 2024-04-14T15:23:08.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.728+0000 7f5b762d5c80 0 ceph version 19.0.0-2778-ga971fd5f (a971fd5f5719038c70b817bafacd6d5400b1d888) squid (dev), process ceph-mon, pid 7 2024-04-14T15:23:08.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.728+0000 7f5b762d5c80 0 pidfile_write: ignore empty --pid-file 2024-04-14T15:23:08.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 0 load: jerasure load: lrc 2024-04-14T15:23:08.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: RocksDB version: 7.9.2 2024-04-14T15:23:08.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Git sha 0 2024-04-14T15:23:08.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Compile date 2024-04-06 20:28:24 2024-04-14T15:23:08.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: DB SUMMARY 2024-04-14T15:23:08.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: DB Session ID: LFEKI8FYMZL0JB2NGV5N 2024-04-14T15:23:08.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: CURRENT file: CURRENT 2024-04-14T15:23:08.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: IDENTITY file: IDENTITY 2024-04-14T15:23:08.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2024-04-14T15:23:08.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-a/store.db dir, Total Num: 1, files: 000008.sst 2024-04-14T15:23:08.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-a/store.db: 000009.log size: 89093 ; 2024-04-14T15:23:08.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.error_if_exists: 0 2024-04-14T15:23:08.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.create_if_missing: 0 2024-04-14T15:23:08.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.paranoid_checks: 1 2024-04-14T15:23:08.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-04-14T15:23:08.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-04-14T15:23:08.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-04-14T15:23:08.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.env: 0x5644af28bc60 2024-04-14T15:23:08.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.fs: PosixFileSystem 2024-04-14T15:23:08.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.info_log: 0x5644b11cfc40 2024-04-14T15:23:08.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.max_file_opening_threads: 16 2024-04-14T15:23:08.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.statistics: (nil) 2024-04-14T15:23:08.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.use_fsync: 0 2024-04-14T15:23:08.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.max_log_file_size: 0 2024-04-14T15:23:08.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-04-14T15:23:08.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-04-14T15:23:08.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.keep_log_file_num: 1000 2024-04-14T15:23:08.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.recycle_log_file_num: 0 2024-04-14T15:23:08.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.allow_fallocate: 1 2024-04-14T15:23:08.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.allow_mmap_reads: 0 2024-04-14T15:23:08.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.allow_mmap_writes: 0 2024-04-14T15:23:08.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.use_direct_reads: 0 2024-04-14T15:23:08.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-04-14T15:23:08.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.create_missing_column_families: 0 2024-04-14T15:23:08.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.db_log_dir: 2024-04-14T15:23:08.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.wal_dir: 2024-04-14T15:23:08.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-04-14T15:23:08.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-04-14T15:23:08.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-04-14T15:23:08.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-04-14T15:23:08.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-04-14T15:23:08.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-04-14T15:23:08.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.advise_random_on_open: 1 2024-04-14T15:23:08.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.db_write_buffer_size: 0 2024-04-14T15:23:08.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.write_buffer_manager: 0x5644b11a21e0 2024-04-14T15:23:08.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-04-14T15:23:08.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-04-14T15:23:08.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-04-14T15:23:08.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.rate_limiter: (nil) 2024-04-14T15:23:08.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-04-14T15:23:08.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.wal_recovery_mode: 2 2024-04-14T15:23:08.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.enable_thread_tracking: 0 2024-04-14T15:23:08.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.enable_pipelined_write: 0 2024-04-14T15:23:08.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.unordered_write: 0 2024-04-14T15:23:08.963 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-04-14T15:23:08.963 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-04-14T15:23:08.963 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-04-14T15:23:08.963 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-04-14T15:23:08.963 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.row_cache: None 2024-04-14T15:23:08.963 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.wal_filter: None 2024-04-14T15:23:08.963 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-04-14T15:23:08.963 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.allow_ingest_behind: 0 2024-04-14T15:23:08.963 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.two_write_queues: 0 2024-04-14T15:23:08.963 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.manual_wal_flush: 0 2024-04-14T15:23:08.963 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.wal_compression: 0 2024-04-14T15:23:08.963 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.atomic_flush: 0 2024-04-14T15:23:08.963 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-04-14T15:23:08.963 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-04-14T15:23:08.963 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-04-14T15:23:08.963 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.log_readahead_size: 0 2024-04-14T15:23:08.964 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-04-14T15:23:08.964 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.best_efforts_recovery: 0 2024-04-14T15:23:08.964 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-04-14T15:23:08.964 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-04-14T15:23:08.964 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.allow_data_in_errors: 0 2024-04-14T15:23:08.964 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.db_host_id: __hostname__ 2024-04-14T15:23:08.964 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-04-14T15:23:08.964 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.max_background_jobs: 2 2024-04-14T15:23:08.964 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.max_background_compactions: -1 2024-04-14T15:23:08.964 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.max_subcompactions: 1 2024-04-14T15:23:08.964 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-04-14T15:23:08.964 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-04-14T15:23:08.964 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-04-14T15:23:08.964 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.max_total_wal_size: 0 2024-04-14T15:23:08.964 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-04-14T15:23:08.965 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-04-14T15:23:08.965 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-04-14T15:23:08.965 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-04-14T15:23:08.965 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.max_open_files: -1 2024-04-14T15:23:08.965 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.bytes_per_sync: 0 2024-04-14T15:23:08.965 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-04-14T15:23:08.965 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-04-14T15:23:08.965 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.compaction_readahead_size: 0 2024-04-14T15:23:08.965 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.max_background_flushes: -1 2024-04-14T15:23:08.965 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Compression algorithms supported: 2024-04-14T15:23:08.965 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-04-14T15:23:08.965 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: kZSTD supported: 0 2024-04-14T15:23:08.965 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: kXpressCompression supported: 0 2024-04-14T15:23:08.965 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: kLZ4HCCompression supported: 1 2024-04-14T15:23:08.965 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: kZlibCompression supported: 1 2024-04-14T15:23:08.965 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: kSnappyCompression supported: 1 2024-04-14T15:23:08.966 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: kLZ4Compression supported: 1 2024-04-14T15:23:08.966 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: kBZip2Compression supported: 0 2024-04-14T15:23:08.966 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-04-14T15:23:08.966 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-04-14T15:23:08.966 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000010 2024-04-14T15:23:08.967 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-04-14T15:23:08.967 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-04-14T15:23:08.967 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.merge_operator: 2024-04-14T15:23:08.967 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.compaction_filter: None 2024-04-14T15:23:08.967 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.compaction_filter_factory: None 2024-04-14T15:23:08.967 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.sst_partitioner_factory: None 2024-04-14T15:23:08.967 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-04-14T15:23:08.968 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-04-14T15:23:08.968 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x5644b11cfe00) 2024-04-14T15:23:08.968 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: cache_index_and_filter_blocks: 1 2024-04-14T15:23:08.968 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: cache_index_and_filter_blocks_with_high_priority: 0 2024-04-14T15:23:08.968 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-04-14T15:23:08.968 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: pin_top_level_index_and_filter: 1 2024-04-14T15:23:08.968 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: index_type: 0 2024-04-14T15:23:08.968 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: data_block_index_type: 0 2024-04-14T15:23:08.968 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: index_shortening: 1 2024-04-14T15:23:08.968 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: data_block_hash_table_util_ratio: 0.750000 2024-04-14T15:23:08.968 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: checksum: 4 2024-04-14T15:23:08.968 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: no_block_cache: 0 2024-04-14T15:23:08.968 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: block_cache: 0x5644b11d3090 2024-04-14T15:23:08.968 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: block_cache_name: BinnedLRUCache 2024-04-14T15:23:08.968 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: block_cache_options: 2024-04-14T15:23:08.968 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: capacity : 536870912 2024-04-14T15:23:08.969 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: num_shard_bits : 4 2024-04-14T15:23:08.969 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: strict_capacity_limit : 0 2024-04-14T15:23:08.969 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: high_pri_pool_ratio: 0.000 2024-04-14T15:23:08.969 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: block_cache_compressed: (nil) 2024-04-14T15:23:08.969 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: persistent_cache: (nil) 2024-04-14T15:23:08.969 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: block_size: 4096 2024-04-14T15:23:08.969 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: block_size_deviation: 10 2024-04-14T15:23:08.969 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: block_restart_interval: 16 2024-04-14T15:23:08.969 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: index_block_restart_interval: 1 2024-04-14T15:23:08.969 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: metadata_block_size: 4096 2024-04-14T15:23:08.969 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: partition_filters: 0 2024-04-14T15:23:08.969 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: use_delta_encoding: 1 2024-04-14T15:23:08.969 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: filter_policy: bloomfilter 2024-04-14T15:23:08.969 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: whole_key_filtering: 1 2024-04-14T15:23:08.969 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: verify_compression: 0 2024-04-14T15:23:08.970 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: read_amp_bytes_per_bit: 0 2024-04-14T15:23:08.970 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: format_version: 5 2024-04-14T15:23:08.970 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: enable_index_compression: 1 2024-04-14T15:23:08.970 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: block_align: 0 2024-04-14T15:23:08.970 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: max_auto_readahead_size: 262144 2024-04-14T15:23:08.970 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: prepopulate_block_cache: 0 2024-04-14T15:23:08.970 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: initial_auto_readahead_size: 8192 2024-04-14T15:23:08.970 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: num_file_reads_for_auto_readahead: 2 2024-04-14T15:23:08.970 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.write_buffer_size: 33554432 2024-04-14T15:23:08.970 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.max_write_buffer_number: 2 2024-04-14T15:23:08.970 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.compression: NoCompression 2024-04-14T15:23:08.970 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.bottommost_compression: Disabled 2024-04-14T15:23:08.970 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.prefix_extractor: nullptr 2024-04-14T15:23:08.970 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-04-14T15:23:08.970 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.num_levels: 7 2024-04-14T15:23:08.970 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-04-14T15:23:08.971 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-04-14T15:23:08.971 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-04-14T15:23:08.971 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-04-14T15:23:08.971 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-04-14T15:23:08.971 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-04-14T15:23:08.971 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-04-14T15:23:08.971 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-04-14T15:23:08.971 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-04-14T15:23:08.971 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-04-14T15:23:08.971 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-04-14T15:23:08.971 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-04-14T15:23:08.971 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-04-14T15:23:08.971 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.compression_opts.level: 32767 2024-04-14T15:23:08.971 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.compression_opts.strategy: 0 2024-04-14T15:23:08.971 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-04-14T15:23:08.972 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-04-14T15:23:08.972 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-04-14T15:23:08.972 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-04-14T15:23:08.972 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.compression_opts.enabled: false 2024-04-14T15:23:08.972 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-04-14T15:23:08.972 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-04-14T15:23:08.972 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-04-14T15:23:08.972 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-04-14T15:23:08.972 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.target_file_size_base: 67108864 2024-04-14T15:23:08.972 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-04-14T15:23:08.972 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-04-14T15:23:08.972 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-04-14T15:23:08.972 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-04-14T15:23:08.972 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-04-14T15:23:08.972 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-04-14T15:23:08.972 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-04-14T15:23:08.973 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-04-14T15:23:08.973 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-04-14T15:23:08.973 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-04-14T15:23:08.973 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-04-14T15:23:08.973 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-04-14T15:23:08.973 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-04-14T15:23:08.973 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-04-14T15:23:08.973 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.arena_block_size: 1048576 2024-04-14T15:23:08.973 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-04-14T15:23:08.973 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-04-14T15:23:08.973 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.disable_auto_compactions: 0 2024-04-14T15:23:08.973 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-04-14T15:23:08.973 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-04-14T15:23:08.973 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-04-14T15:23:08.973 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-04-14T15:23:08.973 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-04-14T15:23:08.974 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-04-14T15:23:08.974 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-04-14T15:23:08.974 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-04-14T15:23:08.974 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-04-14T15:23:08.974 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-04-14T15:23:08.974 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-04-14T15:23:08.974 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.inplace_update_support: 0 2024-04-14T15:23:08.974 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-04-14T15:23:08.974 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-04-14T15:23:08.974 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-04-14T15:23:08.974 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-04-14T15:23:08.974 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.bloom_locality: 0 2024-04-14T15:23:08.974 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.max_successive_merges: 0 2024-04-14T15:23:08.974 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-04-14T15:23:08.974 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.paranoid_file_checks: 0 2024-04-14T15:23:08.975 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.force_consistency_checks: 1 2024-04-14T15:23:08.975 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.report_bg_io_stats: 0 2024-04-14T15:23:08.975 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.ttl: 2592000 2024-04-14T15:23:08.975 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-04-14T15:23:08.975 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-04-14T15:23:08.975 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-04-14T15:23:08.975 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.enable_blob_files: false 2024-04-14T15:23:08.975 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.min_blob_size: 0 2024-04-14T15:23:08.975 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.blob_file_size: 268435456 2024-04-14T15:23:08.975 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-04-14T15:23:08.975 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-04-14T15:23:08.975 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-04-14T15:23:08.975 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-04-14T15:23:08.975 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-04-14T15:23:08.975 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.blob_file_starting_level: 0 2024-04-14T15:23:08.975 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-04-14T15:23:08.976 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 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-14T15:23:08.976 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2024-04-14T15:23:08.976 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 5472ca76-7f86-4463-ad61-e0103f56b38c 2024-04-14T15:23:08.976 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1713108188739777, "job": 1, "event": "recovery_started", "wal_files": [9]} 2024-04-14T15:23:08.976 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.732+0000 7f5b762d5c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2024-04-14T15:23:08.976 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.736+0000 7f5b762d5c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1713108188740999, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 85710, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 258, "table_properties": {"data_size": 83857, "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": 78064, "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": 1713108188, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "5472ca76-7f86-4463-ad61-e0103f56b38c", "db_session_id": "LFEKI8FYMZL0JB2NGV5N", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2024-04-14T15:23:08.976 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.736+0000 7f5b762d5c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1713108188741103, "job": 1, "event": "recovery_finished"} 2024-04-14T15:23:08.976 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.736+0000 7f5b762d5c80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 15 2024-04-14T15:23:08.976 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.736+0000 7f5b762d5c80 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-14T15:23:08.976 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.736+0000 7f5b762d5c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x5644b12c6000 2024-04-14T15:23:08.976 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.736+0000 7f5b762d5c80 4 rocksdb: DB pointer 0x5644b12b0000 2024-04-14T15:23:08.976 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.736+0000 7f5b64a2f700 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-04-14T15:23:08.976 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.736+0000 7f5b64a2f700 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-04-14T15:23:08.976 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: ** DB Stats ** 2024-04-14T15:23:08.976 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: Uptime(secs): 0.0 total, 0.0 interval 2024-04-14T15:23:08.977 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: 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-14T15:23:08.977 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-14T15:23:08.977 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-14T15:23:08.977 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: 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-14T15:23:08.977 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-14T15:23:08.977 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-14T15:23:08.977 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: ** Compaction Stats [default] ** 2024-04-14T15:23:08.977 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: 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-14T15:23:08.977 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-04-14T15:23:08.977 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: L0 2/0 85.56 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 115.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-14T15:23:08.977 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: Sum 2/0 85.56 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 115.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-14T15:23:08.977 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 115.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-14T15:23:08.977 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: ** Compaction Stats [default] ** 2024-04-14T15:23:08.977 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: 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-14T15:23:08.977 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-04-14T15:23:08.978 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 115.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-14T15:23:08.978 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-04-14T15:23:08.978 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: Uptime(secs): 0.0 total, 0.0 interval 2024-04-14T15:23:08.978 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: Flush(GB): cumulative 0.000, interval 0.000 2024-04-14T15:23:08.978 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: AddFile(GB): cumulative 0.000, interval 0.000 2024-04-14T15:23:08.978 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: AddFile(Total Files): cumulative 0, interval 0 2024-04-14T15:23:08.978 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: AddFile(L0 Files): cumulative 0, interval 0 2024-04-14T15:23:08.978 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: AddFile(Keys): cumulative 0, interval 0 2024-04-14T15:23:08.978 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: Cumulative compaction: 0.00 GB write, 20.97 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-14T15:23:08.978 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: Interval compaction: 0.00 GB write, 20.97 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-14T15:23:08.978 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: 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-14T15:23:08.978 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: Block cache BinnedLRUCache@0x5644b11d3090#7 capacity: 512.00 MB usage: 1.19 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.1e-05 secs_since: 0 2024-04-14T15:23:08.978 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: 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-14T15:23:08.978 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: ** File Read Latency Histogram By Level [default] ** 2024-04-14T15:23:08.979 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.736+0000 7f5b762d5c80 0 starting mon.a rank 0 at public addrs [v2:172.21.15.47:3300/0,v1:172.21.15.47:6789/0] at bind addrs [v2:172.21.15.47:3300/0,v1:172.21.15.47:6789/0] mon_data /var/lib/ceph/mon/ceph-a fsid af942ef8-fa72-11ee-bc8e-c7b262605968 2024-04-14T15:23:08.979 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.740+0000 7f5b762d5c80 1 mon.a@-1(???) e1 preinit fsid af942ef8-fa72-11ee-bc8e-c7b262605968 2024-04-14T15:23:08.979 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.740+0000 7f5b762d5c80 0 mon.a@-1(???).mds e1 new map 2024-04-14T15:23:08.979 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.740+0000 7f5b762d5c80 0 mon.a@-1(???).mds e1 print_map 2024-04-14T15:23:08.979 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: e1 2024-04-14T15:23:08.979 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: enable_multiple, ever_enabled_multiple: 1,1 2024-04-14T15:23:08.979 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: 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-14T15:23:08.979 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: legacy client fscid: -1 2024-04-14T15:23:08.979 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: 2024-04-14T15:23:08.979 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: No filesystems configured 2024-04-14T15:23:08.979 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.740+0000 7f5b762d5c80 0 mon.a@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-04-14T15:23:08.979 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.740+0000 7f5b762d5c80 0 mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-04-14T15:23:08.979 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.740+0000 7f5b762d5c80 0 mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-04-14T15:23:08.980 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.740+0000 7f5b762d5c80 0 mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-04-14T15:23:08.980 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: debug 2024-04-14T15:23:08.740+0000 7f5b762d5c80 1 mon.a@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-04-14T15:23:08.980 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: cluster 2024-04-14T15:23:08.768358+0000 mon.a (mon.0) 1 : cluster [INF] mon.a is new leader, mons a in quorum (ranks 0) 2024-04-14T15:23:08.980 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: cluster 2024-04-14T15:23:08.768435+0000 mon.a (mon.0) 2 : cluster [DBG] monmap epoch 1 2024-04-14T15:23:08.980 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: cluster 2024-04-14T15:23:08.768447+0000 mon.a (mon.0) 3 : cluster [DBG] fsid af942ef8-fa72-11ee-bc8e-c7b262605968 2024-04-14T15:23:08.980 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: cluster 2024-04-14T15:23:08.768468+0000 mon.a (mon.0) 4 : cluster [DBG] last_changed 2024-04-14T15:22:58.674104+0000 2024-04-14T15:23:08.980 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: cluster 2024-04-14T15:23:08.768476+0000 mon.a (mon.0) 5 : cluster [DBG] created 2024-04-14T15:22:58.674104+0000 2024-04-14T15:23:08.980 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: cluster 2024-04-14T15:23:08.768484+0000 mon.a (mon.0) 6 : cluster [DBG] min_mon_release 19 (squid) 2024-04-14T15:23:08.980 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: cluster 2024-04-14T15:23:08.768497+0000 mon.a (mon.0) 7 : cluster [DBG] election_strategy: 1 2024-04-14T15:23:08.980 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: cluster 2024-04-14T15:23:08.768506+0000 mon.a (mon.0) 8 : cluster [DBG] 0: [v2:172.21.15.47:3300/0,v1:172.21.15.47:6789/0] mon.a 2024-04-14T15:23:08.980 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: cluster 2024-04-14T15:23:08.769094+0000 mon.a (mon.0) 9 : cluster [DBG] fsmap 2024-04-14T15:23:08.980 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: cluster 2024-04-14T15:23:08.769134+0000 mon.a (mon.0) 10 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-04-14T15:23:08.980 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:08 smithi047 bash[21449]: cluster 2024-04-14T15:23:08.769552+0000 mon.a (mon.0) 11 : cluster [DBG] mgrmap e1: no daemons active 2024-04-14T15:23:09.569 INFO:teuthology.orchestra.run.smithi047.stdout:Wrote config to /etc/ceph/ceph.conf 2024-04-14T15:23:09.595 INFO:teuthology.orchestra.run.smithi047.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-04-14T15:23:09.595 INFO:teuthology.orchestra.run.smithi047.stdout:Creating mgr... 2024-04-14T15:23:09.596 INFO:teuthology.orchestra.run.smithi047.stdout:Verifying port 0.0.0.0:9283 ... 2024-04-14T15:23:09.596 INFO:teuthology.orchestra.run.smithi047.stdout:Verifying port 0.0.0.0:8765 ... 2024-04-14T15:23:09.903 INFO:teuthology.orchestra.run.smithi047.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@mgr.a 2024-04-14T15:23:09.903 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stderr Failed to reset failed state of unit ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@mgr.a.service: Unit ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@mgr.a.service not loaded. 2024-04-14T15:23:09.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:09 smithi047 systemd[1]: /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-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-14T15:23:10.104 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-c7b262605968.target.wants/ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@mgr.a.service -> /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@.service. 2024-04-14T15:23:10.113 INFO:teuthology.orchestra.run.smithi047.stdout:firewalld does not appear to be present 2024-04-14T15:23:10.113 INFO:teuthology.orchestra.run.smithi047.stdout:Not possible to enable service . firewalld.service is not available 2024-04-14T15:23:10.113 INFO:teuthology.orchestra.run.smithi047.stdout:firewalld does not appear to be present 2024-04-14T15:23:10.113 INFO:teuthology.orchestra.run.smithi047.stdout:Not possible to open ports <[9283, 8765]>. firewalld.service is not available 2024-04-14T15:23:10.113 INFO:teuthology.orchestra.run.smithi047.stdout:Waiting for mgr to start... 2024-04-14T15:23:10.113 INFO:teuthology.orchestra.run.smithi047.stdout:Waiting for mgr... 2024-04-14T15:23:10.370 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:09 smithi047 bash[21449]: audit 2024-04-14T15:23:08.962239+0000 mon.a (mon.0) 12 : audit [INF] from='client.? 172.21.15.47:0/3637680871' entity='client.admin' 2024-04-14T15:23:10.371 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:10 smithi047 systemd[1]: /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-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-14T15:23:11.457 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:11 smithi047 bash[21702]: debug 2024-04-14T15:23:11.444+0000 7f11ab2c9200 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-04-14T15:23:11.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:11 smithi047 bash[21449]: audit 2024-04-14T15:23:11.582089+0000 mon.a (mon.0) 13 : audit [DBG] from='client.? 172.21.15.47:0/2177377101' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-14T15:23:12.230 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout 2024-04-14T15:23:12.230 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout { 2024-04-14T15:23:12.230 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "fsid": "af942ef8-fa72-11ee-bc8e-c7b262605968", 2024-04-14T15:23:12.230 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "health": { 2024-04-14T15:23:12.230 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-14T15:23:12.230 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-14T15:23:12.231 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-14T15:23:12.231 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-04-14T15:23:12.231 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-14T15:23:12.231 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-14T15:23:12.231 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout 0 2024-04-14T15:23:12.231 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout ], 2024-04-14T15:23:12.231 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-14T15:23:12.231 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "a" 2024-04-14T15:23:12.231 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout ], 2024-04-14T15:23:12.231 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "quorum_age": 2, 2024-04-14T15:23:12.231 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-14T15:23:12.231 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-14T15:23:12.231 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-14T15:23:12.231 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-14T15:23:12.232 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-04-14T15:23:12.232 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-14T15:23:12.232 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-14T15:23:12.232 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-14T15:23:12.232 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-14T15:23:12.232 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-14T15:23:12.232 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-14T15:23:12.232 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-14T15:23:12.232 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-14T15:23:12.235 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-04-14T15:23:12.235 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-14T15:23:12.235 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-14T15:23:12.235 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-14T15:23:12.235 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-14T15:23:12.236 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-14T15:23:12.236 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-14T15:23:12.236 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-14T15:23:12.236 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-14T15:23:12.236 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-14T15:23:12.236 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-04-14T15:23:12.236 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-14T15:23:12.236 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-14T15:23:12.236 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-14T15:23:12.236 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-14T15:23:12.236 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-04-14T15:23:12.236 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-14T15:23:12.236 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "available": false, 2024-04-14T15:23:12.236 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-14T15:23:12.236 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-14T15:23:12.237 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-14T15:23:12.237 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-14T15:23:12.237 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "restful" 2024-04-14T15:23:12.237 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout ], 2024-04-14T15:23:12.237 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-14T15:23:12.237 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-04-14T15:23:12.237 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-14T15:23:12.237 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-14T15:23:12.237 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "modified": "2024-04-14T15:23:02.833317+0000", 2024-04-14T15:23:12.237 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-14T15:23:12.237 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-04-14T15:23:12.237 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-14T15:23:12.237 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout } 2024-04-14T15:23:12.237 INFO:teuthology.orchestra.run.smithi047.stdout:mgr not available, waiting (1/15)... 2024-04-14T15:23:13.430 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:13 smithi047 bash[21702]: debug 2024-04-14T15:23:13.076+0000 7f11ab2c9200 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-04-14T15:23:13.445 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:13 smithi047 bash[21702]: debug 2024-04-14T15:23:13.172+0000 7f11ab2c9200 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-04-14T15:23:13.445 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:13 smithi047 bash[21702]: debug 2024-04-14T15:23:13.428+0000 7f11ab2c9200 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-04-14T15:23:14.708 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:14 smithi047 bash[21702]: debug 2024-04-14T15:23:14.256+0000 7f11ab2c9200 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-04-14T15:23:14.708 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:14 smithi047 bash[21702]: debug 2024-04-14T15:23:14.368+0000 7f11ab2c9200 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-04-14T15:23:14.708 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:14 smithi047 bash[21702]: debug 2024-04-14T15:23:14.472+0000 7f11ab2c9200 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-04-14T15:23:15.208 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:14 smithi047 bash[21702]: debug 2024-04-14T15:23:14.840+0000 7f11ab2c9200 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-04-14T15:23:15.208 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:14 smithi047 bash[21702]: debug 2024-04-14T15:23:14.956+0000 7f11ab2c9200 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-04-14T15:23:15.208 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:15 smithi047 bash[21702]: debug 2024-04-14T15:23:15.064+0000 7f11ab2c9200 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-04-14T15:23:15.685 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:15 smithi047 bash[21449]: audit 2024-04-14T15:23:15.389579+0000 mon.a (mon.0) 14 : audit [DBG] from='client.? 172.21.15.47:0/908935039' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-14T15:23:15.686 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:15 smithi047 bash[21702]: debug 2024-04-14T15:23:15.436+0000 7f11ab2c9200 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-04-14T15:23:16.077 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout 2024-04-14T15:23:16.077 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout { 2024-04-14T15:23:16.077 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "fsid": "af942ef8-fa72-11ee-bc8e-c7b262605968", 2024-04-14T15:23:16.077 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "health": { 2024-04-14T15:23:16.078 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-14T15:23:16.078 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-14T15:23:16.078 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-14T15:23:16.078 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-04-14T15:23:16.078 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-14T15:23:16.078 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-14T15:23:16.078 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout 0 2024-04-14T15:23:16.078 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout ], 2024-04-14T15:23:16.078 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-14T15:23:16.078 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "a" 2024-04-14T15:23:16.078 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout ], 2024-04-14T15:23:16.078 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "quorum_age": 6, 2024-04-14T15:23:16.078 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-14T15:23:16.078 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-14T15:23:16.078 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-14T15:23:16.079 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-14T15:23:16.079 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-04-14T15:23:16.079 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-14T15:23:16.079 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-14T15:23:16.079 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-14T15:23:16.079 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-14T15:23:16.079 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-14T15:23:16.079 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-14T15:23:16.079 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-14T15:23:16.079 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-14T15:23:16.082 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-04-14T15:23:16.082 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-14T15:23:16.082 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-14T15:23:16.083 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-14T15:23:16.083 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-14T15:23:16.083 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-14T15:23:16.083 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-14T15:23:16.083 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-14T15:23:16.083 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-14T15:23:16.083 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-14T15:23:16.083 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-04-14T15:23:16.083 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-14T15:23:16.083 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-14T15:23:16.083 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-14T15:23:16.083 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-14T15:23:16.083 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-04-14T15:23:16.083 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-14T15:23:16.083 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "available": false, 2024-04-14T15:23:16.084 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-14T15:23:16.084 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-14T15:23:16.084 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-14T15:23:16.084 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-14T15:23:16.084 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "restful" 2024-04-14T15:23:16.084 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout ], 2024-04-14T15:23:16.084 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-14T15:23:16.084 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-04-14T15:23:16.084 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-14T15:23:16.084 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-14T15:23:16.084 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "modified": "2024-04-14T15:23:02.833317+0000", 2024-04-14T15:23:16.084 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-14T15:23:16.084 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-04-14T15:23:16.084 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-14T15:23:16.084 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout } 2024-04-14T15:23:16.085 INFO:teuthology.orchestra.run.smithi047.stdout:mgr not available, waiting (2/15)... 2024-04-14T15:23:16.208 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:15 smithi047 bash[21702]: debug 2024-04-14T15:23:15.684+0000 7f11ab2c9200 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-04-14T15:23:16.208 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:15 smithi047 bash[21702]: debug 2024-04-14T15:23:15.952+0000 7f11ab2c9200 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-04-14T15:23:16.208 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:16 smithi047 bash[21702]: debug 2024-04-14T15:23:16.072+0000 7f11ab2c9200 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-04-14T15:23:16.708 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:16 smithi047 bash[21702]: debug 2024-04-14T15:23:16.352+0000 7f11ab2c9200 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-04-14T15:23:17.146 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:16 smithi047 bash[21702]: debug 2024-04-14T15:23:16.776+0000 7f11ab2c9200 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-04-14T15:23:17.146 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:17 smithi047 bash[21702]: debug 2024-04-14T15:23:17.020+0000 7f11ab2c9200 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-04-14T15:23:17.146 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:17 smithi047 bash[21702]: debug 2024-04-14T15:23:17.144+0000 7f11ab2c9200 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-04-14T15:23:17.708 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:17 smithi047 bash[21702]: debug 2024-04-14T15:23:17.400+0000 7f11ab2c9200 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-04-14T15:23:18.708 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:18 smithi047 bash[21702]: debug 2024-04-14T15:23:18.439+0000 7f11ab2c9200 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-04-14T15:23:18.708 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:18 smithi047 bash[21702]: debug 2024-04-14T15:23:18.559+0000 7f11ab2c9200 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-04-14T15:23:19.139 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:18 smithi047 bash[21702]: debug 2024-04-14T15:23:18.875+0000 7f11ab2c9200 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-04-14T15:23:19.140 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:19 smithi047 bash[21702]: debug 2024-04-14T15:23:18.995+0000 7f11ab2c9200 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-04-14T15:23:19.458 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:19 smithi047 bash[21449]: audit 2024-04-14T15:23:19.130054+0000 mon.a (mon.0) 15 : audit [DBG] from='client.? 172.21.15.47:0/4259858512' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-14T15:23:19.767 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout 2024-04-14T15:23:19.767 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout { 2024-04-14T15:23:19.767 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "fsid": "af942ef8-fa72-11ee-bc8e-c7b262605968", 2024-04-14T15:23:19.767 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "health": { 2024-04-14T15:23:19.768 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-14T15:23:19.768 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-14T15:23:19.768 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-14T15:23:19.768 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-04-14T15:23:19.768 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-14T15:23:19.768 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-14T15:23:19.768 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout 0 2024-04-14T15:23:19.768 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout ], 2024-04-14T15:23:19.768 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-14T15:23:19.768 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "a" 2024-04-14T15:23:19.768 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout ], 2024-04-14T15:23:19.768 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "quorum_age": 10, 2024-04-14T15:23:19.768 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-14T15:23:19.768 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-14T15:23:19.768 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-14T15:23:19.768 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-14T15:23:19.768 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-04-14T15:23:19.769 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-14T15:23:19.769 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-14T15:23:19.769 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-14T15:23:19.769 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-14T15:23:19.769 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-14T15:23:19.769 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-14T15:23:19.769 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-14T15:23:19.769 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-14T15:23:19.772 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-04-14T15:23:19.772 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-14T15:23:19.772 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-14T15:23:19.772 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-14T15:23:19.772 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-14T15:23:19.772 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-14T15:23:19.772 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-14T15:23:19.773 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-14T15:23:19.773 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-14T15:23:19.773 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-14T15:23:19.773 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-04-14T15:23:19.773 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-14T15:23:19.773 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-14T15:23:19.773 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-14T15:23:19.773 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-14T15:23:19.773 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-04-14T15:23:19.773 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-14T15:23:19.773 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "available": false, 2024-04-14T15:23:19.773 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-14T15:23:19.773 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-14T15:23:19.773 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-14T15:23:19.773 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-14T15:23:19.773 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "restful" 2024-04-14T15:23:19.773 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout ], 2024-04-14T15:23:19.774 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-14T15:23:19.774 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-04-14T15:23:19.774 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-14T15:23:19.774 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-14T15:23:19.774 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "modified": "2024-04-14T15:23:02.833317+0000", 2024-04-14T15:23:19.774 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-14T15:23:19.774 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-04-14T15:23:19.774 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-14T15:23:19.774 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout } 2024-04-14T15:23:19.774 INFO:teuthology.orchestra.run.smithi047.stdout:mgr not available, waiting (3/15)... 2024-04-14T15:23:19.958 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:19 smithi047 bash[21702]: debug 2024-04-14T15:23:19.471+0000 7f11ab2c9200 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-04-14T15:23:19.958 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:19 smithi047 bash[21702]: debug 2024-04-14T15:23:19.595+0000 7f11ab2c9200 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-04-14T15:23:20.458 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:20 smithi047 bash[21449]: cluster 2024-04-14T15:23:19.617929+0000 mon.a (mon.0) 16 : cluster [INF] Activating manager daemon a 2024-04-14T15:23:20.459 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:20 smithi047 bash[21449]: cluster 2024-04-14T15:23:19.625358+0000 mon.a (mon.0) 17 : cluster [DBG] mgrmap e2: a(active, starting, since 0.00791014s) 2024-04-14T15:23:20.459 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:20 smithi047 bash[21449]: audit 2024-04-14T15:23:19.627164+0000 mon.a (mon.0) 18 : audit [DBG] from='mgr.14100 172.21.15.47:0/201018661' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-14T15:23:20.459 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:20 smithi047 bash[21449]: audit 2024-04-14T15:23:19.627490+0000 mon.a (mon.0) 19 : audit [DBG] from='mgr.14100 172.21.15.47:0/201018661' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-14T15:23:20.459 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:20 smithi047 bash[21449]: audit 2024-04-14T15:23:19.627980+0000 mon.a (mon.0) 20 : audit [DBG] from='mgr.14100 172.21.15.47:0/201018661' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-14T15:23:20.459 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:20 smithi047 bash[21449]: audit 2024-04-14T15:23:19.628595+0000 mon.a (mon.0) 21 : audit [DBG] from='mgr.14100 172.21.15.47:0/201018661' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-14T15:23:20.459 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:20 smithi047 bash[21449]: audit 2024-04-14T15:23:19.629239+0000 mon.a (mon.0) 22 : audit [DBG] from='mgr.14100 172.21.15.47:0/201018661' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-04-14T15:23:20.459 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:20 smithi047 bash[21449]: cluster 2024-04-14T15:23:19.637118+0000 mon.a (mon.0) 23 : cluster [INF] Manager daemon a is now available 2024-04-14T15:23:20.459 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:20 smithi047 bash[21449]: audit 2024-04-14T15:23:19.649385+0000 mon.a (mon.0) 24 : audit [INF] from='mgr.14100 172.21.15.47:0/201018661' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-04-14T15:23:20.459 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:20 smithi047 bash[21449]: audit 2024-04-14T15:23:19.651901+0000 mon.a (mon.0) 25 : audit [INF] from='mgr.14100 172.21.15.47:0/201018661' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-04-14T15:23:20.459 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:20 smithi047 bash[21449]: audit 2024-04-14T15:23:19.655652+0000 mon.a (mon.0) 26 : audit [INF] from='mgr.14100 172.21.15.47:0/201018661' entity='mgr.a' 2024-04-14T15:23:20.459 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:20 smithi047 bash[21449]: audit 2024-04-14T15:23:19.657618+0000 mon.a (mon.0) 27 : audit [INF] from='mgr.14100 172.21.15.47:0/201018661' entity='mgr.a' 2024-04-14T15:23:20.459 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:20 smithi047 bash[21449]: audit 2024-04-14T15:23:19.659363+0000 mon.a (mon.0) 28 : audit [INF] from='mgr.14100 172.21.15.47:0/201018661' entity='mgr.a' 2024-04-14T15:23:21.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:21 smithi047 bash[21449]: cluster 2024-04-14T15:23:20.631946+0000 mon.a (mon.0) 29 : cluster [DBG] mgrmap e3: a(active, since 1.01449s) 2024-04-14T15:23:23.840 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout 2024-04-14T15:23:23.840 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout { 2024-04-14T15:23:23.841 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "fsid": "af942ef8-fa72-11ee-bc8e-c7b262605968", 2024-04-14T15:23:23.841 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "health": { 2024-04-14T15:23:23.841 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-14T15:23:23.841 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-14T15:23:23.841 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-14T15:23:23.841 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-04-14T15:23:23.841 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-14T15:23:23.841 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-14T15:23:23.841 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout 0 2024-04-14T15:23:23.841 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout ], 2024-04-14T15:23:23.841 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-14T15:23:23.841 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "a" 2024-04-14T15:23:23.841 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout ], 2024-04-14T15:23:23.841 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "quorum_age": 14, 2024-04-14T15:23:23.841 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-14T15:23:23.842 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-14T15:23:23.842 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-14T15:23:23.842 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-14T15:23:23.842 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-04-14T15:23:23.842 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-14T15:23:23.842 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-14T15:23:23.842 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-14T15:23:23.842 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-14T15:23:23.842 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-14T15:23:23.842 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-14T15:23:23.842 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-14T15:23:23.842 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-14T15:23:23.842 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-04-14T15:23:23.843 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-14T15:23:23.843 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-14T15:23:23.843 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-14T15:23:23.843 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-14T15:23:23.843 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-14T15:23:23.843 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-14T15:23:23.846 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-14T15:23:23.846 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-14T15:23:23.846 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-14T15:23:23.846 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-04-14T15:23:23.846 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-14T15:23:23.846 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-14T15:23:23.846 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-14T15:23:23.846 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-14T15:23:23.846 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-04-14T15:23:23.846 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-14T15:23:23.846 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "available": true, 2024-04-14T15:23:23.846 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-14T15:23:23.846 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-14T15:23:23.847 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-14T15:23:23.847 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-14T15:23:23.847 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "restful" 2024-04-14T15:23:23.847 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout ], 2024-04-14T15:23:23.847 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-14T15:23:23.847 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-04-14T15:23:23.847 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-14T15:23:23.847 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-14T15:23:23.847 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "modified": "2024-04-14T15:23:02.833317+0000", 2024-04-14T15:23:23.847 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-14T15:23:23.847 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-04-14T15:23:23.847 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-14T15:23:23.847 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout } 2024-04-14T15:23:23.847 INFO:teuthology.orchestra.run.smithi047.stdout:mgr is available 2024-04-14T15:23:23.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:23 smithi047 bash[21449]: cluster 2024-04-14T15:23:22.628353+0000 mon.a (mon.0) 30 : cluster [DBG] mgrmap e4: a(active, since 3s) 2024-04-14T15:23:23.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:23 smithi047 bash[21449]: audit 2024-04-14T15:23:23.237564+0000 mon.a (mon.0) 31 : audit [DBG] from='client.? 172.21.15.47:0/2151979151' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-14T15:23:25.708 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:25 smithi047 bash[21449]: audit 2024-04-14T15:23:25.201139+0000 mon.a (mon.0) 32 : audit [INF] from='client.? 172.21.15.47:0/1301112045' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-04-14T15:23:25.709 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:25 smithi047 bash[21449]: audit 2024-04-14T15:23:25.205851+0000 mon.a (mon.0) 33 : audit [INF] from='client.? 172.21.15.47:0/1301112045' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-04-14T15:23:25.910 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout 2024-04-14T15:23:25.910 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout [global] 2024-04-14T15:23:25.910 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout fsid = af942ef8-fa72-11ee-bc8e-c7b262605968 2024-04-14T15:23:25.910 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-04-14T15:23:25.911 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-04-14T15:23:25.911 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-04-14T15:23:25.911 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-04-14T15:23:25.911 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout 2024-04-14T15:23:25.911 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout [mgr] 2024-04-14T15:23:25.911 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-04-14T15:23:25.911 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout 2024-04-14T15:23:25.911 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout [osd] 2024-04-14T15:23:25.911 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-04-14T15:23:25.911 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-04-14T15:23:25.911 INFO:teuthology.orchestra.run.smithi047.stdout:Enabling cephadm module... 2024-04-14T15:23:27.708 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:27 smithi047 bash[21449]: audit 2024-04-14T15:23:27.322577+0000 mon.a (mon.0) 34 : audit [INF] from='client.? 172.21.15.47:0/2110665854' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2024-04-14T15:23:27.709 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:27 smithi047 bash[21702]: ignoring --setuser ceph since I am not root 2024-04-14T15:23:27.709 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:27 smithi047 bash[21702]: ignoring --setgroup ceph since I am not root 2024-04-14T15:23:27.709 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:27 smithi047 bash[21702]: debug 2024-04-14T15:23:27.567+0000 7ff11c1a6200 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-04-14T15:23:28.677 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:28 smithi047 bash[21449]: audit 2024-04-14T15:23:27.374208+0000 mon.a (mon.0) 35 : audit [INF] from='client.? 172.21.15.47:0/2110665854' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-04-14T15:23:28.677 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:28 smithi047 bash[21449]: cluster 2024-04-14T15:23:27.379514+0000 mon.a (mon.0) 36 : cluster [DBG] mgrmap e5: a(active, since 7s) 2024-04-14T15:23:29.458 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:29 smithi047 bash[21449]: audit 2024-04-14T15:23:29.378292+0000 mon.a (mon.0) 37 : audit [DBG] from='client.? 172.21.15.47:0/2739091020' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-04-14T15:23:29.459 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:29 smithi047 bash[21702]: debug 2024-04-14T15:23:29.199+0000 7ff11c1a6200 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-04-14T15:23:29.459 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:29 smithi047 bash[21702]: debug 2024-04-14T15:23:29.299+0000 7ff11c1a6200 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-04-14T15:23:29.959 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:29 smithi047 bash[21702]: debug 2024-04-14T15:23:29.559+0000 7ff11c1a6200 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-04-14T15:23:29.978 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout { 2024-04-14T15:23:29.978 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "epoch": 5, 2024-04-14T15:23:29.978 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "available": true, 2024-04-14T15:23:29.978 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-04-14T15:23:29.978 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-04-14T15:23:29.978 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout } 2024-04-14T15:23:29.978 INFO:teuthology.orchestra.run.smithi047.stdout:Waiting for the mgr to restart... 2024-04-14T15:23:29.978 INFO:teuthology.orchestra.run.smithi047.stdout:Waiting for mgr epoch 5... 2024-04-14T15:23:30.639 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:30 smithi047 bash[21702]: debug 2024-04-14T15:23:30.387+0000 7ff11c1a6200 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-04-14T15:23:30.639 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:30 smithi047 bash[21702]: debug 2024-04-14T15:23:30.503+0000 7ff11c1a6200 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-04-14T15:23:30.640 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:30 smithi047 bash[21702]: debug 2024-04-14T15:23:30.611+0000 7ff11c1a6200 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-04-14T15:23:31.459 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:30 smithi047 bash[21702]: debug 2024-04-14T15:23:30.983+0000 7ff11c1a6200 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-04-14T15:23:31.459 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:31 smithi047 bash[21702]: debug 2024-04-14T15:23:31.103+0000 7ff11c1a6200 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-04-14T15:23:31.459 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:31 smithi047 bash[21702]: debug 2024-04-14T15:23:31.211+0000 7ff11c1a6200 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-04-14T15:23:31.959 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:31 smithi047 bash[21702]: debug 2024-04-14T15:23:31.582+0000 7ff11c1a6200 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-04-14T15:23:31.959 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:31 smithi047 bash[21702]: debug 2024-04-14T15:23:31.826+0000 7ff11c1a6200 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-04-14T15:23:32.459 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:32 smithi047 bash[21702]: debug 2024-04-14T15:23:32.098+0000 7ff11c1a6200 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-04-14T15:23:32.459 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:32 smithi047 bash[21702]: debug 2024-04-14T15:23:32.218+0000 7ff11c1a6200 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-04-14T15:23:32.926 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:32 smithi047 bash[21702]: debug 2024-04-14T15:23:32.502+0000 7ff11c1a6200 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-04-14T15:23:33.209 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:32 smithi047 bash[21702]: debug 2024-04-14T15:23:32.926+0000 7ff11c1a6200 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-04-14T15:23:33.209 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:33 smithi047 bash[21702]: debug 2024-04-14T15:23:33.170+0000 7ff11c1a6200 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-04-14T15:23:33.551 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:33 smithi047 bash[21702]: debug 2024-04-14T15:23:33.294+0000 7ff11c1a6200 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-04-14T15:23:33.959 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:33 smithi047 bash[21702]: debug 2024-04-14T15:23:33.550+0000 7ff11c1a6200 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-04-14T15:23:34.959 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:34 smithi047 bash[21702]: debug 2024-04-14T15:23:34.590+0000 7ff11c1a6200 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-04-14T15:23:34.959 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:34 smithi047 bash[21702]: debug 2024-04-14T15:23:34.710+0000 7ff11c1a6200 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-04-14T15:23:35.459 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:35 smithi047 bash[21702]: debug 2024-04-14T15:23:35.018+0000 7ff11c1a6200 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-04-14T15:23:35.459 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:35 smithi047 bash[21702]: debug 2024-04-14T15:23:35.134+0000 7ff11c1a6200 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-04-14T15:23:35.959 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:35 smithi047 bash[21702]: debug 2024-04-14T15:23:35.602+0000 7ff11c1a6200 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-04-14T15:23:35.959 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:35 smithi047 bash[21702]: debug 2024-04-14T15:23:35.726+0000 7ff11c1a6200 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-04-14T15:23:35.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:35 smithi047 bash[21449]: cluster 2024-04-14T15:23:35.750103+0000 mon.a (mon.0) 38 : cluster [INF] Active manager daemon a restarted 2024-04-14T15:23:35.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:35 smithi047 bash[21449]: cluster 2024-04-14T15:23:35.750545+0000 mon.a (mon.0) 39 : cluster [INF] Activating manager daemon a 2024-04-14T15:23:35.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:35 smithi047 bash[21449]: cluster 2024-04-14T15:23:35.757348+0000 mon.a (mon.0) 40 : cluster [DBG] osdmap e2: 0 total, 0 up, 0 in 2024-04-14T15:23:35.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:35 smithi047 bash[21449]: cluster 2024-04-14T15:23:35.757612+0000 mon.a (mon.0) 41 : cluster [DBG] mgrmap e6: a(active, starting, since 0.00724389s) 2024-04-14T15:23:35.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:35 smithi047 bash[21449]: audit 2024-04-14T15:23:35.759159+0000 mon.a (mon.0) 42 : audit [DBG] from='mgr.14120 172.21.15.47:0/1900464280' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-14T15:23:35.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:35 smithi047 bash[21449]: audit 2024-04-14T15:23:35.760380+0000 mon.a (mon.0) 43 : audit [DBG] from='mgr.14120 172.21.15.47:0/1900464280' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-04-14T15:23:35.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:35 smithi047 bash[21449]: audit 2024-04-14T15:23:35.761561+0000 mon.a (mon.0) 44 : audit [DBG] from='mgr.14120 172.21.15.47:0/1900464280' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-14T15:23:35.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:35 smithi047 bash[21449]: audit 2024-04-14T15:23:35.761942+0000 mon.a (mon.0) 45 : audit [DBG] from='mgr.14120 172.21.15.47:0/1900464280' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-14T15:23:35.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:35 smithi047 bash[21449]: audit 2024-04-14T15:23:35.762334+0000 mon.a (mon.0) 46 : audit [DBG] from='mgr.14120 172.21.15.47:0/1900464280' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-14T15:23:35.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:35 smithi047 bash[21449]: cluster 2024-04-14T15:23:35.790330+0000 mon.a (mon.0) 47 : cluster [INF] Manager daemon a is now available 2024-04-14T15:23:36.811 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:36 smithi047 bash[21449]: cephadm 2024-04-14T15:23:35.810915+0000 mgr.a (mgr.14120) 1 : cephadm [INF] Found migration_current of "None". Setting to last migration. 2024-04-14T15:23:36.811 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:36 smithi047 bash[21449]: audit 2024-04-14T15:23:35.813043+0000 mon.a (mon.0) 48 : audit [INF] from='mgr.14120 172.21.15.47:0/1900464280' entity='mgr.a' 2024-04-14T15:23:36.811 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:36 smithi047 bash[21449]: audit 2024-04-14T15:23:35.815398+0000 mon.a (mon.0) 49 : audit [INF] from='mgr.14120 172.21.15.47:0/1900464280' entity='mgr.a' 2024-04-14T15:23:36.811 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:36 smithi047 bash[21449]: audit 2024-04-14T15:23:35.817795+0000 mon.a (mon.0) 50 : audit [INF] from='mgr.14120 172.21.15.47:0/1900464280' entity='mgr.a' 2024-04-14T15:23:36.811 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:36 smithi047 bash[21449]: audit 2024-04-14T15:23:35.820733+0000 mon.a (mon.0) 51 : audit [DBG] from='mgr.14120 172.21.15.47:0/1900464280' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:23:36.811 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:36 smithi047 bash[21449]: audit 2024-04-14T15:23:35.825107+0000 mon.a (mon.0) 52 : audit [DBG] from='mgr.14120 172.21.15.47:0/1900464280' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:23:36.811 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:36 smithi047 bash[21449]: audit 2024-04-14T15:23:35.837068+0000 mon.a (mon.0) 53 : audit [INF] from='mgr.14120 172.21.15.47:0/1900464280' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-04-14T15:23:36.812 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:36 smithi047 bash[21449]: audit 2024-04-14T15:23:35.839430+0000 mon.a (mon.0) 54 : audit [INF] from='mgr.14120 172.21.15.47:0/1900464280' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-04-14T15:23:36.812 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:36 smithi047 bash[21449]: audit 2024-04-14T15:23:36.321366+0000 mon.a (mon.0) 55 : audit [INF] from='mgr.14120 172.21.15.47:0/1900464280' entity='mgr.a' 2024-04-14T15:23:36.812 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:36 smithi047 bash[21449]: audit 2024-04-14T15:23:36.326873+0000 mon.a (mon.0) 56 : audit [INF] from='mgr.14120 172.21.15.47:0/1900464280' entity='mgr.a' 2024-04-14T15:23:36.812 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:36 smithi047 bash[21449]: cluster 2024-04-14T15:23:36.762547+0000 mon.a (mon.0) 57 : cluster [DBG] mgrmap e7: a(active, since 1.01218s) 2024-04-14T15:23:37.401 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout { 2024-04-14T15:23:37.401 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2024-04-14T15:23:37.401 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "initialized": true 2024-04-14T15:23:37.401 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout } 2024-04-14T15:23:37.401 INFO:teuthology.orchestra.run.smithi047.stdout:mgr epoch 5 is available 2024-04-14T15:23:37.402 INFO:teuthology.orchestra.run.smithi047.stdout:Setting orchestrator backend to cephadm... 2024-04-14T15:23:38.084 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:37 smithi047 bash[21449]: audit 2024-04-14T15:23:36.759601+0000 mgr.a (mgr.14120) 2 : audit [DBG] from='client.14124 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-04-14T15:23:38.084 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:37 smithi047 bash[21449]: audit 2024-04-14T15:23:36.772939+0000 mgr.a (mgr.14120) 3 : audit [DBG] from='client.14124 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-04-14T15:23:38.964 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:38 smithi047 bash[21449]: cluster 2024-04-14T15:23:37.821317+0000 mon.a (mon.0) 58 : cluster [DBG] mgrmap e8: a(active, since 2s) 2024-04-14T15:23:38.964 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:38 smithi047 bash[21449]: cephadm 2024-04-14T15:23:37.979221+0000 mgr.a (mgr.14120) 4 : cephadm [INF] [14/Apr/2024:15:23:37] ENGINE Bus STARTING 2024-04-14T15:23:38.964 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:38 smithi047 bash[21449]: cephadm 2024-04-14T15:23:38.081505+0000 mgr.a (mgr.14120) 5 : cephadm [INF] [14/Apr/2024:15:23:38] ENGINE Serving on http://172.21.15.47:8765 2024-04-14T15:23:38.964 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:38 smithi047 bash[21449]: cephadm 2024-04-14T15:23:38.200760+0000 mgr.a (mgr.14120) 6 : cephadm [INF] [14/Apr/2024:15:23:38] ENGINE Serving on https://172.21.15.47:7150 2024-04-14T15:23:38.965 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:38 smithi047 bash[21449]: cephadm 2024-04-14T15:23:38.201084+0000 mgr.a (mgr.14120) 7 : cephadm [INF] [14/Apr/2024:15:23:38] ENGINE Bus STARTED 2024-04-14T15:23:38.965 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:38 smithi047 bash[21449]: audit 2024-04-14T15:23:38.246160+0000 mon.a (mon.0) 59 : audit [DBG] from='mgr.14120 172.21.15.47:0/1900464280' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:23:38.965 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:38 smithi047 bash[21449]: audit 2024-04-14T15:23:38.688612+0000 mon.a (mon.0) 60 : audit [INF] from='mgr.14120 172.21.15.47:0/1900464280' entity='mgr.a' 2024-04-14T15:23:38.965 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:38 smithi047 bash[21449]: audit 2024-04-14T15:23:38.714291+0000 mon.a (mon.0) 61 : audit [DBG] from='mgr.14120 172.21.15.47:0/1900464280' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:23:40.209 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:39 smithi047 bash[21449]: audit 2024-04-14T15:23:38.684827+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-14T15:23:41.271 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout value unchanged 2024-04-14T15:23:41.271 INFO:teuthology.orchestra.run.smithi047.stdout:Generating ssh key... 2024-04-14T15:23:41.709 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:41 smithi047 bash[21449]: audit 2024-04-14T15:23:40.566004+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-14T15:23:43.165 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:42 smithi047 bash[21702]: Generating public/private rsa key pair. 2024-04-14T15:23:43.165 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:42 smithi047 bash[21702]: Your identification has been saved in /tmp/tmph9t7m31a/key. 2024-04-14T15:23:43.165 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:42 smithi047 bash[21702]: Your public key has been saved in /tmp/tmph9t7m31a/key.pub. 2024-04-14T15:23:43.165 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:42 smithi047 bash[21702]: The key fingerprint is: 2024-04-14T15:23:43.165 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:42 smithi047 bash[21702]: SHA256:esFV16i2Uo9TN6S0xMJh4k4bPzf+WnOuIQDD72untc0 ceph-af942ef8-fa72-11ee-bc8e-c7b262605968 2024-04-14T15:23:43.165 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:42 smithi047 bash[21702]: The key's randomart image is: 2024-04-14T15:23:43.165 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:42 smithi047 bash[21702]: +---[RSA 3072]----+ 2024-04-14T15:23:43.165 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:42 smithi047 bash[21702]: | ..o+ .o | 2024-04-14T15:23:43.165 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:42 smithi047 bash[21702]: | .. o+ =...| 2024-04-14T15:23:43.165 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:42 smithi047 bash[21702]: | ++. +.+ | 2024-04-14T15:23:43.165 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:42 smithi047 bash[21702]: | .o=+ +o...| 2024-04-14T15:23:43.166 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:42 smithi047 bash[21702]: | Soo= B ..| 2024-04-14T15:23:43.166 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:42 smithi047 bash[21702]: | . o..B o | 2024-04-14T15:23:43.166 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:42 smithi047 bash[21702]: | . . ..oo.o.| 2024-04-14T15:23:43.166 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:42 smithi047 bash[21702]: | . .o.=ooo| 2024-04-14T15:23:43.166 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:42 smithi047 bash[21702]: | .oo..Eo.| 2024-04-14T15:23:43.166 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:23:42 smithi047 bash[21702]: +----[SHA256]-----+ 2024-04-14T15:23:44.209 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:43 smithi047 bash[21449]: audit 2024-04-14T15:23:42.486971+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-14T15:23:44.209 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:43 smithi047 bash[21449]: cephadm 2024-04-14T15:23:42.487375+0000 mgr.a (mgr.14120) 11 : cephadm [INF] Generating ssh key... 2024-04-14T15:23:44.209 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:43 smithi047 bash[21449]: audit 2024-04-14T15:23:42.915488+0000 mon.a (mon.0) 62 : audit [INF] from='mgr.14120 172.21.15.47:0/1900464280' entity='mgr.a' 2024-04-14T15:23:44.209 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:43 smithi047 bash[21449]: audit 2024-04-14T15:23:42.920168+0000 mon.a (mon.0) 63 : audit [INF] from='mgr.14120 172.21.15.47:0/1900464280' entity='mgr.a' 2024-04-14T15:23:45.540 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC/IoQ3DELv5hDhmTNiLy+bZ87dLCbQEFzzGgJhMhREUI9UfmCR00rfYtnM/k2lUCJlEI+AOZgDov9rhfpHR5LiDTwEozxJZiT3FqPuHD3I9EjmjFXYQz/cMuqC8+7f5rCdZgD3ZcMLnzAab/qDebZFdslapByOCJAZkAR/HjasIVhvK39FDSPf+Q2XOpJut/jWKOSbGvCIQs5iSDRAwqrj/hxc4jf2ZcuEh2R9ujRbCzGttGDSq0jPejx3X4XRW1wshBQO6+MUSrzd0jrlZupQ7OK9lyfgaSeVVRspHP+v7E6N2osm5OXX73przVUi0tLmTb6FZq8kT63KjWVO0FPkh5k/QIrPW9fc3JEm/fpYNmfXxcRPJAloh8kGAQVKLZfEHPHCDgTx5v8bTXeBJXpUjXSQKsRPILbrMwaVGM2t7AyMD331U2s5WifkOwIvPa1NKrVvxcb7VP9aLWrpOq2o+tcuEyhePrULKdJLIwE4uBzI/+eY9q+1JN+li5om1j8= ceph-af942ef8-fa72-11ee-bc8e-c7b262605968 2024-04-14T15:23:45.540 INFO:teuthology.orchestra.run.smithi047.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-04-14T15:23:45.540 INFO:teuthology.orchestra.run.smithi047.stdout:Adding key to root@localhost authorized_keys... 2024-04-14T15:23:45.541 INFO:teuthology.orchestra.run.smithi047.stdout:Adding host smithi047... 2024-04-14T15:23:45.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:45 smithi047 bash[21449]: audit 2024-04-14T15:23:44.889702+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-14T15:23:47.782 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:47 smithi047 bash[21449]: audit 2024-04-14T15:23:46.885133+0000 mgr.a (mgr.14120) 13 : audit [DBG] from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi047", "addr": "172.21.15.47", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:23:48.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:48 smithi047 bash[21449]: cephadm 2024-04-14T15:23:47.583981+0000 mgr.a (mgr.14120) 14 : cephadm [INF] Deploying cephadm binary to smithi047 2024-04-14T15:23:53.496 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout Added host 'smithi047' with addr '172.21.15.47' 2024-04-14T15:23:53.496 INFO:teuthology.orchestra.run.smithi047.stdout:Deploying unmanaged mon service... 2024-04-14T15:23:53.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:53 smithi047 bash[21449]: audit 2024-04-14T15:23:52.712559+0000 mon.a (mon.0) 64 : audit [INF] from='mgr.14120 172.21.15.47:0/1900464280' entity='mgr.a' 2024-04-14T15:23:53.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:53 smithi047 bash[21449]: cephadm 2024-04-14T15:23:52.713095+0000 mgr.a (mgr.14120) 15 : cephadm [INF] Added host smithi047 2024-04-14T15:23:53.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:53 smithi047 bash[21449]: audit 2024-04-14T15:23:52.743731+0000 mon.a (mon.0) 65 : audit [DBG] from='mgr.14120 172.21.15.47:0/1900464280' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:23:56.157 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2024-04-14T15:23:56.157 INFO:teuthology.orchestra.run.smithi047.stdout:Deploying unmanaged mgr service... 2024-04-14T15:23:56.459 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:56 smithi047 bash[21449]: audit 2024-04-14T15:23:55.325950+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-14T15:23:56.459 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:56 smithi047 bash[21449]: cephadm 2024-04-14T15:23:55.329263+0000 mgr.a (mgr.14120) 17 : cephadm [INF] Saving service mon spec with placement count:5 2024-04-14T15:23:56.459 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:56 smithi047 bash[21449]: audit 2024-04-14T15:23:55.334163+0000 mon.a (mon.0) 66 : audit [INF] from='mgr.14120 172.21.15.47:0/1900464280' entity='mgr.a' 2024-04-14T15:23:56.459 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:56 smithi047 bash[21449]: audit 2024-04-14T15:23:55.870903+0000 mon.a (mon.0) 67 : audit [INF] from='mgr.14120 172.21.15.47:0/1900464280' entity='mgr.a' 2024-04-14T15:23:57.709 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:57 smithi047 bash[21449]: cluster 2024-04-14T15:23:55.763173+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-14T15:23:57.710 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:57 smithi047 bash[21449]: audit 2024-04-14T15:23:56.407818+0000 mon.a (mon.0) 68 : audit [INF] from='mgr.14120 172.21.15.47:0/1900464280' entity='mgr.a' 2024-04-14T15:23:58.114 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2024-04-14T15:23:58.825 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:58 smithi047 bash[21449]: audit 2024-04-14T15:23:57.481134+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-14T15:23:58.825 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:58 smithi047 bash[21449]: cephadm 2024-04-14T15:23:57.483711+0000 mgr.a (mgr.14120) 20 : cephadm [INF] Saving service mgr spec with placement count:2 2024-04-14T15:23:58.825 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:58 smithi047 bash[21449]: audit 2024-04-14T15:23:57.488298+0000 mon.a (mon.0) 69 : audit [INF] from='mgr.14120 172.21.15.47:0/1900464280' entity='mgr.a' 2024-04-14T15:23:58.825 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:23:58 smithi047 bash[21449]: cluster 2024-04-14T15:23:57.763686+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-14T15:24:00.708 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:00 smithi047 bash[21449]: audit 2024-04-14T15:23:59.426354+0000 mon.a (mon.0) 70 : audit [INF] from='client.? 172.21.15.47:0/2701719770' entity='client.admin' 2024-04-14T15:24:01.709 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:01 smithi047 bash[21449]: cluster 2024-04-14T15:23:59.764202+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-14T15:24:01.710 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:01 smithi047 bash[21449]: audit 2024-04-14T15:24:01.320659+0000 mon.a (mon.0) 71 : audit [INF] from='client.? 172.21.15.47:0/1347083741' entity='client.admin' 2024-04-14T15:24:01.967 INFO:teuthology.orchestra.run.smithi047.stdout:Enabling the dashboard module... 2024-04-14T15:24:03.709 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:03 smithi047 bash[21449]: cluster 2024-04-14T15:24:01.764557+0000 mgr.a (mgr.14120) 23 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:24:03.709 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:03 smithi047 bash[21449]: audit 2024-04-14T15:24:03.423103+0000 mon.a (mon.0) 72 : audit [INF] from='client.? 172.21.15.47:0/720381277' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2024-04-14T15:24:03.710 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:24:03 smithi047 bash[21702]: ignoring --setuser ceph since I am not root 2024-04-14T15:24:03.710 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:24:03 smithi047 bash[21702]: ignoring --setgroup ceph since I am not root 2024-04-14T15:24:03.710 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:24:03 smithi047 bash[21702]: debug 2024-04-14T15:24:03.625+0000 7f80e28c9200 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-04-14T15:24:04.459 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:04 smithi047 bash[21449]: audit 2024-04-14T15:24:03.433520+0000 mon.a (mon.0) 73 : audit [INF] from='client.? 172.21.15.47:0/720381277' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-04-14T15:24:04.459 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:04 smithi047 bash[21449]: cluster 2024-04-14T15:24:03.436348+0000 mon.a (mon.0) 74 : cluster [DBG] mgrmap e9: a(active, since 27s) 2024-04-14T15:24:05.572 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:24:05 smithi047 bash[21702]: debug 2024-04-14T15:24:05.261+0000 7f80e28c9200 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-04-14T15:24:05.572 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:24:05 smithi047 bash[21702]: debug 2024-04-14T15:24:05.361+0000 7f80e28c9200 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-04-14T15:24:05.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:05 smithi047 bash[21449]: audit 2024-04-14T15:24:05.558462+0000 mon.a (mon.0) 75 : audit [DBG] from='client.? 172.21.15.47:0/3847410394' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-04-14T15:24:05.960 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:24:05 smithi047 bash[21702]: debug 2024-04-14T15:24:05.617+0000 7f80e28c9200 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-04-14T15:24:06.279 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout { 2024-04-14T15:24:06.279 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "epoch": 9, 2024-04-14T15:24:06.279 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "available": true, 2024-04-14T15:24:06.279 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-04-14T15:24:06.280 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-04-14T15:24:06.280 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout } 2024-04-14T15:24:06.280 INFO:teuthology.orchestra.run.smithi047.stdout:Waiting for the mgr to restart... 2024-04-14T15:24:06.280 INFO:teuthology.orchestra.run.smithi047.stdout:Waiting for mgr epoch 9... 2024-04-14T15:24:06.562 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:24:06 smithi047 bash[21702]: debug 2024-04-14T15:24:06.445+0000 7f80e28c9200 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-04-14T15:24:06.960 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:24:06 smithi047 bash[21702]: debug 2024-04-14T15:24:06.561+0000 7f80e28c9200 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-04-14T15:24:06.960 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:24:06 smithi047 bash[21702]: debug 2024-04-14T15:24:06.669+0000 7f80e28c9200 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-04-14T15:24:07.268 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:24:07 smithi047 bash[21702]: debug 2024-04-14T15:24:07.037+0000 7f80e28c9200 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-04-14T15:24:07.269 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:24:07 smithi047 bash[21702]: debug 2024-04-14T15:24:07.157+0000 7f80e28c9200 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-04-14T15:24:07.960 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:24:07 smithi047 bash[21702]: debug 2024-04-14T15:24:07.265+0000 7f80e28c9200 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-04-14T15:24:07.960 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:24:07 smithi047 bash[21702]: debug 2024-04-14T15:24:07.637+0000 7f80e28c9200 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-04-14T15:24:07.961 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:24:07 smithi047 bash[21702]: debug 2024-04-14T15:24:07.881+0000 7f80e28c9200 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-04-14T15:24:08.460 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:24:08 smithi047 bash[21702]: debug 2024-04-14T15:24:08.157+0000 7f80e28c9200 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-04-14T15:24:08.460 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:24:08 smithi047 bash[21702]: debug 2024-04-14T15:24:08.273+0000 7f80e28c9200 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-04-14T15:24:08.960 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:24:08 smithi047 bash[21702]: debug 2024-04-14T15:24:08.557+0000 7f80e28c9200 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-04-14T15:24:09.358 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:24:08 smithi047 bash[21702]: debug 2024-04-14T15:24:08.985+0000 7f80e28c9200 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-04-14T15:24:09.358 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:24:09 smithi047 bash[21702]: debug 2024-04-14T15:24:09.229+0000 7f80e28c9200 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-04-14T15:24:09.616 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:24:09 smithi047 bash[21702]: debug 2024-04-14T15:24:09.353+0000 7f80e28c9200 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-04-14T15:24:09.959 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:24:09 smithi047 bash[21702]: debug 2024-04-14T15:24:09.613+0000 7f80e28c9200 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-04-14T15:24:10.960 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:24:10 smithi047 bash[21702]: debug 2024-04-14T15:24:10.657+0000 7f80e28c9200 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-04-14T15:24:10.960 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:24:10 smithi047 bash[21702]: debug 2024-04-14T15:24:10.777+0000 7f80e28c9200 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-04-14T15:24:11.460 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:24:11 smithi047 bash[21702]: debug 2024-04-14T15:24:11.084+0000 7f80e28c9200 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-04-14T15:24:11.460 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:24:11 smithi047 bash[21702]: debug 2024-04-14T15:24:11.200+0000 7f80e28c9200 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-04-14T15:24:11.933 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:11 smithi047 bash[21449]: cluster 2024-04-14T15:24:11.821946+0000 mon.a (mon.0) 76 : cluster [INF] Active manager daemon a restarted 2024-04-14T15:24:11.933 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:11 smithi047 bash[21449]: cluster 2024-04-14T15:24:11.822441+0000 mon.a (mon.0) 77 : cluster [INF] Activating manager daemon a 2024-04-14T15:24:11.933 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:11 smithi047 bash[21449]: cluster 2024-04-14T15:24:11.829203+0000 mon.a (mon.0) 78 : cluster [DBG] osdmap e3: 0 total, 0 up, 0 in 2024-04-14T15:24:11.933 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:11 smithi047 bash[21449]: cluster 2024-04-14T15:24:11.829419+0000 mon.a (mon.0) 79 : cluster [DBG] mgrmap e10: a(active, starting, since 0.00717406s) 2024-04-14T15:24:11.933 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:11 smithi047 bash[21449]: audit 2024-04-14T15:24:11.831357+0000 mon.a (mon.0) 80 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-14T15:24:11.933 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:11 smithi047 bash[21449]: audit 2024-04-14T15:24:11.833038+0000 mon.a (mon.0) 81 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-04-14T15:24:11.933 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:11 smithi047 bash[21449]: audit 2024-04-14T15:24:11.834166+0000 mon.a (mon.0) 82 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-14T15:24:11.933 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:11 smithi047 bash[21449]: audit 2024-04-14T15:24:11.834492+0000 mon.a (mon.0) 83 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-14T15:24:11.933 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:11 smithi047 bash[21449]: audit 2024-04-14T15:24:11.834677+0000 mon.a (mon.0) 84 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-14T15:24:11.933 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:11 smithi047 bash[21449]: cluster 2024-04-14T15:24:11.858607+0000 mon.a (mon.0) 85 : cluster [INF] Manager daemon a is now available 2024-04-14T15:24:11.933 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:24:11 smithi047 bash[21702]: debug 2024-04-14T15:24:11.672+0000 7f80e28c9200 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-04-14T15:24:11.934 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:24:11 smithi047 bash[21702]: debug 2024-04-14T15:24:11.796+0000 7f80e28c9200 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-04-14T15:24:13.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:12 smithi047 bash[21449]: audit 2024-04-14T15:24:11.886956+0000 mon.a (mon.0) 86 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:24:13.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:12 smithi047 bash[21449]: audit 2024-04-14T15:24:11.890255+0000 mon.a (mon.0) 87 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:24:13.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:12 smithi047 bash[21449]: audit 2024-04-14T15:24:11.910884+0000 mon.a (mon.0) 88 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-04-14T15:24:13.211 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:12 smithi047 bash[21449]: audit 2024-04-14T15:24:11.913551+0000 mon.a (mon.0) 89 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-04-14T15:24:13.211 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:12 smithi047 bash[21449]: cephadm 2024-04-14T15:24:12.271468+0000 mgr.a (mgr.14152) 1 : cephadm [INF] [14/Apr/2024:15:24:12] ENGINE Bus STARTING 2024-04-14T15:24:13.211 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:12 smithi047 bash[21449]: cephadm 2024-04-14T15:24:12.393680+0000 mgr.a (mgr.14152) 2 : cephadm [INF] [14/Apr/2024:15:24:12] ENGINE Serving on https://172.21.15.47:7150 2024-04-14T15:24:13.211 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:12 smithi047 bash[21449]: cephadm 2024-04-14T15:24:12.495189+0000 mgr.a (mgr.14152) 3 : cephadm [INF] [14/Apr/2024:15:24:12] ENGINE Serving on http://172.21.15.47:8765 2024-04-14T15:24:13.211 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:12 smithi047 bash[21449]: cephadm 2024-04-14T15:24:12.495320+0000 mgr.a (mgr.14152) 4 : cephadm [INF] [14/Apr/2024:15:24:12] ENGINE Bus STARTED 2024-04-14T15:24:13.211 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:12 smithi047 bash[21449]: cluster 2024-04-14T15:24:12.835276+0000 mon.a (mon.0) 90 : cluster [DBG] mgrmap e11: a(active, since 1.01302s) 2024-04-14T15:24:13.626 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout { 2024-04-14T15:24:13.627 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2024-04-14T15:24:13.627 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "initialized": true 2024-04-14T15:24:13.627 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout } 2024-04-14T15:24:13.627 INFO:teuthology.orchestra.run.smithi047.stdout:mgr epoch 9 is available 2024-04-14T15:24:13.627 INFO:teuthology.orchestra.run.smithi047.stdout:Generating a dashboard self-signed certificate... 2024-04-14T15:24:13.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:13 smithi047 bash[21449]: audit 2024-04-14T15:24:12.833804+0000 mgr.a (mgr.14152) 5 : audit [DBG] from='client.14156 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-04-14T15:24:13.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:13 smithi047 bash[21449]: audit 2024-04-14T15:24:12.847594+0000 mgr.a (mgr.14152) 6 : audit [DBG] from='client.14156 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-04-14T15:24:15.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:14 smithi047 bash[21449]: cluster 2024-04-14T15:24:13.894637+0000 mon.a (mon.0) 91 : cluster [DBG] mgrmap e12: a(active, since 2s) 2024-04-14T15:24:15.973 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout Self-signed certificate created 2024-04-14T15:24:15.973 INFO:teuthology.orchestra.run.smithi047.stdout:Creating initial admin user... 2024-04-14T15:24:16.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:16 smithi047 bash[21449]: audit 2024-04-14T15:24:14.967724+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-14T15:24:16.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:16 smithi047 bash[21449]: audit 2024-04-14T15:24:15.330536+0000 mon.a (mon.0) 92 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:24:16.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:16 smithi047 bash[21449]: audit 2024-04-14T15:24:15.335676+0000 mon.a (mon.0) 93 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:24:17.834 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:17 smithi047 bash[21449]: audit 2024-04-14T15:24:17.334931+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-14T15:24:18.245 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$V3gCiA0AfD/40QwPhZf1buFlRy2sUcNBBKVUFqNqOVbnbVatShI.q", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1713108257, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-04-14T15:24:18.245 INFO:teuthology.orchestra.run.smithi047.stdout:Fetching dashboard port number... 2024-04-14T15:24:18.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:18 smithi047 bash[21449]: audit 2024-04-14T15:24:17.580752+0000 mon.a (mon.0) 94 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:24:19.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:19 smithi047 bash[21449]: cluster 2024-04-14T15:24:18.586162+0000 mon.a (mon.0) 95 : cluster [DBG] mgrmap e13: a(active, since 6s) 2024-04-14T15:24:19.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:19 smithi047 bash[21449]: audit 2024-04-14T15:24:19.001275+0000 mon.a (mon.0) 96 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:24:19.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:19 smithi047 bash[21449]: audit 2024-04-14T15:24:19.002104+0000 mon.a (mon.0) 97 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi047", "name": "osd_memory_target"}]: dispatch 2024-04-14T15:24:19.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:19 smithi047 bash[21449]: audit 2024-04-14T15:24:19.006702+0000 mon.a (mon.0) 98 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:24:19.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:19 smithi047 bash[21449]: audit 2024-04-14T15:24:19.008538+0000 mon.a (mon.0) 99 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi047", "caps": []}]: dispatch 2024-04-14T15:24:19.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:19 smithi047 bash[21449]: audit 2024-04-14T15:24:19.009273+0000 mon.a (mon.0) 100 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi047", "caps": []}]': finished 2024-04-14T15:24:19.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:19 smithi047 bash[21449]: cephadm 2024-04-14T15:24:19.140037+0000 mgr.a (mgr.14152) 9 : cephadm [INF] Deploying daemon agent.smithi047 on smithi047 2024-04-14T15:24:19.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:19 smithi047 bash[21449]: audit 2024-04-14T15:24:19.570264+0000 mon.a (mon.0) 101 : audit [DBG] from='client.? 172.21.15.47:0/3295790313' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2024-04-14T15:24:20.259 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout 8443 2024-04-14T15:24:20.259 INFO:teuthology.orchestra.run.smithi047.stdout:firewalld does not appear to be present 2024-04-14T15:24:20.259 INFO:teuthology.orchestra.run.smithi047.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2024-04-14T15:24:20.262 INFO:teuthology.orchestra.run.smithi047.stdout:Ceph Dashboard is now available at: 2024-04-14T15:24:20.262 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-04-14T15:24:20.262 INFO:teuthology.orchestra.run.smithi047.stdout: URL: https://smithi047.front.sepia.ceph.com:8443/ 2024-04-14T15:24:20.262 INFO:teuthology.orchestra.run.smithi047.stdout: User: admin 2024-04-14T15:24:20.262 INFO:teuthology.orchestra.run.smithi047.stdout: Password: yavlh34ah9 2024-04-14T15:24:20.262 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-04-14T15:24:20.262 INFO:teuthology.orchestra.run.smithi047.stdout:Saving cluster configuration to /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/config directory 2024-04-14T15:24:20.263 INFO:teuthology.orchestra.run.smithi047.stdout:Enabling autotune for osd_memory_target 2024-04-14T15:24:24.379 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2024-04-14T15:24:24.379 INFO:teuthology.orchestra.run.smithi047.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-04-14T15:24:24.379 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-04-14T15:24:24.379 INFO:teuthology.orchestra.run.smithi047.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-04-14T15:24:24.379 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-04-14T15:24:24.380 INFO:teuthology.orchestra.run.smithi047.stdout:Or, if you are only running a single cluster on this host: 2024-04-14T15:24:24.380 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-04-14T15:24:24.380 INFO:teuthology.orchestra.run.smithi047.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2024-04-14T15:24:24.380 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-04-14T15:24:24.380 INFO:teuthology.orchestra.run.smithi047.stdout:Please consider enabling telemetry to help improve Ceph: 2024-04-14T15:24:24.380 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-04-14T15:24:24.380 INFO:teuthology.orchestra.run.smithi047.stdout: ceph telemetry on 2024-04-14T15:24:24.380 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-04-14T15:24:24.380 INFO:teuthology.orchestra.run.smithi047.stdout:For more information see: 2024-04-14T15:24:24.380 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-04-14T15:24:24.380 INFO:teuthology.orchestra.run.smithi047.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2024-04-14T15:24:24.380 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-04-14T15:24:24.380 INFO:teuthology.orchestra.run.smithi047.stdout:Bootstrap complete. 2024-04-14T15:24:24.439 INFO:tasks.cephadm:Fetching config... 2024-04-14T15:24:24.439 DEBUG:teuthology.orchestra.run.smithi047:> set -ex 2024-04-14T15:24:24.439 DEBUG:teuthology.orchestra.run.smithi047:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-04-14T15:24:24.445 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-04-14T15:24:24.445 DEBUG:teuthology.orchestra.run.smithi047:> set -ex 2024-04-14T15:24:24.445 DEBUG:teuthology.orchestra.run.smithi047:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-04-14T15:24:24.491 INFO:tasks.cephadm:Fetching mon keyring... 2024-04-14T15:24:24.491 DEBUG:teuthology.orchestra.run.smithi047:> set -ex 2024-04-14T15:24:24.491 DEBUG:teuthology.orchestra.run.smithi047:> sudo dd if=/var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.a/keyring of=/dev/stdout 2024-04-14T15:24:24.548 INFO:tasks.cephadm:Fetching pub ssh key... 2024-04-14T15:24:24.548 DEBUG:teuthology.orchestra.run.smithi047:> set -ex 2024-04-14T15:24:24.548 DEBUG:teuthology.orchestra.run.smithi047:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-04-14T15:24:24.598 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-04-14T15:24:24.598 DEBUG:teuthology.orchestra.run.smithi047:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC/IoQ3DELv5hDhmTNiLy+bZ87dLCbQEFzzGgJhMhREUI9UfmCR00rfYtnM/k2lUCJlEI+AOZgDov9rhfpHR5LiDTwEozxJZiT3FqPuHD3I9EjmjFXYQz/cMuqC8+7f5rCdZgD3ZcMLnzAab/qDebZFdslapByOCJAZkAR/HjasIVhvK39FDSPf+Q2XOpJut/jWKOSbGvCIQs5iSDRAwqrj/hxc4jf2ZcuEh2R9ujRbCzGttGDSq0jPejx3X4XRW1wshBQO6+MUSrzd0jrlZupQ7OK9lyfgaSeVVRspHP+v7E6N2osm5OXX73przVUi0tLmTb6FZq8kT63KjWVO0FPkh5k/QIrPW9fc3JEm/fpYNmfXxcRPJAloh8kGAQVKLZfEHPHCDgTx5v8bTXeBJXpUjXSQKsRPILbrMwaVGM2t7AyMD331U2s5WifkOwIvPa1NKrVvxcb7VP9aLWrpOq2o+tcuEyhePrULKdJLIwE4uBzI/+eY9q+1JN+li5om1j8= ceph-af942ef8-fa72-11ee-bc8e-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-04-14T15:24:24.656 INFO:teuthology.orchestra.run.smithi047.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC/IoQ3DELv5hDhmTNiLy+bZ87dLCbQEFzzGgJhMhREUI9UfmCR00rfYtnM/k2lUCJlEI+AOZgDov9rhfpHR5LiDTwEozxJZiT3FqPuHD3I9EjmjFXYQz/cMuqC8+7f5rCdZgD3ZcMLnzAab/qDebZFdslapByOCJAZkAR/HjasIVhvK39FDSPf+Q2XOpJut/jWKOSbGvCIQs5iSDRAwqrj/hxc4jf2ZcuEh2R9ujRbCzGttGDSq0jPejx3X4XRW1wshBQO6+MUSrzd0jrlZupQ7OK9lyfgaSeVVRspHP+v7E6N2osm5OXX73przVUi0tLmTb6FZq8kT63KjWVO0FPkh5k/QIrPW9fc3JEm/fpYNmfXxcRPJAloh8kGAQVKLZfEHPHCDgTx5v8bTXeBJXpUjXSQKsRPILbrMwaVGM2t7AyMD331U2s5WifkOwIvPa1NKrVvxcb7VP9aLWrpOq2o+tcuEyhePrULKdJLIwE4uBzI/+eY9q+1JN+li5om1j8= ceph-af942ef8-fa72-11ee-bc8e-c7b262605968 2024-04-14T15:24:24.662 DEBUG:teuthology.orchestra.run.smithi110:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC/IoQ3DELv5hDhmTNiLy+bZ87dLCbQEFzzGgJhMhREUI9UfmCR00rfYtnM/k2lUCJlEI+AOZgDov9rhfpHR5LiDTwEozxJZiT3FqPuHD3I9EjmjFXYQz/cMuqC8+7f5rCdZgD3ZcMLnzAab/qDebZFdslapByOCJAZkAR/HjasIVhvK39FDSPf+Q2XOpJut/jWKOSbGvCIQs5iSDRAwqrj/hxc4jf2ZcuEh2R9ujRbCzGttGDSq0jPejx3X4XRW1wshBQO6+MUSrzd0jrlZupQ7OK9lyfgaSeVVRspHP+v7E6N2osm5OXX73przVUi0tLmTb6FZq8kT63KjWVO0FPkh5k/QIrPW9fc3JEm/fpYNmfXxcRPJAloh8kGAQVKLZfEHPHCDgTx5v8bTXeBJXpUjXSQKsRPILbrMwaVGM2t7AyMD331U2s5WifkOwIvPa1NKrVvxcb7VP9aLWrpOq2o+tcuEyhePrULKdJLIwE4uBzI/+eY9q+1JN+li5om1j8= ceph-af942ef8-fa72-11ee-bc8e-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-04-14T15:24:24.677 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:24 smithi047 systemd[1]: /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-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-14T15:24:24.677 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:24:24 smithi047 systemd[1]: /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-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-14T15:24:24.685 INFO:teuthology.orchestra.run.smithi110.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC/IoQ3DELv5hDhmTNiLy+bZ87dLCbQEFzzGgJhMhREUI9UfmCR00rfYtnM/k2lUCJlEI+AOZgDov9rhfpHR5LiDTwEozxJZiT3FqPuHD3I9EjmjFXYQz/cMuqC8+7f5rCdZgD3ZcMLnzAab/qDebZFdslapByOCJAZkAR/HjasIVhvK39FDSPf+Q2XOpJut/jWKOSbGvCIQs5iSDRAwqrj/hxc4jf2ZcuEh2R9ujRbCzGttGDSq0jPejx3X4XRW1wshBQO6+MUSrzd0jrlZupQ7OK9lyfgaSeVVRspHP+v7E6N2osm5OXX73przVUi0tLmTb6FZq8kT63KjWVO0FPkh5k/QIrPW9fc3JEm/fpYNmfXxcRPJAloh8kGAQVKLZfEHPHCDgTx5v8bTXeBJXpUjXSQKsRPILbrMwaVGM2t7AyMD331U2s5WifkOwIvPa1NKrVvxcb7VP9aLWrpOq2o+tcuEyhePrULKdJLIwE4uBzI/+eY9q+1JN+li5om1j8= ceph-af942ef8-fa72-11ee-bc8e-c7b262605968 2024-04-14T15:24:24.694 DEBUG:teuthology.orchestra.run.smithi138:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC/IoQ3DELv5hDhmTNiLy+bZ87dLCbQEFzzGgJhMhREUI9UfmCR00rfYtnM/k2lUCJlEI+AOZgDov9rhfpHR5LiDTwEozxJZiT3FqPuHD3I9EjmjFXYQz/cMuqC8+7f5rCdZgD3ZcMLnzAab/qDebZFdslapByOCJAZkAR/HjasIVhvK39FDSPf+Q2XOpJut/jWKOSbGvCIQs5iSDRAwqrj/hxc4jf2ZcuEh2R9ujRbCzGttGDSq0jPejx3X4XRW1wshBQO6+MUSrzd0jrlZupQ7OK9lyfgaSeVVRspHP+v7E6N2osm5OXX73przVUi0tLmTb6FZq8kT63KjWVO0FPkh5k/QIrPW9fc3JEm/fpYNmfXxcRPJAloh8kGAQVKLZfEHPHCDgTx5v8bTXeBJXpUjXSQKsRPILbrMwaVGM2t7AyMD331U2s5WifkOwIvPa1NKrVvxcb7VP9aLWrpOq2o+tcuEyhePrULKdJLIwE4uBzI/+eY9q+1JN+li5om1j8= ceph-af942ef8-fa72-11ee-bc8e-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-04-14T15:24:24.718 INFO:teuthology.orchestra.run.smithi138.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC/IoQ3DELv5hDhmTNiLy+bZ87dLCbQEFzzGgJhMhREUI9UfmCR00rfYtnM/k2lUCJlEI+AOZgDov9rhfpHR5LiDTwEozxJZiT3FqPuHD3I9EjmjFXYQz/cMuqC8+7f5rCdZgD3ZcMLnzAab/qDebZFdslapByOCJAZkAR/HjasIVhvK39FDSPf+Q2XOpJut/jWKOSbGvCIQs5iSDRAwqrj/hxc4jf2ZcuEh2R9ujRbCzGttGDSq0jPejx3X4XRW1wshBQO6+MUSrzd0jrlZupQ7OK9lyfgaSeVVRspHP+v7E6N2osm5OXX73przVUi0tLmTb6FZq8kT63KjWVO0FPkh5k/QIrPW9fc3JEm/fpYNmfXxcRPJAloh8kGAQVKLZfEHPHCDgTx5v8bTXeBJXpUjXSQKsRPILbrMwaVGM2t7AyMD331U2s5WifkOwIvPa1NKrVvxcb7VP9aLWrpOq2o+tcuEyhePrULKdJLIwE4uBzI/+eY9q+1JN+li5om1j8= ceph-af942ef8-fa72-11ee-bc8e-c7b262605968 2024-04-14T15:24:24.728 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-04-14T15:24:24.960 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:24:24 smithi047 systemd[1]: /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-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-14T15:24:24.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:24 smithi047 bash[21449]: audit 2024-04-14T15:24:23.731351+0000 mon.a (mon.0) 102 : audit [INF] from='client.? 172.21.15.47:0/1374516903' entity='client.admin' 2024-04-14T15:24:24.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:24 smithi047 systemd[1]: /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-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-14T15:24:26.211 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:25 smithi047 bash[21449]: audit 2024-04-14T15:24:24.953525+0000 mon.a (mon.0) 103 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:24:26.211 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:25 smithi047 bash[21449]: audit 2024-04-14T15:24:24.975161+0000 mon.a (mon.0) 104 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:24:26.211 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:25 smithi047 bash[21449]: audit 2024-04-14T15:24:24.979271+0000 mon.a (mon.0) 105 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:24:26.211 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:25 smithi047 bash[21449]: audit 2024-04-14T15:24:25.012754+0000 mon.a (mon.0) 106 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:24:26.211 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:25 smithi047 bash[21449]: audit 2024-04-14T15:24:25.018034+0000 mon.a (mon.0) 107 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:24:26.211 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:25 smithi047 bash[21449]: audit 2024-04-14T15:24:25.021231+0000 mon.a (mon.0) 108 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:24:26.211 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:25 smithi047 bash[21449]: audit 2024-04-14T15:24:25.024363+0000 mon.a (mon.0) 109 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:24:26.211 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:25 smithi047 bash[21449]: audit 2024-04-14T15:24:25.027352+0000 mon.a (mon.0) 110 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:24:26.211 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:25 smithi047 bash[21449]: audit 2024-04-14T15:24:25.031125+0000 mon.a (mon.0) 111 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:24:26.212 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:25 smithi047 bash[21449]: audit 2024-04-14T15:24:25.065017+0000 mon.a (mon.0) 112 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:24:26.212 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:25 smithi047 bash[21449]: audit 2024-04-14T15:24:25.070868+0000 mon.a (mon.0) 113 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:24:26.212 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:25 smithi047 bash[21449]: audit 2024-04-14T15:24:25.413966+0000 mon.a (mon.0) 114 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:24:28.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:27 smithi047 bash[21449]: audit 2024-04-14T15:24:26.910527+0000 mon.a (mon.0) 115 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:24:29.435 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T15:24:31.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:31 smithi047 bash[21449]: audit 2024-04-14T15:24:30.025756+0000 mon.a (mon.0) 116 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:24:31.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:31 smithi047 bash[21449]: audit 2024-04-14T15:24:30.030330+0000 mon.a (mon.0) 117 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:24:33.097 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-04-14T15:24:33.097 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-04-14T15:24:33.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:33 smithi047 bash[21449]: cluster 2024-04-14T15:24:31.835740+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-14T15:24:33.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:33 smithi047 bash[21449]: audit 2024-04-14T15:24:32.416076+0000 mon.a (mon.0) 118 : audit [INF] from='client.? 172.21.15.47:0/1543042127' entity='client.admin' 2024-04-14T15:24:33.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:33 smithi047 bash[21449]: audit 2024-04-14T15:24:32.436954+0000 mon.a (mon.0) 119 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:24:33.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:33 smithi047 bash[21449]: audit 2024-04-14T15:24:32.441858+0000 mon.a (mon.0) 120 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:24:35.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:35 smithi047 bash[21449]: cluster 2024-04-14T15:24:33.836094+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-14T15:24:37.689 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T15:24:37.710 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:37 smithi047 bash[21449]: cluster 2024-04-14T15:24:35.836392+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-14T15:24:38.824 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:38 smithi047 bash[21449]: audit 2024-04-14T15:24:37.471783+0000 mon.a (mon.0) 121 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:24:38.824 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:38 smithi047 bash[21449]: audit 2024-04-14T15:24:37.477902+0000 mon.a (mon.0) 122 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:24:39.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:39 smithi047 bash[21449]: cluster 2024-04-14T15:24:37.836784+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-14T15:24:41.121 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi110 2024-04-14T15:24:41.122 DEBUG:teuthology.orchestra.run.smithi110:> set -ex 2024-04-14T15:24:41.122 DEBUG:teuthology.orchestra.run.smithi110:> dd of=/etc/ceph/ceph.conf 2024-04-14T15:24:41.128 DEBUG:teuthology.orchestra.run.smithi110:> set -ex 2024-04-14T15:24:41.128 DEBUG:teuthology.orchestra.run.smithi110:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-04-14T15:24:41.173 INFO:tasks.cephadm:Adding host smithi110 to orchestrator... 2024-04-14T15:24:41.174 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph orch host add smithi110 2024-04-14T15:24:41.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:41 smithi047 bash[21449]: cluster 2024-04-14T15:24:39.837248+0000 mgr.a (mgr.14152) 14 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:24:41.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:41 smithi047 bash[21449]: audit 2024-04-14T15:24:40.398901+0000 mgr.a (mgr.14152) 15 : 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-14T15:24:41.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:41 smithi047 bash[21449]: audit 2024-04-14T15:24:40.402356+0000 mon.a (mon.0) 123 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:24:41.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:41 smithi047 bash[21449]: audit 2024-04-14T15:24:40.442505+0000 mon.a (mon.0) 124 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:24:41.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:41 smithi047 bash[21449]: audit 2024-04-14T15:24:40.444120+0000 mon.a (mon.0) 125 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:24:41.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:41 smithi047 bash[21449]: audit 2024-04-14T15:24:40.444745+0000 mon.a (mon.0) 126 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:24:41.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:41 smithi047 bash[21449]: cephadm 2024-04-14T15:24:40.445660+0000 mgr.a (mgr.14152) 16 : cephadm [INF] Updating smithi047:/etc/ceph/ceph.conf 2024-04-14T15:24:41.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:41 smithi047 bash[21449]: audit 2024-04-14T15:24:41.062788+0000 mon.a (mon.0) 127 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:24:41.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:41 smithi047 bash[21449]: audit 2024-04-14T15:24:41.070351+0000 mon.a (mon.0) 128 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:24:41.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:41 smithi047 bash[21449]: audit 2024-04-14T15:24:41.075162+0000 mon.a (mon.0) 129 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:24:42.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:42 smithi047 bash[21449]: cephadm 2024-04-14T15:24:40.559955+0000 mgr.a (mgr.14152) 17 : cephadm [INF] Updating smithi047:/var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T15:24:42.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:42 smithi047 bash[21449]: cephadm 2024-04-14T15:24:40.724484+0000 mgr.a (mgr.14152) 18 : cephadm [INF] Updating smithi047:/etc/ceph/ceph.client.admin.keyring 2024-04-14T15:24:42.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:42 smithi047 bash[21449]: cephadm 2024-04-14T15:24:40.888780+0000 mgr.a (mgr.14152) 19 : cephadm [INF] Updating smithi047:/var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/config/ceph.client.admin.keyring 2024-04-14T15:24:43.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:43 smithi047 bash[21449]: cluster 2024-04-14T15:24:41.837753+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-14T15:24:44.886 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T15:24:45.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:45 smithi047 bash[21449]: cluster 2024-04-14T15:24:43.838193+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-14T15:24:47.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:47 smithi047 bash[21449]: cluster 2024-04-14T15:24:45.838619+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-14T15:24:49.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:49 smithi047 bash[21449]: cluster 2024-04-14T15:24:47.839067+0000 mgr.a (mgr.14152) 23 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:24:49.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:49 smithi047 bash[21449]: audit 2024-04-14T15:24:48.591105+0000 mon.a (mon.0) 130 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:24:49.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:49 smithi047 bash[21449]: audit 2024-04-14T15:24:48.594314+0000 mon.a (mon.0) 131 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:24:49.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:49 smithi047 bash[21449]: audit 2024-04-14T15:24:48.598221+0000 mon.a (mon.0) 132 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:24:50.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:50 smithi047 bash[21449]: audit 2024-04-14T15:24:48.925935+0000 mgr.a (mgr.14152) 24 : audit [DBG] from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi110", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:24:51.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:51 smithi047 bash[21449]: cephadm 2024-04-14T15:24:49.629736+0000 mgr.a (mgr.14152) 25 : cephadm [INF] Deploying cephadm binary to smithi110 2024-04-14T15:24:51.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:51 smithi047 bash[21449]: cluster 2024-04-14T15:24:49.839478+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-14T15:24:53.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:53 smithi047 bash[21449]: cluster 2024-04-14T15:24:51.839938+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-14T15:24:55.008 INFO:teuthology.orchestra.run.smithi047.stdout:Added host 'smithi110' with addr '172.21.15.110' 2024-04-14T15:24:55.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:55 smithi047 bash[21449]: cluster 2024-04-14T15:24:53.840297+0000 mgr.a (mgr.14152) 28 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:24:55.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:55 smithi047 bash[21449]: audit 2024-04-14T15:24:55.007167+0000 mon.a (mon.0) 133 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:24:55.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:55 smithi047 bash[21449]: audit 2024-04-14T15:24:55.052789+0000 mon.a (mon.0) 134 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:24:55.854 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph orch host ls --format=json 2024-04-14T15:24:56.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:56 smithi047 bash[21449]: cephadm 2024-04-14T15:24:55.008209+0000 mgr.a (mgr.14152) 29 : cephadm [INF] Added host smithi110 2024-04-14T15:24:56.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:56 smithi047 bash[21449]: audit 2024-04-14T15:24:55.575924+0000 mon.a (mon.0) 135 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:24:57.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:57 smithi047 bash[21449]: cluster 2024-04-14T15:24:55.840774+0000 mgr.a (mgr.14152) 30 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:24:57.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:57 smithi047 bash[21449]: audit 2024-04-14T15:24:57.050819+0000 mon.a (mon.0) 136 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:24:57.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:57 smithi047 bash[21449]: audit 2024-04-14T15:24:57.055777+0000 mon.a (mon.0) 137 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:24:57.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:57 smithi047 bash[21449]: audit 2024-04-14T15:24:57.056952+0000 mon.a (mon.0) 138 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi110", "name": "osd_memory_target"}]: dispatch 2024-04-14T15:24:57.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:57 smithi047 bash[21449]: audit 2024-04-14T15:24:57.058591+0000 mon.a (mon.0) 139 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:24:57.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:57 smithi047 bash[21449]: audit 2024-04-14T15:24:57.060073+0000 mon.a (mon.0) 140 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:24:58.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:58 smithi047 bash[21449]: cephadm 2024-04-14T15:24:57.062481+0000 mgr.a (mgr.14152) 31 : cephadm [INF] Updating smithi110:/etc/ceph/ceph.conf 2024-04-14T15:24:58.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:58 smithi047 bash[21449]: cephadm 2024-04-14T15:24:57.278994+0000 mgr.a (mgr.14152) 32 : cephadm [INF] Updating smithi110:/var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T15:24:58.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:58 smithi047 bash[21449]: cephadm 2024-04-14T15:24:57.494941+0000 mgr.a (mgr.14152) 33 : cephadm [INF] Updating smithi110:/etc/ceph/ceph.client.admin.keyring 2024-04-14T15:24:58.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:58 smithi047 bash[21449]: audit 2024-04-14T15:24:57.931416+0000 mon.a (mon.0) 141 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:24:58.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:58 smithi047 bash[21449]: audit 2024-04-14T15:24:57.937709+0000 mon.a (mon.0) 142 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:24:58.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:58 smithi047 bash[21449]: audit 2024-04-14T15:24:57.941002+0000 mon.a (mon.0) 143 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi110", "caps": []}]: dispatch 2024-04-14T15:24:58.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:58 smithi047 bash[21449]: audit 2024-04-14T15:24:57.942507+0000 mon.a (mon.0) 144 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi110", "caps": []}]': finished 2024-04-14T15:24:59.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:59 smithi047 bash[21449]: cephadm 2024-04-14T15:24:57.710399+0000 mgr.a (mgr.14152) 34 : cephadm [INF] Updating smithi110:/var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/config/ceph.client.admin.keyring 2024-04-14T15:24:59.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:59 smithi047 bash[21449]: cluster 2024-04-14T15:24:57.841183+0000 mgr.a (mgr.14152) 35 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:24:59.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:24:59 smithi047 bash[21449]: cephadm 2024-04-14T15:24:58.491525+0000 mgr.a (mgr.14152) 36 : cephadm [INF] Deploying daemon agent.smithi110 on smithi110 2024-04-14T15:25:00.568 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T15:25:00.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:00 smithi047 bash[21449]: audit 2024-04-14T15:24:59.683809+0000 mon.a (mon.0) 145 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:00.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:00 smithi047 bash[21449]: audit 2024-04-14T15:24:59.713538+0000 mon.a (mon.0) 146 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:00.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:00 smithi047 bash[21449]: audit 2024-04-14T15:24:59.719058+0000 mon.a (mon.0) 147 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:00.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:00 smithi047 bash[21449]: audit 2024-04-14T15:24:59.787005+0000 mon.a (mon.0) 148 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:25:00.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:00 smithi047 bash[21449]: audit 2024-04-14T15:24:59.791774+0000 mon.a (mon.0) 149 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:25:00.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:00 smithi047 bash[21449]: audit 2024-04-14T15:24:59.793384+0000 mon.a (mon.0) 150 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:25:00.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:00 smithi047 bash[21449]: audit 2024-04-14T15:24:59.801169+0000 mon.a (mon.0) 151 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:00.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:00 smithi047 bash[21449]: cluster 2024-04-14T15:24:59.841629+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-14T15:25:00.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:00 smithi047 bash[21449]: audit 2024-04-14T15:24:59.870751+0000 mon.a (mon.0) 152 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:25:00.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:00 smithi047 bash[21449]: audit 2024-04-14T15:24:59.875215+0000 mon.a (mon.0) 153 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:25:00.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:00 smithi047 bash[21449]: audit 2024-04-14T15:24:59.876965+0000 mon.a (mon.0) 154 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:25:00.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:00 smithi047 bash[21449]: audit 2024-04-14T15:24:59.884768+0000 mon.a (mon.0) 155 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:00.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:00 smithi047 bash[21449]: audit 2024-04-14T15:25:00.111015+0000 mon.a (mon.0) 156 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:02.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:02 smithi047 bash[21449]: audit 2024-04-14T15:25:01.182366+0000 mon.a (mon.0) 157 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:02.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:02 smithi047 bash[21449]: audit 2024-04-14T15:25:01.190271+0000 mon.a (mon.0) 158 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:02.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:02 smithi047 bash[21449]: audit 2024-04-14T15:25:01.924806+0000 mon.a (mon.0) 159 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:03.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:03 smithi047 bash[21449]: cluster 2024-04-14T15:25:01.842079+0000 mgr.a (mgr.14152) 38 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:25:03.731 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-04-14T15:25:03.732 INFO:teuthology.orchestra.run.smithi047.stdout:[{"addr": "172.21.15.47", "hostname": "smithi047", "labels": [], "status": ""}, {"addr": "172.21.15.110", "hostname": "smithi110", "labels": [], "status": ""}] 2024-04-14T15:25:04.867 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi138 2024-04-14T15:25:04.867 DEBUG:teuthology.orchestra.run.smithi138:> set -ex 2024-04-14T15:25:04.867 DEBUG:teuthology.orchestra.run.smithi138:> dd of=/etc/ceph/ceph.conf 2024-04-14T15:25:04.873 DEBUG:teuthology.orchestra.run.smithi138:> set -ex 2024-04-14T15:25:04.873 DEBUG:teuthology.orchestra.run.smithi138:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-04-14T15:25:04.922 INFO:tasks.cephadm:Adding host smithi138 to orchestrator... 2024-04-14T15:25:04.922 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph orch host add smithi138 2024-04-14T15:25:05.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:05 smithi047 bash[21449]: audit 2024-04-14T15:25:03.730961+0000 mgr.a (mgr.14152) 39 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-14T15:25:05.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:05 smithi047 bash[21449]: cluster 2024-04-14T15:25:03.842454+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-14T15:25:07.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:07 smithi047 bash[21449]: cluster 2024-04-14T15:25:05.842888+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-14T15:25:09.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:09 smithi047 bash[21449]: cluster 2024-04-14T15:25:07.843316+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-14T15:25:09.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:09 smithi047 bash[21449]: audit 2024-04-14T15:25:08.794351+0000 mon.a (mon.0) 160 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:09.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:09 smithi047 bash[21449]: audit 2024-04-14T15:25:08.800484+0000 mon.a (mon.0) 161 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:09.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:09 smithi047 bash[21449]: audit 2024-04-14T15:25:08.808231+0000 mon.a (mon.0) 162 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:10.140 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T15:25:11.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:11 smithi047 bash[21449]: cluster 2024-04-14T15:25:09.843731+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-14T15:25:13.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:13 smithi047 bash[21449]: cluster 2024-04-14T15:25:11.844198+0000 mgr.a (mgr.14152) 44 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:25:14.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:14 smithi047 bash[21449]: audit 2024-04-14T15:25:12.878859+0000 mgr.a (mgr.14152) 45 : audit [DBG] from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi138", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:25:14.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:14 smithi047 bash[21449]: audit 2024-04-14T15:25:13.946914+0000 mon.a (mon.0) 163 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:14.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:14 smithi047 bash[21449]: audit 2024-04-14T15:25:13.958545+0000 mon.a (mon.0) 164 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:15.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:15 smithi047 bash[21449]: cephadm 2024-04-14T15:25:13.746676+0000 mgr.a (mgr.14152) 46 : cephadm [INF] Deploying cephadm binary to smithi138 2024-04-14T15:25:15.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:15 smithi047 bash[21449]: cluster 2024-04-14T15:25:13.844686+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-14T15:25:17.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:17 smithi047 bash[21449]: cluster 2024-04-14T15:25:15.845053+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-14T15:25:19.242 INFO:teuthology.orchestra.run.smithi047.stdout:Added host 'smithi138' with addr '172.21.15.138' 2024-04-14T15:25:19.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:19 smithi047 bash[21449]: cluster 2024-04-14T15:25:17.845386+0000 mgr.a (mgr.14152) 49 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:25:20.262 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph orch host ls --format=json 2024-04-14T15:25:20.547 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:20 smithi047 bash[21449]: audit 2024-04-14T15:25:19.240778+0000 mon.a (mon.0) 165 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:20.548 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:20 smithi047 bash[21449]: cephadm 2024-04-14T15:25:19.241676+0000 mgr.a (mgr.14152) 50 : cephadm [INF] Added host smithi138 2024-04-14T15:25:20.548 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:20 smithi047 bash[21449]: audit 2024-04-14T15:25:19.261300+0000 mon.a (mon.0) 166 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:25:20.548 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:20 smithi047 bash[21449]: audit 2024-04-14T15:25:19.735684+0000 mon.a (mon.0) 167 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:21.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:21 smithi047 bash[21449]: cluster 2024-04-14T15:25:19.845778+0000 mgr.a (mgr.14152) 51 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:25:21.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:21 smithi047 bash[21449]: audit 2024-04-14T15:25:21.012756+0000 mon.a (mon.0) 168 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:21.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:21 smithi047 bash[21449]: audit 2024-04-14T15:25:21.017702+0000 mon.a (mon.0) 169 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:21.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:21 smithi047 bash[21449]: audit 2024-04-14T15:25:21.023933+0000 mon.a (mon.0) 170 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:21.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:21 smithi047 bash[21449]: audit 2024-04-14T15:25:21.209830+0000 mon.a (mon.0) 171 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:21.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:21 smithi047 bash[21449]: audit 2024-04-14T15:25:21.215194+0000 mon.a (mon.0) 172 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:21.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:21 smithi047 bash[21449]: audit 2024-04-14T15:25:21.216609+0000 mon.a (mon.0) 173 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi138", "name": "osd_memory_target"}]: dispatch 2024-04-14T15:25:21.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:21 smithi047 bash[21449]: audit 2024-04-14T15:25:21.218524+0000 mon.a (mon.0) 174 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:25:21.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:21 smithi047 bash[21449]: audit 2024-04-14T15:25:21.220164+0000 mon.a (mon.0) 175 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:25:22.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:22 smithi047 bash[21449]: cephadm 2024-04-14T15:25:21.222983+0000 mgr.a (mgr.14152) 52 : cephadm [INF] Updating smithi138:/etc/ceph/ceph.conf 2024-04-14T15:25:22.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:22 smithi047 bash[21449]: cephadm 2024-04-14T15:25:21.439599+0000 mgr.a (mgr.14152) 53 : cephadm [INF] Updating smithi138:/var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T15:25:22.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:22 smithi047 bash[21449]: audit 2024-04-14T15:25:21.938833+0000 mon.a (mon.0) 176 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:22.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:22 smithi047 bash[21449]: audit 2024-04-14T15:25:21.944762+0000 mon.a (mon.0) 177 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:22.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:22 smithi047 bash[21449]: audit 2024-04-14T15:25:21.948534+0000 mon.a (mon.0) 178 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi138", "caps": []}]: dispatch 2024-04-14T15:25:22.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:22 smithi047 bash[21449]: audit 2024-04-14T15:25:21.949918+0000 mon.a (mon.0) 179 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi138", "caps": []}]': finished 2024-04-14T15:25:23.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:23 smithi047 bash[21449]: cephadm 2024-04-14T15:25:21.604002+0000 mgr.a (mgr.14152) 54 : cephadm [INF] Updating smithi138:/etc/ceph/ceph.client.admin.keyring 2024-04-14T15:25:23.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:23 smithi047 bash[21449]: cephadm 2024-04-14T15:25:21.768499+0000 mgr.a (mgr.14152) 55 : cephadm [INF] Updating smithi138:/var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/config/ceph.client.admin.keyring 2024-04-14T15:25:23.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:23 smithi047 bash[21449]: cluster 2024-04-14T15:25:21.846152+0000 mgr.a (mgr.14152) 56 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:25:23.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:23 smithi047 bash[21449]: cephadm 2024-04-14T15:25:22.484710+0000 mgr.a (mgr.14152) 57 : cephadm [INF] Deploying daemon agent.smithi138 on smithi138 2024-04-14T15:25:25.211 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:24 smithi047 bash[21449]: audit 2024-04-14T15:25:23.721839+0000 mon.a (mon.0) 180 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:25.211 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:24 smithi047 bash[21449]: audit 2024-04-14T15:25:23.756663+0000 mon.a (mon.0) 181 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:25.211 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:24 smithi047 bash[21449]: audit 2024-04-14T15:25:23.762433+0000 mon.a (mon.0) 182 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:25.211 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:24 smithi047 bash[21449]: cluster 2024-04-14T15:25:23.846500+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-14T15:25:25.211 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:24 smithi047 bash[21449]: audit 2024-04-14T15:25:23.863266+0000 mon.a (mon.0) 183 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:25:25.211 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:24 smithi047 bash[21449]: audit 2024-04-14T15:25:23.868735+0000 mon.a (mon.0) 184 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:25:25.211 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:24 smithi047 bash[21449]: audit 2024-04-14T15:25:23.870402+0000 mon.a (mon.0) 185 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:25:25.211 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:24 smithi047 bash[21449]: audit 2024-04-14T15:25:23.878737+0000 mon.a (mon.0) 186 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:25.212 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:24 smithi047 bash[21449]: audit 2024-04-14T15:25:23.982898+0000 mon.a (mon.0) 187 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:25:25.212 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:24 smithi047 bash[21449]: audit 2024-04-14T15:25:23.987947+0000 mon.a (mon.0) 188 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:25:25.212 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:24 smithi047 bash[21449]: audit 2024-04-14T15:25:23.989597+0000 mon.a (mon.0) 189 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:25:25.212 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:24 smithi047 bash[21449]: audit 2024-04-14T15:25:23.997800+0000 mon.a (mon.0) 190 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:25.212 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:24 smithi047 bash[21449]: audit 2024-04-14T15:25:24.175720+0000 mon.a (mon.0) 191 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:26.274 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T15:25:26.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:26 smithi047 bash[21449]: audit 2024-04-14T15:25:25.221583+0000 mon.a (mon.0) 192 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:26.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:26 smithi047 bash[21449]: audit 2024-04-14T15:25:25.225530+0000 mon.a (mon.0) 193 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:27.450 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:27 smithi047 bash[21449]: cluster 2024-04-14T15:25:25.846892+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-14T15:25:27.450 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:27 smithi047 bash[21449]: audit 2024-04-14T15:25:26.935191+0000 mon.a (mon.0) 194 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:29.030 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-04-14T15:25:29.030 INFO:teuthology.orchestra.run.smithi047.stdout:[{"addr": "172.21.15.47", "hostname": "smithi047", "labels": [], "status": ""}, {"addr": "172.21.15.110", "hostname": "smithi110", "labels": [], "status": ""}, {"addr": "172.21.15.138", "hostname": "smithi138", "labels": [], "status": ""}] 2024-04-14T15:25:29.267 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:29 smithi047 bash[21449]: cluster 2024-04-14T15:25:27.847263+0000 mgr.a (mgr.14152) 60 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:25:29.267 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:29 smithi047 bash[21449]: audit 2024-04-14T15:25:28.995807+0000 mon.a (mon.0) 195 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:29.267 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:29 smithi047 bash[21449]: audit 2024-04-14T15:25:29.001964+0000 mon.a (mon.0) 196 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:29.267 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:29 smithi047 bash[21449]: audit 2024-04-14T15:25:29.009691+0000 mon.a (mon.0) 197 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:29.683 INFO:tasks.cephadm:Setting crush tunables to default 2024-04-14T15:25:29.683 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph osd crush tunables default 2024-04-14T15:25:30.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:30 smithi047 bash[21449]: audit 2024-04-14T15:25:29.029710+0000 mgr.a (mgr.14152) 61 : audit [DBG] from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-14T15:25:31.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:31 smithi047 bash[21449]: cluster 2024-04-14T15:25:29.847692+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-14T15:25:33.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:33 smithi047 bash[21449]: cluster 2024-04-14T15:25:31.848133+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-14T15:25:34.401 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T15:25:35.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:35 smithi047 bash[21449]: cluster 2024-04-14T15:25:33.848597+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-14T15:25:37.245 INFO:teuthology.orchestra.run.smithi047.stderr:adjusted tunables profile to default 2024-04-14T15:25:37.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:37 smithi047 bash[21449]: cluster 2024-04-14T15:25:35.849055+0000 mgr.a (mgr.14152) 65 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:25:37.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:37 smithi047 bash[21449]: audit 2024-04-14T15:25:37.089975+0000 mon.a (mon.0) 198 : audit [INF] from='client.? 172.21.15.47:0/1019795708' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-04-14T15:25:37.952 INFO:tasks.cephadm:Adding mon.a on smithi047 2024-04-14T15:25:37.952 INFO:tasks.cephadm:Adding mon.b on smithi110 2024-04-14T15:25:37.952 INFO:tasks.cephadm:Adding mon.c on smithi138 2024-04-14T15:25:37.953 DEBUG:teuthology.orchestra.run.smithi138:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph orch apply mon '3;smithi047:172.21.15.47=a;smithi110:172.21.15.110=b;smithi138:172.21.15.138=c' 2024-04-14T15:25:38.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:38 smithi047 bash[21449]: audit 2024-04-14T15:25:37.240100+0000 mon.a (mon.0) 199 : audit [INF] from='client.? 172.21.15.47:0/1019795708' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-04-14T15:25:38.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:38 smithi047 bash[21449]: cluster 2024-04-14T15:25:37.242884+0000 mon.a (mon.0) 200 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-04-14T15:25:38.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:38 smithi047 bash[21449]: audit 2024-04-14T15:25:38.113247+0000 mon.a (mon.0) 201 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:38.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:38 smithi047 bash[21449]: audit 2024-04-14T15:25:38.121050+0000 mon.a (mon.0) 202 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:39.162 INFO:teuthology.orchestra.run.smithi138.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T15:25:39.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:39 smithi047 bash[21449]: cluster 2024-04-14T15:25:37.849453+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-14T15:25:41.654 INFO:teuthology.orchestra.run.smithi138.stdout:Scheduled mon update... 2024-04-14T15:25:41.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:41 smithi047 bash[21449]: cluster 2024-04-14T15:25:39.849899+0000 mgr.a (mgr.14152) 67 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:25:41.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:41 smithi047 bash[21449]: audit 2024-04-14T15:25:41.208228+0000 mon.a (mon.0) 203 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:41.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:41 smithi047 bash[21449]: audit 2024-04-14T15:25:41.214179+0000 mon.a (mon.0) 204 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:41.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:41 smithi047 bash[21449]: audit 2024-04-14T15:25:41.222197+0000 mon.a (mon.0) 205 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:42.441 DEBUG:teuthology.orchestra.run.smithi110:mon.b> sudo journalctl -f -n 0 -u ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@mon.b.service 2024-04-14T15:25:42.443 DEBUG:teuthology.orchestra.run.smithi138:mon.c> sudo journalctl -f -n 0 -u ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@mon.c.service 2024-04-14T15:25:42.446 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-04-14T15:25:42.446 DEBUG:teuthology.orchestra.run.smithi138:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph mon dump -f json 2024-04-14T15:25:42.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:42 smithi047 bash[21449]: audit 2024-04-14T15:25:41.646253+0000 mgr.a (mgr.14152) 68 : audit [DBG] from='client.14188 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi047:172.21.15.47=a;smithi110:172.21.15.110=b;smithi138:172.21.15.138=c", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:25:42.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:42 smithi047 bash[21449]: cephadm 2024-04-14T15:25:41.648807+0000 mgr.a (mgr.14152) 69 : cephadm [INF] Saving service mon spec with placement smithi047:172.21.15.47=a;smithi110:172.21.15.110=b;smithi138:172.21.15.138=c;count:3 2024-04-14T15:25:42.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:42 smithi047 bash[21449]: audit 2024-04-14T15:25:41.653905+0000 mon.a (mon.0) 206 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:42.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:42 smithi047 bash[21449]: audit 2024-04-14T15:25:41.663908+0000 mon.a (mon.0) 207 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:25:42.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:42 smithi047 bash[21449]: audit 2024-04-14T15:25:41.669196+0000 mon.a (mon.0) 208 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:25:42.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:42 smithi047 bash[21449]: audit 2024-04-14T15:25:41.670934+0000 mon.a (mon.0) 209 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:25:42.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:42 smithi047 bash[21449]: audit 2024-04-14T15:25:41.678781+0000 mon.a (mon.0) 210 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:42.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:42 smithi047 bash[21449]: audit 2024-04-14T15:25:41.684009+0000 mon.a (mon.0) 211 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-14T15:25:42.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:42 smithi047 bash[21449]: audit 2024-04-14T15:25:41.685750+0000 mon.a (mon.0) 212 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:25:42.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:42 smithi047 bash[21449]: cephadm 2024-04-14T15:25:41.687465+0000 mgr.a (mgr.14152) 70 : cephadm [INF] Deploying daemon mon.c on smithi138 2024-04-14T15:25:42.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:42 smithi047 bash[21449]: cluster 2024-04-14T15:25:41.850320+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-14T15:25:44.201 INFO:teuthology.orchestra.run.smithi138.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T15:25:45.211 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:44 smithi047 bash[21449]: cluster 2024-04-14T15:25:43.850735+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-14T15:25:47.211 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:46 smithi047 bash[21449]: cluster 2024-04-14T15:25:45.851164+0000 mgr.a (mgr.14152) 73 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:25:48.091 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:47 smithi138 systemd[1]: Started Ceph mon.c for af942ef8-fa72-11ee-bc8e-c7b262605968. 2024-04-14T15:25:48.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:48 smithi047 bash[21449]: audit 2024-04-14T15:25:47.429611+0000 mon.a (mon.0) 213 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:48.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:48 smithi047 bash[21449]: audit 2024-04-14T15:25:47.435663+0000 mon.a (mon.0) 214 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:48.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:48 smithi047 bash[21449]: audit 2024-04-14T15:25:47.443841+0000 mon.a (mon.0) 215 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:48.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:48 smithi047 bash[21449]: audit 2024-04-14T15:25:47.806316+0000 mon.a (mon.0) 216 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:48.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:48 smithi047 bash[21449]: audit 2024-04-14T15:25:47.812268+0000 mon.a (mon.0) 217 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:48.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:48 smithi047 bash[21449]: audit 2024-04-14T15:25:47.822005+0000 mon.a (mon.0) 218 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:48.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:48 smithi047 bash[21449]: audit 2024-04-14T15:25:47.823517+0000 mon.a (mon.0) 219 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-14T15:25:48.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:48 smithi047 bash[21449]: audit 2024-04-14T15:25:47.825526+0000 mon.a (mon.0) 220 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:25:49.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:49 smithi047 bash[21449]: cephadm 2024-04-14T15:25:47.827676+0000 mgr.a (mgr.14152) 74 : cephadm [INF] Deploying daemon mon.b on smithi110 2024-04-14T15:25:49.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:49 smithi047 bash[21449]: cluster 2024-04-14T15:25:47.851513+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-14T15:25:49.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:49 smithi047 bash[21449]: audit 2024-04-14T15:25:49.223602+0000 mon.a (mon.0) 221 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:49.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:49 smithi047 bash[21449]: audit 2024-04-14T15:25:49.230130+0000 mon.a (mon.0) 222 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:49.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:49 smithi047 bash[21449]: audit 2024-04-14T15:25:49.238360+0000 mon.a (mon.0) 223 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:49.939 INFO:teuthology.orchestra.run.smithi138.stdout: 2024-04-14T15:25:49.939 INFO:teuthology.orchestra.run.smithi138.stdout:{"epoch":1,"fsid":"af942ef8-fa72-11ee-bc8e-c7b262605968","modified":"2024-04-14T15:22:58.674104Z","created":"2024-04-14T15:22:58.674104Z","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.47:3300","nonce":0},{"type":"v1","addr":"172.21.15.47:6789","nonce":0}]},"addr":"172.21.15.47:6789/0","public_addr":"172.21.15.47:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-14T15:25:49.941 INFO:teuthology.orchestra.run.smithi138.stderr:dumped monmap epoch 1 2024-04-14T15:25:50.132 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.094+0000 7f35bec30c80 0 set uid:gid to 167:167 (ceph:ceph) 2024-04-14T15:25:50.132 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.094+0000 7f35bec30c80 0 ceph version 19.0.0-2778-ga971fd5f (a971fd5f5719038c70b817bafacd6d5400b1d888) squid (dev), process ceph-mon, pid 7 2024-04-14T15:25:50.132 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.094+0000 7f35bec30c80 0 pidfile_write: ignore empty --pid-file 2024-04-14T15:25:50.132 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 0 load: jerasure load: lrc 2024-04-14T15:25:50.132 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: RocksDB version: 7.9.2 2024-04-14T15:25:50.132 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Git sha 0 2024-04-14T15:25:50.133 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Compile date 2024-04-06 20:28:24 2024-04-14T15:25:50.133 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: DB SUMMARY 2024-04-14T15:25:50.133 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: DB Session ID: XBVSHTF0BOWPQ23FINZ4 2024-04-14T15:25:50.133 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: CURRENT file: CURRENT 2024-04-14T15:25:50.133 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: IDENTITY file: IDENTITY 2024-04-14T15:25:50.133 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: MANIFEST file: MANIFEST-000005 size: 59 Bytes 2024-04-14T15:25:50.133 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-c/store.db dir, Total Num: 0, files: 2024-04-14T15:25:50.133 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-c/store.db: 000004.log size: 511 ; 2024-04-14T15:25:50.133 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.error_if_exists: 0 2024-04-14T15:25:50.133 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.create_if_missing: 0 2024-04-14T15:25:50.134 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.paranoid_checks: 1 2024-04-14T15:25:50.134 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-04-14T15:25:50.134 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-04-14T15:25:50.134 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-04-14T15:25:50.134 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.env: 0x558af10ffc60 2024-04-14T15:25:50.134 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.fs: PosixFileSystem 2024-04-14T15:25:50.134 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.info_log: 0x558af2393c40 2024-04-14T15:25:50.134 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.max_file_opening_threads: 16 2024-04-14T15:25:50.134 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.statistics: (nil) 2024-04-14T15:25:50.135 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.use_fsync: 0 2024-04-14T15:25:50.135 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.max_log_file_size: 0 2024-04-14T15:25:50.135 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-04-14T15:25:50.135 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-04-14T15:25:50.135 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.keep_log_file_num: 1000 2024-04-14T15:25:50.135 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.recycle_log_file_num: 0 2024-04-14T15:25:50.135 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.allow_fallocate: 1 2024-04-14T15:25:50.135 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.allow_mmap_reads: 0 2024-04-14T15:25:50.135 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.allow_mmap_writes: 0 2024-04-14T15:25:50.135 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.use_direct_reads: 0 2024-04-14T15:25:50.135 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-04-14T15:25:50.135 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.create_missing_column_families: 0 2024-04-14T15:25:50.136 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.db_log_dir: 2024-04-14T15:25:50.136 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.wal_dir: 2024-04-14T15:25:50.136 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-04-14T15:25:50.136 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-04-14T15:25:50.136 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-04-14T15:25:50.136 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-04-14T15:25:50.136 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-04-14T15:25:50.136 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-04-14T15:25:50.136 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.advise_random_on_open: 1 2024-04-14T15:25:50.136 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.db_write_buffer_size: 0 2024-04-14T15:25:50.136 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.write_buffer_manager: 0x558af23661e0 2024-04-14T15:25:50.136 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-04-14T15:25:50.137 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-04-14T15:25:50.137 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-04-14T15:25:50.137 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.rate_limiter: (nil) 2024-04-14T15:25:50.137 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-04-14T15:25:50.137 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.wal_recovery_mode: 2 2024-04-14T15:25:50.137 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.enable_thread_tracking: 0 2024-04-14T15:25:50.137 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.enable_pipelined_write: 0 2024-04-14T15:25:50.137 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.unordered_write: 0 2024-04-14T15:25:50.137 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-04-14T15:25:50.137 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-04-14T15:25:50.137 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-04-14T15:25:50.137 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-04-14T15:25:50.137 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.row_cache: None 2024-04-14T15:25:50.137 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.wal_filter: None 2024-04-14T15:25:50.137 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-04-14T15:25:50.138 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.allow_ingest_behind: 0 2024-04-14T15:25:50.138 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.two_write_queues: 0 2024-04-14T15:25:50.138 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.manual_wal_flush: 0 2024-04-14T15:25:50.138 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.wal_compression: 0 2024-04-14T15:25:50.138 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.atomic_flush: 0 2024-04-14T15:25:50.138 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-04-14T15:25:50.138 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-04-14T15:25:50.138 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-04-14T15:25:50.138 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.log_readahead_size: 0 2024-04-14T15:25:50.138 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-04-14T15:25:50.138 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.best_efforts_recovery: 0 2024-04-14T15:25:50.138 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-04-14T15:25:50.138 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-04-14T15:25:50.139 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.allow_data_in_errors: 0 2024-04-14T15:25:50.139 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.db_host_id: __hostname__ 2024-04-14T15:25:50.139 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-04-14T15:25:50.139 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.max_background_jobs: 2 2024-04-14T15:25:50.139 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.max_background_compactions: -1 2024-04-14T15:25:50.142 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.max_subcompactions: 1 2024-04-14T15:25:50.142 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-04-14T15:25:50.142 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-04-14T15:25:50.142 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-04-14T15:25:50.142 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.max_total_wal_size: 0 2024-04-14T15:25:50.142 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-04-14T15:25:50.142 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-04-14T15:25:50.142 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-04-14T15:25:50.142 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-04-14T15:25:50.142 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.max_open_files: -1 2024-04-14T15:25:50.143 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.bytes_per_sync: 0 2024-04-14T15:25:50.143 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-04-14T15:25:50.143 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-04-14T15:25:50.143 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.compaction_readahead_size: 0 2024-04-14T15:25:50.143 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.max_background_flushes: -1 2024-04-14T15:25:50.143 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Compression algorithms supported: 2024-04-14T15:25:50.143 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-04-14T15:25:50.143 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: kZSTD supported: 0 2024-04-14T15:25:50.143 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: kXpressCompression supported: 0 2024-04-14T15:25:50.143 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: kLZ4HCCompression supported: 1 2024-04-14T15:25:50.143 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: kZlibCompression supported: 1 2024-04-14T15:25:50.143 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: kSnappyCompression supported: 1 2024-04-14T15:25:50.143 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: kLZ4Compression supported: 1 2024-04-14T15:25:50.143 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: kBZip2Compression supported: 0 2024-04-14T15:25:50.144 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-04-14T15:25:50.144 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-04-14T15:25:50.144 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-c/store.db/MANIFEST-000005 2024-04-14T15:25:50.144 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-04-14T15:25:50.144 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-04-14T15:25:50.144 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.merge_operator: 2024-04-14T15:25:50.144 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.compaction_filter: None 2024-04-14T15:25:50.144 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.compaction_filter_factory: None 2024-04-14T15:25:50.144 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.sst_partitioner_factory: None 2024-04-14T15:25:50.144 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-04-14T15:25:50.144 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-04-14T15:25:50.144 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x558af2393e00) 2024-04-14T15:25:50.144 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cache_index_and_filter_blocks: 1 2024-04-14T15:25:50.144 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cache_index_and_filter_blocks_with_high_priority: 0 2024-04-14T15:25:50.144 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-04-14T15:25:50.145 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: pin_top_level_index_and_filter: 1 2024-04-14T15:25:50.145 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: index_type: 0 2024-04-14T15:25:50.145 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: data_block_index_type: 0 2024-04-14T15:25:50.145 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: index_shortening: 1 2024-04-14T15:25:50.145 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: data_block_hash_table_util_ratio: 0.750000 2024-04-14T15:25:50.145 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: checksum: 4 2024-04-14T15:25:50.145 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: no_block_cache: 0 2024-04-14T15:25:50.145 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: block_cache: 0x558af2397090 2024-04-14T15:25:50.145 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: block_cache_name: BinnedLRUCache 2024-04-14T15:25:50.145 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: block_cache_options: 2024-04-14T15:25:50.145 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: capacity : 536870912 2024-04-14T15:25:50.145 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: num_shard_bits : 4 2024-04-14T15:25:50.145 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: strict_capacity_limit : 0 2024-04-14T15:25:50.145 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: high_pri_pool_ratio: 0.000 2024-04-14T15:25:50.145 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: block_cache_compressed: (nil) 2024-04-14T15:25:50.145 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: persistent_cache: (nil) 2024-04-14T15:25:50.146 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: block_size: 4096 2024-04-14T15:25:50.146 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: block_size_deviation: 10 2024-04-14T15:25:50.146 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: block_restart_interval: 16 2024-04-14T15:25:50.146 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: index_block_restart_interval: 1 2024-04-14T15:25:50.146 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: metadata_block_size: 4096 2024-04-14T15:25:50.146 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: partition_filters: 0 2024-04-14T15:25:50.146 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: use_delta_encoding: 1 2024-04-14T15:25:50.146 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: filter_policy: bloomfilter 2024-04-14T15:25:50.146 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: whole_key_filtering: 1 2024-04-14T15:25:50.146 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: verify_compression: 0 2024-04-14T15:25:50.146 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: read_amp_bytes_per_bit: 0 2024-04-14T15:25:50.146 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: format_version: 5 2024-04-14T15:25:50.146 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: enable_index_compression: 1 2024-04-14T15:25:50.146 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: block_align: 0 2024-04-14T15:25:50.147 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: max_auto_readahead_size: 262144 2024-04-14T15:25:50.147 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: prepopulate_block_cache: 0 2024-04-14T15:25:50.147 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: initial_auto_readahead_size: 8192 2024-04-14T15:25:50.147 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: num_file_reads_for_auto_readahead: 2 2024-04-14T15:25:50.147 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.write_buffer_size: 33554432 2024-04-14T15:25:50.147 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.max_write_buffer_number: 2 2024-04-14T15:25:50.147 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.compression: NoCompression 2024-04-14T15:25:50.147 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.bottommost_compression: Disabled 2024-04-14T15:25:50.147 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.prefix_extractor: nullptr 2024-04-14T15:25:50.147 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-04-14T15:25:50.147 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.num_levels: 7 2024-04-14T15:25:50.147 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-04-14T15:25:50.147 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-04-14T15:25:50.147 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-04-14T15:25:50.148 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-04-14T15:25:50.148 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-04-14T15:25:50.148 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-04-14T15:25:50.148 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-04-14T15:25:50.148 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-04-14T15:25:50.148 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-04-14T15:25:50.148 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-04-14T15:25:50.148 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-04-14T15:25:50.148 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-04-14T15:25:50.148 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-04-14T15:25:50.148 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.compression_opts.level: 32767 2024-04-14T15:25:50.148 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.compression_opts.strategy: 0 2024-04-14T15:25:50.148 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-04-14T15:25:50.148 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-04-14T15:25:50.148 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-04-14T15:25:50.149 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-04-14T15:25:50.149 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.compression_opts.enabled: false 2024-04-14T15:25:50.149 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-04-14T15:25:50.149 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-04-14T15:25:50.149 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-04-14T15:25:50.149 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-04-14T15:25:50.149 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.target_file_size_base: 67108864 2024-04-14T15:25:50.149 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-04-14T15:25:50.149 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-04-14T15:25:50.149 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-04-14T15:25:50.149 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-04-14T15:25:50.149 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-04-14T15:25:50.149 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-04-14T15:25:50.150 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-04-14T15:25:50.150 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-04-14T15:25:50.150 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-04-14T15:25:50.150 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-04-14T15:25:50.150 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-04-14T15:25:50.150 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-04-14T15:25:50.150 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-04-14T15:25:50.150 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-04-14T15:25:50.150 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.arena_block_size: 1048576 2024-04-14T15:25:50.150 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-04-14T15:25:50.150 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-04-14T15:25:50.150 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.disable_auto_compactions: 0 2024-04-14T15:25:50.150 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-04-14T15:25:50.150 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-04-14T15:25:50.151 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-04-14T15:25:50.151 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-04-14T15:25:50.151 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-04-14T15:25:50.151 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-04-14T15:25:50.151 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-04-14T15:25:50.151 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-04-14T15:25:50.151 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-04-14T15:25:50.151 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-04-14T15:25:50.151 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-04-14T15:25:50.151 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.inplace_update_support: 0 2024-04-14T15:25:50.151 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-04-14T15:25:50.151 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-04-14T15:25:50.151 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-04-14T15:25:50.151 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-04-14T15:25:50.152 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.bloom_locality: 0 2024-04-14T15:25:50.152 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.max_successive_merges: 0 2024-04-14T15:25:50.152 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-04-14T15:25:50.152 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.paranoid_file_checks: 0 2024-04-14T15:25:50.152 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.force_consistency_checks: 1 2024-04-14T15:25:50.152 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.report_bg_io_stats: 0 2024-04-14T15:25:50.152 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.ttl: 2592000 2024-04-14T15:25:50.152 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-04-14T15:25:50.152 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-04-14T15:25:50.152 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-04-14T15:25:50.152 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.enable_blob_files: false 2024-04-14T15:25:50.152 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.min_blob_size: 0 2024-04-14T15:25:50.152 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.blob_file_size: 268435456 2024-04-14T15:25:50.152 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-04-14T15:25:50.152 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-04-14T15:25:50.153 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-04-14T15:25:50.153 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-04-14T15:25:50.153 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-04-14T15:25:50.153 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.blob_file_starting_level: 0 2024-04-14T15:25:50.153 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-04-14T15:25:50.153 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-c/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-14T15:25:50.153 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-04-14T15:25:50.153 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: ac5b5122-ffcb-4ac5-a119-21e977f3b2c4 2024-04-14T15:25:50.153 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1713108350101623, "job": 1, "event": "recovery_started", "wal_files": [4]} 2024-04-14T15:25:50.153 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #4 mode 2 2024-04-14T15:25:50.153 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1713108350102017, "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": 1713108350, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "ac5b5122-ffcb-4ac5-a119-21e977f3b2c4", "db_session_id": "XBVSHTF0BOWPQ23FINZ4", "orig_file_number": 8, "seqno_to_time_mapping": "N/A"}} 2024-04-14T15:25:50.153 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1713108350102098, "job": 1, "event": "recovery_finished"} 2024-04-14T15:25:50.153 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.098+0000 7f35bec30c80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 10 2024-04-14T15:25:50.153 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.102+0000 7f35bec30c80 4 rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-c/store.db/000004.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-04-14T15:25:50.153 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.102+0000 7f35bec30c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x558af248a000 2024-04-14T15:25:50.154 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.102+0000 7f35bec30c80 4 rocksdb: DB pointer 0x558af2474000 2024-04-14T15:25:50.154 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.102+0000 7f35ad38a700 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-04-14T15:25:50.154 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.102+0000 7f35ad38a700 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-04-14T15:25:50.154 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: ** DB Stats ** 2024-04-14T15:25:50.154 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: Uptime(secs): 0.0 total, 0.0 interval 2024-04-14T15:25:50.154 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: 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-14T15:25:50.154 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-14T15:25:50.154 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-14T15:25:50.154 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: 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-14T15:25:50.154 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-14T15:25:50.154 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-14T15:25:50.154 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: ** Compaction Stats [default] ** 2024-04-14T15:25:50.154 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: 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-14T15:25:50.155 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-04-14T15:25:50.155 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: L0 1/0 1.61 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 4.2 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-04-14T15:25:50.155 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: Sum 1/0 1.61 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 4.2 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-04-14T15:25:50.155 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 4.2 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-04-14T15:25:50.155 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: ** Compaction Stats [default] ** 2024-04-14T15:25:50.155 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: 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-14T15:25:50.155 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-04-14T15:25:50.155 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 4.2 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-04-14T15:25:50.155 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-04-14T15:25:50.155 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: Uptime(secs): 0.0 total, 0.0 interval 2024-04-14T15:25:50.155 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: Flush(GB): cumulative 0.000, interval 0.000 2024-04-14T15:25:50.155 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: AddFile(GB): cumulative 0.000, interval 0.000 2024-04-14T15:25:50.155 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: AddFile(Total Files): cumulative 0, interval 0 2024-04-14T15:25:50.155 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: AddFile(L0 Files): cumulative 0, interval 0 2024-04-14T15:25:50.156 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: AddFile(Keys): cumulative 0, interval 0 2024-04-14T15:25:50.156 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: Cumulative compaction: 0.00 GB write, 0.59 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-14T15:25:50.156 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: Interval compaction: 0.00 GB write, 0.59 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-14T15:25:50.156 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: 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-14T15:25:50.156 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: Block cache BinnedLRUCache@0x558af2397090#7 capacity: 512.00 MB usage: 0.22 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1e-05 secs_since: 0 2024-04-14T15:25:50.156 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: 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-14T15:25:50.156 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: ** File Read Latency Histogram By Level [default] ** 2024-04-14T15:25:50.156 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.102+0000 7f35bec30c80 0 mon.c does not exist in monmap, will attempt to join an existing cluster 2024-04-14T15:25:50.156 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.102+0000 7f35bec30c80 0 using public_addr v2:172.21.15.138:0/0 -> [v2:172.21.15.138:3300/0,v1:172.21.15.138:6789/0] 2024-04-14T15:25:50.156 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.102+0000 7f35bec30c80 0 starting mon.c rank -1 at public addrs [v2:172.21.15.138:3300/0,v1:172.21.15.138:6789/0] at bind addrs [v2:172.21.15.138:3300/0,v1:172.21.15.138:6789/0] mon_data /var/lib/ceph/mon/ceph-c fsid af942ef8-fa72-11ee-bc8e-c7b262605968 2024-04-14T15:25:50.156 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.102+0000 7f35bec30c80 1 mon.c@-1(???) e0 preinit fsid af942ef8-fa72-11ee-bc8e-c7b262605968 2024-04-14T15:25:50.156 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.122+0000 7f35b0390700 0 mon.c@-1(synchronizing).mds e1 new map 2024-04-14T15:25:50.156 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.122+0000 7f35b0390700 0 mon.c@-1(synchronizing).mds e1 print_map 2024-04-14T15:25:50.157 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: e1 2024-04-14T15:25:50.157 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: enable_multiple, ever_enabled_multiple: 1,1 2024-04-14T15:25:50.157 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: 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-14T15:25:50.157 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: legacy client fscid: -1 2024-04-14T15:25:50.157 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: 2024-04-14T15:25:50.157 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: No filesystems configured 2024-04-14T15:25:50.157 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.122+0000 7f35b0390700 1 mon.c@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-04-14T15:25:50.157 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.122+0000 7f35b0390700 1 mon.c@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2024-04-14T15:25:50.157 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.122+0000 7f35b0390700 1 mon.c@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-04-14T15:25:50.157 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.122+0000 7f35b0390700 1 mon.c@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-04-14T15:25:50.157 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.122+0000 7f35b0390700 1 mon.c@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-04-14T15:25:50.157 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.126+0000 7f35b0390700 1 mon.c@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-04-14T15:25:50.157 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.126+0000 7f35b0390700 0 mon.c@-1(synchronizing).osd e4 crush map has features 3314932999778484224, adjusting msgr requires 2024-04-14T15:25:50.157 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.126+0000 7f35b0390700 0 mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-04-14T15:25:50.158 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.126+0000 7f35b0390700 0 mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-04-14T15:25:50.158 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.126+0000 7f35b0390700 0 mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-04-14T15:25:50.158 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:24:37.471783+0000 mon.a (mon.0) 121 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.158 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:24:37.477902+0000 mon.a (mon.0) 122 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.158 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cluster 2024-04-14T15:24:37.836784+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-14T15:25:50.158 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cluster 2024-04-14T15:24:39.837248+0000 mgr.a (mgr.14152) 14 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:25:50.158 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:24:40.398901+0000 mgr.a (mgr.14152) 15 : 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-14T15:25:50.158 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:24:40.402356+0000 mon.a (mon.0) 123 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.158 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:24:40.442505+0000 mon.a (mon.0) 124 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:25:50.158 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:24:40.444120+0000 mon.a (mon.0) 125 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:25:50.158 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:24:40.444745+0000 mon.a (mon.0) 126 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:25:50.158 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cephadm 2024-04-14T15:24:40.445660+0000 mgr.a (mgr.14152) 16 : cephadm [INF] Updating smithi047:/etc/ceph/ceph.conf 2024-04-14T15:25:50.158 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:24:41.062788+0000 mon.a (mon.0) 127 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.159 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:24:41.070351+0000 mon.a (mon.0) 128 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.159 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:24:41.075162+0000 mon.a (mon.0) 129 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.159 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cephadm 2024-04-14T15:24:40.559955+0000 mgr.a (mgr.14152) 17 : cephadm [INF] Updating smithi047:/var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T15:25:50.159 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cephadm 2024-04-14T15:24:40.724484+0000 mgr.a (mgr.14152) 18 : cephadm [INF] Updating smithi047:/etc/ceph/ceph.client.admin.keyring 2024-04-14T15:25:50.159 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cephadm 2024-04-14T15:24:40.888780+0000 mgr.a (mgr.14152) 19 : cephadm [INF] Updating smithi047:/var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/config/ceph.client.admin.keyring 2024-04-14T15:25:50.159 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cluster 2024-04-14T15:24:41.837753+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-14T15:25:50.159 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cluster 2024-04-14T15:24:43.838193+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-14T15:25:50.159 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cluster 2024-04-14T15:24:45.838619+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-14T15:25:50.159 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cluster 2024-04-14T15:24:47.839067+0000 mgr.a (mgr.14152) 23 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:25:50.159 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:24:48.591105+0000 mon.a (mon.0) 130 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.159 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:24:48.594314+0000 mon.a (mon.0) 131 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.159 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:24:48.598221+0000 mon.a (mon.0) 132 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.159 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:24:48.925935+0000 mgr.a (mgr.14152) 24 : audit [DBG] from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi110", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:25:50.160 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cephadm 2024-04-14T15:24:49.629736+0000 mgr.a (mgr.14152) 25 : cephadm [INF] Deploying cephadm binary to smithi110 2024-04-14T15:25:50.160 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cluster 2024-04-14T15:24:49.839478+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-14T15:25:50.160 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cluster 2024-04-14T15:24:51.839938+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-14T15:25:50.160 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cluster 2024-04-14T15:24:53.840297+0000 mgr.a (mgr.14152) 28 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:25:50.160 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:24:55.007167+0000 mon.a (mon.0) 133 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.160 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:24:55.052789+0000 mon.a (mon.0) 134 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:25:50.160 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cephadm 2024-04-14T15:24:55.008209+0000 mgr.a (mgr.14152) 29 : cephadm [INF] Added host smithi110 2024-04-14T15:25:50.160 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:24:55.575924+0000 mon.a (mon.0) 135 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.160 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cluster 2024-04-14T15:24:55.840774+0000 mgr.a (mgr.14152) 30 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:25:50.160 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:24:57.050819+0000 mon.a (mon.0) 136 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.160 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:24:57.055777+0000 mon.a (mon.0) 137 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.160 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:24:57.056952+0000 mon.a (mon.0) 138 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi110", "name": "osd_memory_target"}]: dispatch 2024-04-14T15:25:50.160 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:24:57.058591+0000 mon.a (mon.0) 139 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:25:50.161 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:24:57.060073+0000 mon.a (mon.0) 140 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:25:50.161 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cephadm 2024-04-14T15:24:57.062481+0000 mgr.a (mgr.14152) 31 : cephadm [INF] Updating smithi110:/etc/ceph/ceph.conf 2024-04-14T15:25:50.161 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cephadm 2024-04-14T15:24:57.278994+0000 mgr.a (mgr.14152) 32 : cephadm [INF] Updating smithi110:/var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T15:25:50.161 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cephadm 2024-04-14T15:24:57.494941+0000 mgr.a (mgr.14152) 33 : cephadm [INF] Updating smithi110:/etc/ceph/ceph.client.admin.keyring 2024-04-14T15:25:50.161 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:24:57.931416+0000 mon.a (mon.0) 141 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.161 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:24:57.937709+0000 mon.a (mon.0) 142 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.161 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:24:57.941002+0000 mon.a (mon.0) 143 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi110", "caps": []}]: dispatch 2024-04-14T15:25:50.161 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:24:57.942507+0000 mon.a (mon.0) 144 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi110", "caps": []}]': finished 2024-04-14T15:25:50.161 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cephadm 2024-04-14T15:24:57.710399+0000 mgr.a (mgr.14152) 34 : cephadm [INF] Updating smithi110:/var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/config/ceph.client.admin.keyring 2024-04-14T15:25:50.161 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cluster 2024-04-14T15:24:57.841183+0000 mgr.a (mgr.14152) 35 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:25:50.161 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cephadm 2024-04-14T15:24:58.491525+0000 mgr.a (mgr.14152) 36 : cephadm [INF] Deploying daemon agent.smithi110 on smithi110 2024-04-14T15:25:50.161 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:24:59.683809+0000 mon.a (mon.0) 145 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.161 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:24:59.713538+0000 mon.a (mon.0) 146 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.161 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:24:59.719058+0000 mon.a (mon.0) 147 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.161 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:24:59.787005+0000 mon.a (mon.0) 148 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:25:50.162 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:24:59.791774+0000 mon.a (mon.0) 149 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:25:50.162 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:24:59.793384+0000 mon.a (mon.0) 150 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:25:50.162 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:24:59.801169+0000 mon.a (mon.0) 151 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.162 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cluster 2024-04-14T15:24:59.841629+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-14T15:25:50.162 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:24:59.870751+0000 mon.a (mon.0) 152 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:25:50.162 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:24:59.875215+0000 mon.a (mon.0) 153 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:25:50.162 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:24:59.876965+0000 mon.a (mon.0) 154 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:25:50.162 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:24:59.884768+0000 mon.a (mon.0) 155 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.162 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:00.111015+0000 mon.a (mon.0) 156 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.162 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:01.182366+0000 mon.a (mon.0) 157 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.162 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:01.190271+0000 mon.a (mon.0) 158 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.162 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:01.924806+0000 mon.a (mon.0) 159 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.162 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cluster 2024-04-14T15:25:01.842079+0000 mgr.a (mgr.14152) 38 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:25:50.163 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:03.730961+0000 mgr.a (mgr.14152) 39 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-14T15:25:50.163 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cluster 2024-04-14T15:25:03.842454+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-14T15:25:50.163 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cluster 2024-04-14T15:25:05.842888+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-14T15:25:50.163 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cluster 2024-04-14T15:25:07.843316+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-14T15:25:50.163 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:08.794351+0000 mon.a (mon.0) 160 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.163 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:08.800484+0000 mon.a (mon.0) 161 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.163 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:08.808231+0000 mon.a (mon.0) 162 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.163 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cluster 2024-04-14T15:25:09.843731+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-14T15:25:50.163 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cluster 2024-04-14T15:25:11.844198+0000 mgr.a (mgr.14152) 44 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:25:50.163 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:12.878859+0000 mgr.a (mgr.14152) 45 : audit [DBG] from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi138", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:25:50.163 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:13.946914+0000 mon.a (mon.0) 163 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.163 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:13.958545+0000 mon.a (mon.0) 164 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.163 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cephadm 2024-04-14T15:25:13.746676+0000 mgr.a (mgr.14152) 46 : cephadm [INF] Deploying cephadm binary to smithi138 2024-04-14T15:25:50.163 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cluster 2024-04-14T15:25:13.844686+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-14T15:25:50.163 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cluster 2024-04-14T15:25:15.845053+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-14T15:25:50.164 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cluster 2024-04-14T15:25:17.845386+0000 mgr.a (mgr.14152) 49 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:25:50.164 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:19.240778+0000 mon.a (mon.0) 165 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.164 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cephadm 2024-04-14T15:25:19.241676+0000 mgr.a (mgr.14152) 50 : cephadm [INF] Added host smithi138 2024-04-14T15:25:50.164 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:19.261300+0000 mon.a (mon.0) 166 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:25:50.164 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:19.735684+0000 mon.a (mon.0) 167 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.164 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cluster 2024-04-14T15:25:19.845778+0000 mgr.a (mgr.14152) 51 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:25:50.164 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:21.012756+0000 mon.a (mon.0) 168 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.164 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:21.017702+0000 mon.a (mon.0) 169 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.164 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:21.023933+0000 mon.a (mon.0) 170 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.164 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:21.209830+0000 mon.a (mon.0) 171 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.164 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:21.215194+0000 mon.a (mon.0) 172 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.164 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:21.216609+0000 mon.a (mon.0) 173 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi138", "name": "osd_memory_target"}]: dispatch 2024-04-14T15:25:50.164 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:21.218524+0000 mon.a (mon.0) 174 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:25:50.164 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:21.220164+0000 mon.a (mon.0) 175 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:25:50.164 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cephadm 2024-04-14T15:25:21.222983+0000 mgr.a (mgr.14152) 52 : cephadm [INF] Updating smithi138:/etc/ceph/ceph.conf 2024-04-14T15:25:50.164 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cephadm 2024-04-14T15:25:21.439599+0000 mgr.a (mgr.14152) 53 : cephadm [INF] Updating smithi138:/var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T15:25:50.165 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:21.938833+0000 mon.a (mon.0) 176 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.165 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:21.944762+0000 mon.a (mon.0) 177 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.165 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:21.948534+0000 mon.a (mon.0) 178 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi138", "caps": []}]: dispatch 2024-04-14T15:25:50.165 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:21.949918+0000 mon.a (mon.0) 179 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi138", "caps": []}]': finished 2024-04-14T15:25:50.165 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cephadm 2024-04-14T15:25:21.604002+0000 mgr.a (mgr.14152) 54 : cephadm [INF] Updating smithi138:/etc/ceph/ceph.client.admin.keyring 2024-04-14T15:25:50.165 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cephadm 2024-04-14T15:25:21.768499+0000 mgr.a (mgr.14152) 55 : cephadm [INF] Updating smithi138:/var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/config/ceph.client.admin.keyring 2024-04-14T15:25:50.165 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cluster 2024-04-14T15:25:21.846152+0000 mgr.a (mgr.14152) 56 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:25:50.165 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cephadm 2024-04-14T15:25:22.484710+0000 mgr.a (mgr.14152) 57 : cephadm [INF] Deploying daemon agent.smithi138 on smithi138 2024-04-14T15:25:50.165 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:23.721839+0000 mon.a (mon.0) 180 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.165 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:23.756663+0000 mon.a (mon.0) 181 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.165 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:23.762433+0000 mon.a (mon.0) 182 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.165 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cluster 2024-04-14T15:25:23.846500+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-14T15:25:50.165 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:23.863266+0000 mon.a (mon.0) 183 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:25:50.166 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:23.868735+0000 mon.a (mon.0) 184 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:25:50.166 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:23.870402+0000 mon.a (mon.0) 185 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:25:50.166 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:23.878737+0000 mon.a (mon.0) 186 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.166 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:23.982898+0000 mon.a (mon.0) 187 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:25:50.166 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:23.987947+0000 mon.a (mon.0) 188 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:25:50.166 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:23.989597+0000 mon.a (mon.0) 189 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:25:50.166 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:23.997800+0000 mon.a (mon.0) 190 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.166 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:24.175720+0000 mon.a (mon.0) 191 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.166 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:25.221583+0000 mon.a (mon.0) 192 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.166 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:25.225530+0000 mon.a (mon.0) 193 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.166 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cluster 2024-04-14T15:25:25.846892+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-14T15:25:50.166 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:26.935191+0000 mon.a (mon.0) 194 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.166 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cluster 2024-04-14T15:25:27.847263+0000 mgr.a (mgr.14152) 60 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:25:50.166 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:28.995807+0000 mon.a (mon.0) 195 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.166 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:29.001964+0000 mon.a (mon.0) 196 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.167 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:29.009691+0000 mon.a (mon.0) 197 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.167 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:29.029710+0000 mgr.a (mgr.14152) 61 : audit [DBG] from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-14T15:25:50.167 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cluster 2024-04-14T15:25:29.847692+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-14T15:25:50.167 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cluster 2024-04-14T15:25:31.848133+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-14T15:25:50.167 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cluster 2024-04-14T15:25:33.848597+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-14T15:25:50.167 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cluster 2024-04-14T15:25:35.849055+0000 mgr.a (mgr.14152) 65 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:25:50.167 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:37.089975+0000 mon.a (mon.0) 198 : audit [INF] from='client.? 172.21.15.47:0/1019795708' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-04-14T15:25:50.167 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:37.240100+0000 mon.a (mon.0) 199 : audit [INF] from='client.? 172.21.15.47:0/1019795708' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-04-14T15:25:50.167 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cluster 2024-04-14T15:25:37.242884+0000 mon.a (mon.0) 200 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-04-14T15:25:50.167 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:38.113247+0000 mon.a (mon.0) 201 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.167 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:38.121050+0000 mon.a (mon.0) 202 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.167 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cluster 2024-04-14T15:25:37.849453+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-14T15:25:50.167 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cluster 2024-04-14T15:25:39.849899+0000 mgr.a (mgr.14152) 67 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:25:50.167 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:41.208228+0000 mon.a (mon.0) 203 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.167 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:41.214179+0000 mon.a (mon.0) 204 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.168 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:41.222197+0000 mon.a (mon.0) 205 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.168 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:41.646253+0000 mgr.a (mgr.14152) 68 : audit [DBG] from='client.14188 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi047:172.21.15.47=a;smithi110:172.21.15.110=b;smithi138:172.21.15.138=c", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:25:50.168 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cephadm 2024-04-14T15:25:41.648807+0000 mgr.a (mgr.14152) 69 : cephadm [INF] Saving service mon spec with placement smithi047:172.21.15.47=a;smithi110:172.21.15.110=b;smithi138:172.21.15.138=c;count:3 2024-04-14T15:25:50.168 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:41.653905+0000 mon.a (mon.0) 206 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.168 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:41.663908+0000 mon.a (mon.0) 207 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:25:50.168 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:41.669196+0000 mon.a (mon.0) 208 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:25:50.168 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:41.670934+0000 mon.a (mon.0) 209 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:25:50.168 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:41.678781+0000 mon.a (mon.0) 210 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.168 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:41.684009+0000 mon.a (mon.0) 211 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-14T15:25:50.168 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:41.685750+0000 mon.a (mon.0) 212 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:25:50.168 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cephadm 2024-04-14T15:25:41.687465+0000 mgr.a (mgr.14152) 70 : cephadm [INF] Deploying daemon mon.c on smithi138 2024-04-14T15:25:50.168 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cluster 2024-04-14T15:25:41.850320+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-14T15:25:50.168 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cluster 2024-04-14T15:25:43.850735+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-14T15:25:50.169 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cluster 2024-04-14T15:25:45.851164+0000 mgr.a (mgr.14152) 73 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:25:50.169 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:47.429611+0000 mon.a (mon.0) 213 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.169 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:47.435663+0000 mon.a (mon.0) 214 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.169 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:47.443841+0000 mon.a (mon.0) 215 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.169 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:47.806316+0000 mon.a (mon.0) 216 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.169 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:47.812268+0000 mon.a (mon.0) 217 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.169 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:47.822005+0000 mon.a (mon.0) 218 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.169 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:47.823517+0000 mon.a (mon.0) 219 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-14T15:25:50.169 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:47.825526+0000 mon.a (mon.0) 220 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:25:50.169 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cephadm 2024-04-14T15:25:47.827676+0000 mgr.a (mgr.14152) 74 : cephadm [INF] Deploying daemon mon.b on smithi110 2024-04-14T15:25:50.169 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: cluster 2024-04-14T15:25:47.851513+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-14T15:25:50.169 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:49.223602+0000 mon.a (mon.0) 221 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.169 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:49.230130+0000 mon.a (mon.0) 222 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.169 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: audit 2024-04-14T15:25:49.238360+0000 mon.a (mon.0) 223 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:50.170 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:50 smithi138 bash[22282]: debug 2024-04-14T15:25:50.126+0000 7f35b0390700 1 mon.c@-1(synchronizing).paxosservice(auth 1..6) refresh upgraded, format 0 -> 3 2024-04-14T15:25:52.011 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:51 smithi110 systemd[1]: Started Ceph mon.b for af942ef8-fa72-11ee-bc8e-c7b262605968. 2024-04-14T15:25:52.563 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-04-14T15:25:52.563 DEBUG:teuthology.orchestra.run.smithi138:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph mon dump -f json 2024-04-14T15:25:53.028 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.824+0000 7f6767a49c80 0 set uid:gid to 167:167 (ceph:ceph) 2024-04-14T15:25:53.028 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.824+0000 7f6767a49c80 0 ceph version 19.0.0-2778-ga971fd5f (a971fd5f5719038c70b817bafacd6d5400b1d888) squid (dev), process ceph-mon, pid 7 2024-04-14T15:25:53.028 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.824+0000 7f6767a49c80 0 pidfile_write: ignore empty --pid-file 2024-04-14T15:25:53.029 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 0 load: jerasure load: lrc 2024-04-14T15:25:53.029 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: RocksDB version: 7.9.2 2024-04-14T15:25:53.029 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Git sha 0 2024-04-14T15:25:53.029 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Compile date 2024-04-06 20:28:24 2024-04-14T15:25:53.029 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: DB SUMMARY 2024-04-14T15:25:53.029 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: DB Session ID: PYVH645AAL3WJNNDCMDG 2024-04-14T15:25:53.029 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: CURRENT file: CURRENT 2024-04-14T15:25:53.029 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: IDENTITY file: IDENTITY 2024-04-14T15:25:53.029 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: MANIFEST file: MANIFEST-000005 size: 59 Bytes 2024-04-14T15:25:53.030 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-b/store.db dir, Total Num: 0, files: 2024-04-14T15:25:53.030 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-b/store.db: 000004.log size: 511 ; 2024-04-14T15:25:53.030 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.error_if_exists: 0 2024-04-14T15:25:53.030 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.create_if_missing: 0 2024-04-14T15:25:53.030 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.paranoid_checks: 1 2024-04-14T15:25:53.030 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-04-14T15:25:53.030 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-04-14T15:25:53.030 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-04-14T15:25:53.030 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.env: 0x55797c9a6c60 2024-04-14T15:25:53.030 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.fs: PosixFileSystem 2024-04-14T15:25:53.031 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.info_log: 0x55797f1adc40 2024-04-14T15:25:53.031 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.max_file_opening_threads: 16 2024-04-14T15:25:53.031 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.statistics: (nil) 2024-04-14T15:25:53.031 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.use_fsync: 0 2024-04-14T15:25:53.031 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.max_log_file_size: 0 2024-04-14T15:25:53.031 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-04-14T15:25:53.031 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-04-14T15:25:53.031 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.keep_log_file_num: 1000 2024-04-14T15:25:53.031 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.recycle_log_file_num: 0 2024-04-14T15:25:53.031 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.allow_fallocate: 1 2024-04-14T15:25:53.031 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.allow_mmap_reads: 0 2024-04-14T15:25:53.031 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.allow_mmap_writes: 0 2024-04-14T15:25:53.032 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.use_direct_reads: 0 2024-04-14T15:25:53.032 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-04-14T15:25:53.032 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.create_missing_column_families: 0 2024-04-14T15:25:53.032 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.db_log_dir: 2024-04-14T15:25:53.032 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.wal_dir: 2024-04-14T15:25:53.032 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-04-14T15:25:53.032 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-04-14T15:25:53.032 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-04-14T15:25:53.032 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-04-14T15:25:53.032 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-04-14T15:25:53.032 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-04-14T15:25:53.032 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.advise_random_on_open: 1 2024-04-14T15:25:53.032 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.db_write_buffer_size: 0 2024-04-14T15:25:53.032 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.write_buffer_manager: 0x55797f1801e0 2024-04-14T15:25:53.033 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-04-14T15:25:53.033 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-04-14T15:25:53.033 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-04-14T15:25:53.033 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.rate_limiter: (nil) 2024-04-14T15:25:53.033 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-04-14T15:25:53.033 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.wal_recovery_mode: 2 2024-04-14T15:25:53.033 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.enable_thread_tracking: 0 2024-04-14T15:25:53.033 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.enable_pipelined_write: 0 2024-04-14T15:25:53.033 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.unordered_write: 0 2024-04-14T15:25:53.033 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-04-14T15:25:53.033 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-04-14T15:25:53.033 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-04-14T15:25:53.033 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-04-14T15:25:53.033 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.row_cache: None 2024-04-14T15:25:53.033 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.wal_filter: None 2024-04-14T15:25:53.033 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-04-14T15:25:53.034 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.allow_ingest_behind: 0 2024-04-14T15:25:53.034 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.two_write_queues: 0 2024-04-14T15:25:53.034 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.manual_wal_flush: 0 2024-04-14T15:25:53.034 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.wal_compression: 0 2024-04-14T15:25:53.034 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.atomic_flush: 0 2024-04-14T15:25:53.034 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-04-14T15:25:53.034 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-04-14T15:25:53.034 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-04-14T15:25:53.034 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.log_readahead_size: 0 2024-04-14T15:25:53.034 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-04-14T15:25:53.034 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.best_efforts_recovery: 0 2024-04-14T15:25:53.035 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-04-14T15:25:53.035 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-04-14T15:25:53.035 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.allow_data_in_errors: 0 2024-04-14T15:25:53.035 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.db_host_id: __hostname__ 2024-04-14T15:25:53.035 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-04-14T15:25:53.035 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.max_background_jobs: 2 2024-04-14T15:25:53.035 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.max_background_compactions: -1 2024-04-14T15:25:53.035 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.max_subcompactions: 1 2024-04-14T15:25:53.035 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-04-14T15:25:53.035 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-04-14T15:25:53.035 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-04-14T15:25:53.035 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.max_total_wal_size: 0 2024-04-14T15:25:53.035 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-04-14T15:25:53.036 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-04-14T15:25:53.036 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-04-14T15:25:53.036 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-04-14T15:25:53.036 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.max_open_files: -1 2024-04-14T15:25:53.036 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.bytes_per_sync: 0 2024-04-14T15:25:53.036 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-04-14T15:25:53.036 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-04-14T15:25:53.036 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.compaction_readahead_size: 0 2024-04-14T15:25:53.036 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.max_background_flushes: -1 2024-04-14T15:25:53.036 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Compression algorithms supported: 2024-04-14T15:25:53.036 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-04-14T15:25:53.036 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: kZSTD supported: 0 2024-04-14T15:25:53.036 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: kXpressCompression supported: 0 2024-04-14T15:25:53.036 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: kLZ4HCCompression supported: 1 2024-04-14T15:25:53.036 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: kZlibCompression supported: 1 2024-04-14T15:25:53.036 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: kSnappyCompression supported: 1 2024-04-14T15:25:53.037 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: kLZ4Compression supported: 1 2024-04-14T15:25:53.037 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: kBZip2Compression supported: 0 2024-04-14T15:25:53.037 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-04-14T15:25:53.037 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-04-14T15:25:53.037 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-b/store.db/MANIFEST-000005 2024-04-14T15:25:53.037 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-04-14T15:25:53.039 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-04-14T15:25:53.039 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.merge_operator: 2024-04-14T15:25:53.039 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.compaction_filter: None 2024-04-14T15:25:53.039 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.compaction_filter_factory: None 2024-04-14T15:25:53.039 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.sst_partitioner_factory: None 2024-04-14T15:25:53.039 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-04-14T15:25:53.039 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-04-14T15:25:53.039 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55797f1ade00) 2024-04-14T15:25:53.040 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cache_index_and_filter_blocks: 1 2024-04-14T15:25:53.040 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cache_index_and_filter_blocks_with_high_priority: 0 2024-04-14T15:25:53.040 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-04-14T15:25:53.040 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: pin_top_level_index_and_filter: 1 2024-04-14T15:25:53.040 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: index_type: 0 2024-04-14T15:25:53.040 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: data_block_index_type: 0 2024-04-14T15:25:53.040 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: index_shortening: 1 2024-04-14T15:25:53.040 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: data_block_hash_table_util_ratio: 0.750000 2024-04-14T15:25:53.040 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: checksum: 4 2024-04-14T15:25:53.040 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: no_block_cache: 0 2024-04-14T15:25:53.040 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: block_cache: 0x55797f1b1090 2024-04-14T15:25:53.040 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: block_cache_name: BinnedLRUCache 2024-04-14T15:25:53.040 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: block_cache_options: 2024-04-14T15:25:53.040 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: capacity : 536870912 2024-04-14T15:25:53.041 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: num_shard_bits : 4 2024-04-14T15:25:53.041 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: strict_capacity_limit : 0 2024-04-14T15:25:53.041 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: high_pri_pool_ratio: 0.000 2024-04-14T15:25:53.041 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: block_cache_compressed: (nil) 2024-04-14T15:25:53.041 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: persistent_cache: (nil) 2024-04-14T15:25:53.041 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: block_size: 4096 2024-04-14T15:25:53.041 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: block_size_deviation: 10 2024-04-14T15:25:53.041 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: block_restart_interval: 16 2024-04-14T15:25:53.041 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: index_block_restart_interval: 1 2024-04-14T15:25:53.041 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: metadata_block_size: 4096 2024-04-14T15:25:53.041 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: partition_filters: 0 2024-04-14T15:25:53.041 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: use_delta_encoding: 1 2024-04-14T15:25:53.041 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: filter_policy: bloomfilter 2024-04-14T15:25:53.041 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: whole_key_filtering: 1 2024-04-14T15:25:53.042 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: verify_compression: 0 2024-04-14T15:25:53.042 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: read_amp_bytes_per_bit: 0 2024-04-14T15:25:53.042 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: format_version: 5 2024-04-14T15:25:53.042 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: enable_index_compression: 1 2024-04-14T15:25:53.042 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: block_align: 0 2024-04-14T15:25:53.042 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: max_auto_readahead_size: 262144 2024-04-14T15:25:53.042 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: prepopulate_block_cache: 0 2024-04-14T15:25:53.042 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: initial_auto_readahead_size: 8192 2024-04-14T15:25:53.042 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: num_file_reads_for_auto_readahead: 2 2024-04-14T15:25:53.042 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.write_buffer_size: 33554432 2024-04-14T15:25:53.042 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.max_write_buffer_number: 2 2024-04-14T15:25:53.042 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.compression: NoCompression 2024-04-14T15:25:53.042 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.bottommost_compression: Disabled 2024-04-14T15:25:53.042 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.prefix_extractor: nullptr 2024-04-14T15:25:53.043 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-04-14T15:25:53.043 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.num_levels: 7 2024-04-14T15:25:53.043 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-04-14T15:25:53.043 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-04-14T15:25:53.043 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-04-14T15:25:53.043 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-04-14T15:25:53.043 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-04-14T15:25:53.043 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-04-14T15:25:53.043 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-04-14T15:25:53.043 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-04-14T15:25:53.043 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-04-14T15:25:53.043 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-04-14T15:25:53.043 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-04-14T15:25:53.043 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-04-14T15:25:53.043 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-04-14T15:25:53.044 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.compression_opts.level: 32767 2024-04-14T15:25:53.044 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.compression_opts.strategy: 0 2024-04-14T15:25:53.044 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-04-14T15:25:53.044 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-04-14T15:25:53.044 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-04-14T15:25:53.044 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-04-14T15:25:53.044 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.compression_opts.enabled: false 2024-04-14T15:25:53.044 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-04-14T15:25:53.044 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-04-14T15:25:53.044 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-04-14T15:25:53.044 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-04-14T15:25:53.044 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.target_file_size_base: 67108864 2024-04-14T15:25:53.044 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-04-14T15:25:53.044 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-04-14T15:25:53.045 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-04-14T15:25:53.045 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-04-14T15:25:53.045 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-04-14T15:25:53.045 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-04-14T15:25:53.045 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-04-14T15:25:53.045 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-04-14T15:25:53.045 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-04-14T15:25:53.045 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-04-14T15:25:53.045 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-04-14T15:25:53.045 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-04-14T15:25:53.045 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-04-14T15:25:53.045 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-04-14T15:25:53.045 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.arena_block_size: 1048576 2024-04-14T15:25:53.045 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-04-14T15:25:53.045 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-04-14T15:25:53.046 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.disable_auto_compactions: 0 2024-04-14T15:25:53.046 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-04-14T15:25:53.046 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-04-14T15:25:53.046 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-04-14T15:25:53.046 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-04-14T15:25:53.046 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-04-14T15:25:53.046 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-04-14T15:25:53.046 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-04-14T15:25:53.046 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-04-14T15:25:53.046 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-04-14T15:25:53.046 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-04-14T15:25:53.046 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-04-14T15:25:53.046 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.inplace_update_support: 0 2024-04-14T15:25:53.046 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-04-14T15:25:53.047 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-04-14T15:25:53.047 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-04-14T15:25:53.047 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-04-14T15:25:53.047 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.bloom_locality: 0 2024-04-14T15:25:53.047 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.max_successive_merges: 0 2024-04-14T15:25:53.047 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-04-14T15:25:53.047 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.paranoid_file_checks: 0 2024-04-14T15:25:53.047 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.force_consistency_checks: 1 2024-04-14T15:25:53.047 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.report_bg_io_stats: 0 2024-04-14T15:25:53.047 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.ttl: 2592000 2024-04-14T15:25:53.047 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-04-14T15:25:53.047 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-04-14T15:25:53.047 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-04-14T15:25:53.047 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.enable_blob_files: false 2024-04-14T15:25:53.047 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.min_blob_size: 0 2024-04-14T15:25:53.047 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.blob_file_size: 268435456 2024-04-14T15:25:53.048 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-04-14T15:25:53.048 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-04-14T15:25:53.048 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-04-14T15:25:53.048 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-04-14T15:25:53.048 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-04-14T15:25:53.048 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.blob_file_starting_level: 0 2024-04-14T15:25:53.048 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-04-14T15:25:53.048 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 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-14T15:25:53.048 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-04-14T15:25:53.048 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.828+0000 7f6767a49c80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: f28d3cee-3c7b-487a-b77c-0a52357baa23 2024-04-14T15:25:53.048 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.832+0000 7f6767a49c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1713108352836711, "job": 1, "event": "recovery_started", "wal_files": [4]} 2024-04-14T15:25:53.048 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.832+0000 7f6767a49c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #4 mode 2 2024-04-14T15:25:53.048 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.832+0000 7f6767a49c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1713108352837207, "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": 1713108352, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "f28d3cee-3c7b-487a-b77c-0a52357baa23", "db_session_id": "PYVH645AAL3WJNNDCMDG", "orig_file_number": 8, "seqno_to_time_mapping": "N/A"}} 2024-04-14T15:25:53.048 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.832+0000 7f6767a49c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1713108352837310, "job": 1, "event": "recovery_finished"} 2024-04-14T15:25:53.048 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.832+0000 7f6767a49c80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 10 2024-04-14T15:25:53.049 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.832+0000 7f6767a49c80 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-14T15:25:53.049 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.832+0000 7f6767a49c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x55797f2a4000 2024-04-14T15:25:53.049 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.832+0000 7f6767a49c80 4 rocksdb: DB pointer 0x55797f28e000 2024-04-14T15:25:53.049 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.832+0000 7f67561a3700 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-04-14T15:25:53.049 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.832+0000 7f67561a3700 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-04-14T15:25:53.049 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: ** DB Stats ** 2024-04-14T15:25:53.049 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: Uptime(secs): 0.0 total, 0.0 interval 2024-04-14T15:25:53.049 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: 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-14T15:25:53.049 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-14T15:25:53.049 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-14T15:25:53.049 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: 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-14T15:25:53.049 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-14T15:25:53.050 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-14T15:25:53.050 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: ** Compaction Stats [default] ** 2024-04-14T15:25:53.050 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: 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-14T15:25:53.050 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-04-14T15:25:53.050 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: 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.4 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-04-14T15:25:53.050 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: 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.4 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-04-14T15:25:53.050 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: 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.4 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-04-14T15:25:53.050 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: ** Compaction Stats [default] ** 2024-04-14T15:25:53.050 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: 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-14T15:25:53.050 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-04-14T15:25:53.050 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: 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.4 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-04-14T15:25:53.050 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-04-14T15:25:53.050 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: Uptime(secs): 0.0 total, 0.0 interval 2024-04-14T15:25:53.051 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: Flush(GB): cumulative 0.000, interval 0.000 2024-04-14T15:25:53.051 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: AddFile(GB): cumulative 0.000, interval 0.000 2024-04-14T15:25:53.051 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: AddFile(Total Files): cumulative 0, interval 0 2024-04-14T15:25:53.051 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: AddFile(L0 Files): cumulative 0, interval 0 2024-04-14T15:25:53.051 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: AddFile(Keys): cumulative 0, interval 0 2024-04-14T15:25:53.051 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: Cumulative compaction: 0.00 GB write, 0.38 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-14T15:25:53.051 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: Interval compaction: 0.00 GB write, 0.38 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-14T15:25:53.051 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: 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-14T15:25:53.051 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: Block cache BinnedLRUCache@0x55797f1b1090#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-14T15:25:53.051 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: 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-14T15:25:53.051 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: ** File Read Latency Histogram By Level [default] ** 2024-04-14T15:25:53.051 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.832+0000 7f6767a49c80 0 mon.b does not exist in monmap, will attempt to join an existing cluster 2024-04-14T15:25:53.051 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.832+0000 7f6767a49c80 0 using public_addr v2:172.21.15.110:0/0 -> [v2:172.21.15.110:3300/0,v1:172.21.15.110:6789/0] 2024-04-14T15:25:53.051 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.836+0000 7f6767a49c80 0 starting mon.b rank -1 at public addrs [v2:172.21.15.110:3300/0,v1:172.21.15.110:6789/0] at bind addrs [v2:172.21.15.110:3300/0,v1:172.21.15.110:6789/0] mon_data /var/lib/ceph/mon/ceph-b fsid af942ef8-fa72-11ee-bc8e-c7b262605968 2024-04-14T15:25:53.052 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.836+0000 7f6767a49c80 1 mon.b@-1(???) e0 preinit fsid af942ef8-fa72-11ee-bc8e-c7b262605968 2024-04-14T15:25:53.052 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.856+0000 7f67591a9700 0 mon.b@-1(synchronizing).mds e1 new map 2024-04-14T15:25:53.052 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.856+0000 7f67591a9700 0 mon.b@-1(synchronizing).mds e1 print_map 2024-04-14T15:25:53.052 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: e1 2024-04-14T15:25:53.052 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: enable_multiple, ever_enabled_multiple: 1,1 2024-04-14T15:25:53.052 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: 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-14T15:25:53.052 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: legacy client fscid: -1 2024-04-14T15:25:53.052 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: 2024-04-14T15:25:53.052 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: No filesystems configured 2024-04-14T15:25:53.052 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.856+0000 7f67591a9700 1 mon.b@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-04-14T15:25:53.052 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.856+0000 7f67591a9700 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-14T15:25:53.052 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.856+0000 7f67591a9700 1 mon.b@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-04-14T15:25:53.052 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.856+0000 7f67591a9700 1 mon.b@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-04-14T15:25:53.052 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.856+0000 7f67591a9700 1 mon.b@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-04-14T15:25:53.053 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.856+0000 7f67591a9700 1 mon.b@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-04-14T15:25:53.053 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.856+0000 7f67591a9700 0 mon.b@-1(synchronizing).osd e4 crush map has features 3314932999778484224, adjusting msgr requires 2024-04-14T15:25:53.053 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.856+0000 7f67591a9700 0 mon.b@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-04-14T15:25:53.053 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.856+0000 7f67591a9700 0 mon.b@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-04-14T15:25:53.053 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.856+0000 7f67591a9700 0 mon.b@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-04-14T15:25:53.053 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:24:37.471783+0000 mon.a (mon.0) 121 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.053 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:24:37.477902+0000 mon.a (mon.0) 122 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.053 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cluster 2024-04-14T15:24:37.836784+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-14T15:25:53.053 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cluster 2024-04-14T15:24:39.837248+0000 mgr.a (mgr.14152) 14 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:25:53.053 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:24:40.398901+0000 mgr.a (mgr.14152) 15 : 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-14T15:25:53.053 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:24:40.402356+0000 mon.a (mon.0) 123 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.053 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:24:40.442505+0000 mon.a (mon.0) 124 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:25:53.053 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:24:40.444120+0000 mon.a (mon.0) 125 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:25:53.053 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:24:40.444745+0000 mon.a (mon.0) 126 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:25:53.054 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cephadm 2024-04-14T15:24:40.445660+0000 mgr.a (mgr.14152) 16 : cephadm [INF] Updating smithi047:/etc/ceph/ceph.conf 2024-04-14T15:25:53.054 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:24:41.062788+0000 mon.a (mon.0) 127 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.054 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:24:41.070351+0000 mon.a (mon.0) 128 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.054 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:24:41.075162+0000 mon.a (mon.0) 129 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.054 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cephadm 2024-04-14T15:24:40.559955+0000 mgr.a (mgr.14152) 17 : cephadm [INF] Updating smithi047:/var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T15:25:53.054 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cephadm 2024-04-14T15:24:40.724484+0000 mgr.a (mgr.14152) 18 : cephadm [INF] Updating smithi047:/etc/ceph/ceph.client.admin.keyring 2024-04-14T15:25:53.054 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cephadm 2024-04-14T15:24:40.888780+0000 mgr.a (mgr.14152) 19 : cephadm [INF] Updating smithi047:/var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/config/ceph.client.admin.keyring 2024-04-14T15:25:53.054 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cluster 2024-04-14T15:24:41.837753+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-14T15:25:53.054 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cluster 2024-04-14T15:24:43.838193+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-14T15:25:53.054 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cluster 2024-04-14T15:24:45.838619+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-14T15:25:53.054 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cluster 2024-04-14T15:24:47.839067+0000 mgr.a (mgr.14152) 23 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:25:53.054 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:24:48.591105+0000 mon.a (mon.0) 130 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.054 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:24:48.594314+0000 mon.a (mon.0) 131 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.054 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:24:48.598221+0000 mon.a (mon.0) 132 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.054 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:24:48.925935+0000 mgr.a (mgr.14152) 24 : audit [DBG] from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi110", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:25:53.055 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cephadm 2024-04-14T15:24:49.629736+0000 mgr.a (mgr.14152) 25 : cephadm [INF] Deploying cephadm binary to smithi110 2024-04-14T15:25:53.055 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cluster 2024-04-14T15:24:49.839478+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-14T15:25:53.055 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cluster 2024-04-14T15:24:51.839938+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-14T15:25:53.055 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cluster 2024-04-14T15:24:53.840297+0000 mgr.a (mgr.14152) 28 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:25:53.055 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:24:55.007167+0000 mon.a (mon.0) 133 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.055 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:24:55.052789+0000 mon.a (mon.0) 134 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:25:53.055 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cephadm 2024-04-14T15:24:55.008209+0000 mgr.a (mgr.14152) 29 : cephadm [INF] Added host smithi110 2024-04-14T15:25:53.055 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:24:55.575924+0000 mon.a (mon.0) 135 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.055 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cluster 2024-04-14T15:24:55.840774+0000 mgr.a (mgr.14152) 30 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:25:53.055 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:24:57.050819+0000 mon.a (mon.0) 136 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.055 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:24:57.055777+0000 mon.a (mon.0) 137 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.055 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:24:57.056952+0000 mon.a (mon.0) 138 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi110", "name": "osd_memory_target"}]: dispatch 2024-04-14T15:25:53.055 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:24:57.058591+0000 mon.a (mon.0) 139 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:25:53.056 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:24:57.060073+0000 mon.a (mon.0) 140 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:25:53.056 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cephadm 2024-04-14T15:24:57.062481+0000 mgr.a (mgr.14152) 31 : cephadm [INF] Updating smithi110:/etc/ceph/ceph.conf 2024-04-14T15:25:53.056 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cephadm 2024-04-14T15:24:57.278994+0000 mgr.a (mgr.14152) 32 : cephadm [INF] Updating smithi110:/var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T15:25:53.056 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cephadm 2024-04-14T15:24:57.494941+0000 mgr.a (mgr.14152) 33 : cephadm [INF] Updating smithi110:/etc/ceph/ceph.client.admin.keyring 2024-04-14T15:25:53.056 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:24:57.931416+0000 mon.a (mon.0) 141 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.056 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:24:57.937709+0000 mon.a (mon.0) 142 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.056 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:24:57.941002+0000 mon.a (mon.0) 143 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi110", "caps": []}]: dispatch 2024-04-14T15:25:53.056 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:24:57.942507+0000 mon.a (mon.0) 144 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi110", "caps": []}]': finished 2024-04-14T15:25:53.056 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cephadm 2024-04-14T15:24:57.710399+0000 mgr.a (mgr.14152) 34 : cephadm [INF] Updating smithi110:/var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/config/ceph.client.admin.keyring 2024-04-14T15:25:53.056 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cluster 2024-04-14T15:24:57.841183+0000 mgr.a (mgr.14152) 35 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:25:53.056 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cephadm 2024-04-14T15:24:58.491525+0000 mgr.a (mgr.14152) 36 : cephadm [INF] Deploying daemon agent.smithi110 on smithi110 2024-04-14T15:25:53.056 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:24:59.683809+0000 mon.a (mon.0) 145 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.056 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:24:59.713538+0000 mon.a (mon.0) 146 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.056 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:24:59.719058+0000 mon.a (mon.0) 147 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.057 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:24:59.787005+0000 mon.a (mon.0) 148 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:25:53.057 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:24:59.791774+0000 mon.a (mon.0) 149 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:25:53.057 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:24:59.793384+0000 mon.a (mon.0) 150 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:25:53.057 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:24:59.801169+0000 mon.a (mon.0) 151 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.057 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cluster 2024-04-14T15:24:59.841629+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-14T15:25:53.057 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:24:59.870751+0000 mon.a (mon.0) 152 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:25:53.057 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:24:59.875215+0000 mon.a (mon.0) 153 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:25:53.057 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:24:59.876965+0000 mon.a (mon.0) 154 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:25:53.057 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:24:59.884768+0000 mon.a (mon.0) 155 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.057 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:00.111015+0000 mon.a (mon.0) 156 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.057 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:01.182366+0000 mon.a (mon.0) 157 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.057 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:01.190271+0000 mon.a (mon.0) 158 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.057 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:01.924806+0000 mon.a (mon.0) 159 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.057 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cluster 2024-04-14T15:25:01.842079+0000 mgr.a (mgr.14152) 38 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:25:53.057 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:03.730961+0000 mgr.a (mgr.14152) 39 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-14T15:25:53.058 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cluster 2024-04-14T15:25:03.842454+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-14T15:25:53.058 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cluster 2024-04-14T15:25:05.842888+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-14T15:25:53.058 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cluster 2024-04-14T15:25:07.843316+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-14T15:25:53.058 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:08.794351+0000 mon.a (mon.0) 160 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.058 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:08.800484+0000 mon.a (mon.0) 161 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.058 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:08.808231+0000 mon.a (mon.0) 162 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.058 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cluster 2024-04-14T15:25:09.843731+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-14T15:25:53.058 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cluster 2024-04-14T15:25:11.844198+0000 mgr.a (mgr.14152) 44 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:25:53.058 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:12.878859+0000 mgr.a (mgr.14152) 45 : audit [DBG] from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi138", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:25:53.058 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:13.946914+0000 mon.a (mon.0) 163 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.058 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:13.958545+0000 mon.a (mon.0) 164 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.058 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cephadm 2024-04-14T15:25:13.746676+0000 mgr.a (mgr.14152) 46 : cephadm [INF] Deploying cephadm binary to smithi138 2024-04-14T15:25:53.058 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cluster 2024-04-14T15:25:13.844686+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-14T15:25:53.058 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cluster 2024-04-14T15:25:15.845053+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-14T15:25:53.058 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cluster 2024-04-14T15:25:17.845386+0000 mgr.a (mgr.14152) 49 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:25:53.059 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:19.240778+0000 mon.a (mon.0) 165 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.059 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cephadm 2024-04-14T15:25:19.241676+0000 mgr.a (mgr.14152) 50 : cephadm [INF] Added host smithi138 2024-04-14T15:25:53.059 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:19.261300+0000 mon.a (mon.0) 166 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:25:53.059 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:19.735684+0000 mon.a (mon.0) 167 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.059 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cluster 2024-04-14T15:25:19.845778+0000 mgr.a (mgr.14152) 51 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:25:53.059 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:21.012756+0000 mon.a (mon.0) 168 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.059 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:21.017702+0000 mon.a (mon.0) 169 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.059 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:21.023933+0000 mon.a (mon.0) 170 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.059 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:21.209830+0000 mon.a (mon.0) 171 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.059 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:21.215194+0000 mon.a (mon.0) 172 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.059 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:21.216609+0000 mon.a (mon.0) 173 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi138", "name": "osd_memory_target"}]: dispatch 2024-04-14T15:25:53.059 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:21.218524+0000 mon.a (mon.0) 174 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:25:53.059 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:21.220164+0000 mon.a (mon.0) 175 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:25:53.059 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cephadm 2024-04-14T15:25:21.222983+0000 mgr.a (mgr.14152) 52 : cephadm [INF] Updating smithi138:/etc/ceph/ceph.conf 2024-04-14T15:25:53.059 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cephadm 2024-04-14T15:25:21.439599+0000 mgr.a (mgr.14152) 53 : cephadm [INF] Updating smithi138:/var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T15:25:53.059 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:21.938833+0000 mon.a (mon.0) 176 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.060 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:21.944762+0000 mon.a (mon.0) 177 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.060 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:21.948534+0000 mon.a (mon.0) 178 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi138", "caps": []}]: dispatch 2024-04-14T15:25:53.060 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:21.949918+0000 mon.a (mon.0) 179 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi138", "caps": []}]': finished 2024-04-14T15:25:53.060 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cephadm 2024-04-14T15:25:21.604002+0000 mgr.a (mgr.14152) 54 : cephadm [INF] Updating smithi138:/etc/ceph/ceph.client.admin.keyring 2024-04-14T15:25:53.060 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cephadm 2024-04-14T15:25:21.768499+0000 mgr.a (mgr.14152) 55 : cephadm [INF] Updating smithi138:/var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/config/ceph.client.admin.keyring 2024-04-14T15:25:53.060 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cluster 2024-04-14T15:25:21.846152+0000 mgr.a (mgr.14152) 56 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:25:53.060 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cephadm 2024-04-14T15:25:22.484710+0000 mgr.a (mgr.14152) 57 : cephadm [INF] Deploying daemon agent.smithi138 on smithi138 2024-04-14T15:25:53.060 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:23.721839+0000 mon.a (mon.0) 180 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.060 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:23.756663+0000 mon.a (mon.0) 181 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.060 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:23.762433+0000 mon.a (mon.0) 182 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.060 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cluster 2024-04-14T15:25:23.846500+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-14T15:25:53.060 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:23.863266+0000 mon.a (mon.0) 183 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:25:53.060 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:23.868735+0000 mon.a (mon.0) 184 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:25:53.060 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:23.870402+0000 mon.a (mon.0) 185 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:25:53.060 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:23.878737+0000 mon.a (mon.0) 186 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.061 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:23.982898+0000 mon.a (mon.0) 187 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:25:53.061 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:23.987947+0000 mon.a (mon.0) 188 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:25:53.061 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:23.989597+0000 mon.a (mon.0) 189 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:25:53.061 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:23.997800+0000 mon.a (mon.0) 190 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.061 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:24.175720+0000 mon.a (mon.0) 191 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.061 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:25.221583+0000 mon.a (mon.0) 192 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.061 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:25.225530+0000 mon.a (mon.0) 193 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.061 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cluster 2024-04-14T15:25:25.846892+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-14T15:25:53.061 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:26.935191+0000 mon.a (mon.0) 194 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.061 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cluster 2024-04-14T15:25:27.847263+0000 mgr.a (mgr.14152) 60 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:25:53.061 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:28.995807+0000 mon.a (mon.0) 195 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.061 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:29.001964+0000 mon.a (mon.0) 196 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.061 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:29.009691+0000 mon.a (mon.0) 197 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.061 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:29.029710+0000 mgr.a (mgr.14152) 61 : audit [DBG] from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-14T15:25:53.061 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cluster 2024-04-14T15:25:29.847692+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-14T15:25:53.062 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cluster 2024-04-14T15:25:31.848133+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-14T15:25:53.062 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cluster 2024-04-14T15:25:33.848597+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-14T15:25:53.062 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cluster 2024-04-14T15:25:35.849055+0000 mgr.a (mgr.14152) 65 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:25:53.062 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:37.089975+0000 mon.a (mon.0) 198 : audit [INF] from='client.? 172.21.15.47:0/1019795708' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-04-14T15:25:53.062 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:37.240100+0000 mon.a (mon.0) 199 : audit [INF] from='client.? 172.21.15.47:0/1019795708' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-04-14T15:25:53.062 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cluster 2024-04-14T15:25:37.242884+0000 mon.a (mon.0) 200 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-04-14T15:25:53.062 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:38.113247+0000 mon.a (mon.0) 201 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.062 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:38.121050+0000 mon.a (mon.0) 202 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.062 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cluster 2024-04-14T15:25:37.849453+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-14T15:25:53.062 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cluster 2024-04-14T15:25:39.849899+0000 mgr.a (mgr.14152) 67 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:25:53.062 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:41.208228+0000 mon.a (mon.0) 203 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.062 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:41.214179+0000 mon.a (mon.0) 204 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.062 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:41.222197+0000 mon.a (mon.0) 205 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.062 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:41.646253+0000 mgr.a (mgr.14152) 68 : audit [DBG] from='client.14188 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi047:172.21.15.47=a;smithi110:172.21.15.110=b;smithi138:172.21.15.138=c", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:25:53.062 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cephadm 2024-04-14T15:25:41.648807+0000 mgr.a (mgr.14152) 69 : cephadm [INF] Saving service mon spec with placement smithi047:172.21.15.47=a;smithi110:172.21.15.110=b;smithi138:172.21.15.138=c;count:3 2024-04-14T15:25:53.063 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:41.653905+0000 mon.a (mon.0) 206 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.063 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:41.663908+0000 mon.a (mon.0) 207 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:25:53.063 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:41.669196+0000 mon.a (mon.0) 208 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:25:53.063 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:41.670934+0000 mon.a (mon.0) 209 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:25:53.063 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:41.678781+0000 mon.a (mon.0) 210 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.063 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:41.684009+0000 mon.a (mon.0) 211 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-14T15:25:53.063 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:41.685750+0000 mon.a (mon.0) 212 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:25:53.063 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cephadm 2024-04-14T15:25:41.687465+0000 mgr.a (mgr.14152) 70 : cephadm [INF] Deploying daemon mon.c on smithi138 2024-04-14T15:25:53.063 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cluster 2024-04-14T15:25:41.850320+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-14T15:25:53.063 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cluster 2024-04-14T15:25:43.850735+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-14T15:25:53.063 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cluster 2024-04-14T15:25:45.851164+0000 mgr.a (mgr.14152) 73 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:25:53.063 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:47.429611+0000 mon.a (mon.0) 213 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.063 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:47.435663+0000 mon.a (mon.0) 214 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.064 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:47.443841+0000 mon.a (mon.0) 215 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.064 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:47.806316+0000 mon.a (mon.0) 216 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.064 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:47.812268+0000 mon.a (mon.0) 217 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.064 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:47.822005+0000 mon.a (mon.0) 218 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.064 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:47.823517+0000 mon.a (mon.0) 219 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-14T15:25:53.064 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:47.825526+0000 mon.a (mon.0) 220 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:25:53.064 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cephadm 2024-04-14T15:25:47.827676+0000 mgr.a (mgr.14152) 74 : cephadm [INF] Deploying daemon mon.b on smithi110 2024-04-14T15:25:53.064 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: cluster 2024-04-14T15:25:47.851513+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-14T15:25:53.064 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:49.223602+0000 mon.a (mon.0) 221 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.064 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:49.230130+0000 mon.a (mon.0) 222 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.064 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: audit 2024-04-14T15:25:49.238360+0000 mon.a (mon.0) 223 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:53.064 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:52 smithi110 bash[22161]: debug 2024-04-14T15:25:52.860+0000 7f67591a9700 1 mon.b@-1(synchronizing).paxosservice(auth 1..6) refresh upgraded, format 0 -> 3 2024-04-14T15:25:55.562 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:55 smithi138 bash[22282]: cluster 2024-04-14T15:25:49.851929+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-14T15:25:55.562 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:55 smithi138 bash[22282]: audit 2024-04-14T15:25:50.133523+0000 mon.a (mon.0) 225 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T15:25:55.562 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:55 smithi138 bash[22282]: audit 2024-04-14T15:25:50.138219+0000 mon.a (mon.0) 226 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-14T15:25:55.562 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:55 smithi138 bash[22282]: cluster 2024-04-14T15:25:50.138607+0000 mon.a (mon.0) 227 : cluster [INF] mon.a calling monitor election 2024-04-14T15:25:55.562 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:55 smithi138 bash[22282]: audit 2024-04-14T15:25:50.157219+0000 mon.a (mon.0) 228 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T15:25:55.562 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:55 smithi138 bash[22282]: audit 2024-04-14T15:25:51.133378+0000 mon.a (mon.0) 229 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T15:25:55.563 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:55 smithi138 bash[22282]: cluster 2024-04-14T15:25:51.852272+0000 mgr.a (mgr.14152) 77 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:25:55.563 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:55 smithi138 bash[22282]: audit 2024-04-14T15:25:52.133672+0000 mon.a (mon.0) 230 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T15:25:55.563 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:55 smithi138 bash[22282]: cluster 2024-04-14T15:25:52.135616+0000 mon.c (mon.1) 1 : cluster [INF] mon.c calling monitor election 2024-04-14T15:25:55.563 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:55 smithi138 bash[22282]: audit 2024-04-14T15:25:52.872092+0000 mon.a (mon.0) 231 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:25:55.563 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:55 smithi138 bash[22282]: audit 2024-04-14T15:25:53.133880+0000 mon.a (mon.0) 232 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T15:25:55.563 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:55 smithi138 bash[22282]: cluster 2024-04-14T15:25:53.852639+0000 mgr.a (mgr.14152) 78 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:25:55.563 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:55 smithi138 bash[22282]: audit 2024-04-14T15:25:53.872089+0000 mon.a (mon.0) 233 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:25:55.563 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:55 smithi138 bash[22282]: audit 2024-04-14T15:25:54.133979+0000 mon.a (mon.0) 234 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T15:25:55.563 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:55 smithi138 bash[22282]: audit 2024-04-14T15:25:54.872736+0000 mon.a (mon.0) 235 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:25:55.563 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:55 smithi138 bash[22282]: audit 2024-04-14T15:25:55.134100+0000 mon.a (mon.0) 236 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T15:25:55.563 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:55 smithi138 bash[22282]: cluster 2024-04-14T15:25:55.180249+0000 mon.a (mon.0) 237 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-04-14T15:25:55.563 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:55 smithi138 bash[22282]: cluster 2024-04-14T15:25:55.187229+0000 mon.a (mon.0) 238 : cluster [DBG] monmap epoch 2 2024-04-14T15:25:55.563 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:55 smithi138 bash[22282]: cluster 2024-04-14T15:25:55.187268+0000 mon.a (mon.0) 239 : cluster [DBG] fsid af942ef8-fa72-11ee-bc8e-c7b262605968 2024-04-14T15:25:55.563 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:55 smithi138 bash[22282]: cluster 2024-04-14T15:25:55.187291+0000 mon.a (mon.0) 240 : cluster [DBG] last_changed 2024-04-14T15:25:50.132959+0000 2024-04-14T15:25:55.564 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:55 smithi138 bash[22282]: cluster 2024-04-14T15:25:55.187347+0000 mon.a (mon.0) 241 : cluster [DBG] created 2024-04-14T15:22:58.674104+0000 2024-04-14T15:25:55.564 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:55 smithi138 bash[22282]: cluster 2024-04-14T15:25:55.187378+0000 mon.a (mon.0) 242 : cluster [DBG] min_mon_release 19 (squid) 2024-04-14T15:25:55.564 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:55 smithi138 bash[22282]: cluster 2024-04-14T15:25:55.187401+0000 mon.a (mon.0) 243 : cluster [DBG] election_strategy: 1 2024-04-14T15:25:55.564 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:55 smithi138 bash[22282]: cluster 2024-04-14T15:25:55.187424+0000 mon.a (mon.0) 244 : cluster [DBG] 0: [v2:172.21.15.47:3300/0,v1:172.21.15.47:6789/0] mon.a 2024-04-14T15:25:55.564 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:55 smithi138 bash[22282]: cluster 2024-04-14T15:25:55.187449+0000 mon.a (mon.0) 245 : cluster [DBG] 1: [v2:172.21.15.138:3300/0,v1:172.21.15.138:6789/0] mon.c 2024-04-14T15:25:55.564 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:55 smithi138 bash[22282]: cluster 2024-04-14T15:25:55.204840+0000 mon.a (mon.0) 246 : cluster [DBG] fsmap 2024-04-14T15:25:55.564 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:55 smithi138 bash[22282]: cluster 2024-04-14T15:25:55.204898+0000 mon.a (mon.0) 247 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-04-14T15:25:55.564 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:55 smithi138 bash[22282]: cluster 2024-04-14T15:25:55.205179+0000 mon.a (mon.0) 248 : cluster [DBG] mgrmap e13: a(active, since 103s) 2024-04-14T15:25:55.564 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:55 smithi138 bash[22282]: cluster 2024-04-14T15:25:55.205445+0000 mon.a (mon.0) 249 : cluster [INF] overall HEALTH_OK 2024-04-14T15:25:55.564 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:55 smithi138 bash[22282]: audit 2024-04-14T15:25:55.212908+0000 mon.a (mon.0) 250 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:55.564 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:55 smithi138 bash[22282]: audit 2024-04-14T15:25:55.220654+0000 mon.a (mon.0) 251 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:55.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:55 smithi047 bash[21449]: cluster 2024-04-14T15:25:49.851929+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-14T15:25:55.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:55 smithi047 bash[21449]: audit 2024-04-14T15:25:50.133523+0000 mon.a (mon.0) 225 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T15:25:55.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:55 smithi047 bash[21449]: audit 2024-04-14T15:25:50.138219+0000 mon.a (mon.0) 226 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-14T15:25:55.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:55 smithi047 bash[21449]: cluster 2024-04-14T15:25:50.138607+0000 mon.a (mon.0) 227 : cluster [INF] mon.a calling monitor election 2024-04-14T15:25:55.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:55 smithi047 bash[21449]: audit 2024-04-14T15:25:50.157219+0000 mon.a (mon.0) 228 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T15:25:55.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:55 smithi047 bash[21449]: audit 2024-04-14T15:25:51.133378+0000 mon.a (mon.0) 229 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T15:25:55.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:55 smithi047 bash[21449]: cluster 2024-04-14T15:25:51.852272+0000 mgr.a (mgr.14152) 77 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:25:55.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:55 smithi047 bash[21449]: audit 2024-04-14T15:25:52.133672+0000 mon.a (mon.0) 230 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T15:25:55.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:55 smithi047 bash[21449]: cluster 2024-04-14T15:25:52.135616+0000 mon.c (mon.1) 1 : cluster [INF] mon.c calling monitor election 2024-04-14T15:25:55.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:55 smithi047 bash[21449]: audit 2024-04-14T15:25:52.872092+0000 mon.a (mon.0) 231 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:25:55.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:55 smithi047 bash[21449]: audit 2024-04-14T15:25:53.133880+0000 mon.a (mon.0) 232 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T15:25:55.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:55 smithi047 bash[21449]: cluster 2024-04-14T15:25:53.852639+0000 mgr.a (mgr.14152) 78 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:25:55.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:55 smithi047 bash[21449]: audit 2024-04-14T15:25:53.872089+0000 mon.a (mon.0) 233 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:25:55.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:55 smithi047 bash[21449]: audit 2024-04-14T15:25:54.133979+0000 mon.a (mon.0) 234 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T15:25:55.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:55 smithi047 bash[21449]: audit 2024-04-14T15:25:54.872736+0000 mon.a (mon.0) 235 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:25:55.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:55 smithi047 bash[21449]: audit 2024-04-14T15:25:55.134100+0000 mon.a (mon.0) 236 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T15:25:55.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:55 smithi047 bash[21449]: cluster 2024-04-14T15:25:55.180249+0000 mon.a (mon.0) 237 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-04-14T15:25:55.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:55 smithi047 bash[21449]: cluster 2024-04-14T15:25:55.187229+0000 mon.a (mon.0) 238 : cluster [DBG] monmap epoch 2 2024-04-14T15:25:55.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:55 smithi047 bash[21449]: cluster 2024-04-14T15:25:55.187268+0000 mon.a (mon.0) 239 : cluster [DBG] fsid af942ef8-fa72-11ee-bc8e-c7b262605968 2024-04-14T15:25:55.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:55 smithi047 bash[21449]: cluster 2024-04-14T15:25:55.187291+0000 mon.a (mon.0) 240 : cluster [DBG] last_changed 2024-04-14T15:25:50.132959+0000 2024-04-14T15:25:55.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:55 smithi047 bash[21449]: cluster 2024-04-14T15:25:55.187347+0000 mon.a (mon.0) 241 : cluster [DBG] created 2024-04-14T15:22:58.674104+0000 2024-04-14T15:25:55.713 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:55 smithi047 bash[21449]: cluster 2024-04-14T15:25:55.187378+0000 mon.a (mon.0) 242 : cluster [DBG] min_mon_release 19 (squid) 2024-04-14T15:25:55.713 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:55 smithi047 bash[21449]: cluster 2024-04-14T15:25:55.187401+0000 mon.a (mon.0) 243 : cluster [DBG] election_strategy: 1 2024-04-14T15:25:55.713 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:55 smithi047 bash[21449]: cluster 2024-04-14T15:25:55.187424+0000 mon.a (mon.0) 244 : cluster [DBG] 0: [v2:172.21.15.47:3300/0,v1:172.21.15.47:6789/0] mon.a 2024-04-14T15:25:55.713 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:55 smithi047 bash[21449]: cluster 2024-04-14T15:25:55.187449+0000 mon.a (mon.0) 245 : cluster [DBG] 1: [v2:172.21.15.138:3300/0,v1:172.21.15.138:6789/0] mon.c 2024-04-14T15:25:55.713 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:55 smithi047 bash[21449]: cluster 2024-04-14T15:25:55.204840+0000 mon.a (mon.0) 246 : cluster [DBG] fsmap 2024-04-14T15:25:55.713 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:55 smithi047 bash[21449]: cluster 2024-04-14T15:25:55.204898+0000 mon.a (mon.0) 247 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-04-14T15:25:55.713 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:55 smithi047 bash[21449]: cluster 2024-04-14T15:25:55.205179+0000 mon.a (mon.0) 248 : cluster [DBG] mgrmap e13: a(active, since 103s) 2024-04-14T15:25:55.713 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:55 smithi047 bash[21449]: cluster 2024-04-14T15:25:55.205445+0000 mon.a (mon.0) 249 : cluster [INF] overall HEALTH_OK 2024-04-14T15:25:55.713 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:55 smithi047 bash[21449]: audit 2024-04-14T15:25:55.212908+0000 mon.a (mon.0) 250 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:55.713 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:55 smithi047 bash[21449]: audit 2024-04-14T15:25:55.220654+0000 mon.a (mon.0) 251 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:56.265 INFO:teuthology.orchestra.run.smithi138.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.c/config 2024-04-14T15:25:56.561 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:56 smithi138 bash[22282]: audit 2024-04-14T15:25:55.276353+0000 mon.a (mon.0) 252 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:56.562 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:56 smithi138 bash[22282]: audit 2024-04-14T15:25:55.283338+0000 mon.a (mon.0) 253 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:56.562 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:56 smithi138 bash[22282]: audit 2024-04-14T15:25:55.382344+0000 mon.a (mon.0) 254 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:25:56.562 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:56 smithi138 bash[22282]: audit 2024-04-14T15:25:55.387159+0000 mon.a (mon.0) 255 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:25:56.562 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:56 smithi138 bash[22282]: audit 2024-04-14T15:25:55.388658+0000 mon.a (mon.0) 256 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:25:56.562 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:56 smithi138 bash[22282]: cephadm 2024-04-14T15:25:55.391068+0000 mgr.a (mgr.14152) 79 : cephadm [INF] Updating smithi047:/etc/ceph/ceph.conf 2024-04-14T15:25:56.562 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:56 smithi138 bash[22282]: cephadm 2024-04-14T15:25:55.391928+0000 mgr.a (mgr.14152) 80 : cephadm [INF] Updating smithi110:/etc/ceph/ceph.conf 2024-04-14T15:25:56.562 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:56 smithi138 bash[22282]: cephadm 2024-04-14T15:25:55.392918+0000 mgr.a (mgr.14152) 81 : cephadm [INF] Updating smithi138:/etc/ceph/ceph.conf 2024-04-14T15:25:56.562 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:56 smithi138 bash[22282]: audit 2024-04-14T15:25:55.871620+0000 mon.a (mon.0) 257 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:25:56.562 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:56 smithi138 bash[22282]: audit 2024-04-14T15:25:55.876623+0000 mon.a (mon.0) 258 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:56.562 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:56 smithi138 bash[22282]: audit 2024-04-14T15:25:55.879948+0000 mon.a (mon.0) 259 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:56.562 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:56 smithi138 bash[22282]: audit 2024-04-14T15:25:55.882834+0000 mon.a (mon.0) 260 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:56.562 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:56 smithi138 bash[22282]: audit 2024-04-14T15:25:55.886006+0000 mon.a (mon.0) 261 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:56.563 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:56 smithi138 bash[22282]: audit 2024-04-14T15:25:55.888892+0000 mon.a (mon.0) 262 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:56.563 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:56 smithi138 bash[22282]: audit 2024-04-14T15:25:55.891741+0000 mon.a (mon.0) 263 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:56.563 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:56 smithi138 bash[22282]: audit 2024-04-14T15:25:55.895279+0000 mon.a (mon.0) 264 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:56.563 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:56 smithi138 bash[22282]: audit 2024-04-14T15:25:55.944010+0000 mon.a (mon.0) 265 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-14T15:25:56.563 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:56 smithi138 bash[22282]: audit 2024-04-14T15:25:55.944770+0000 mon.a (mon.0) 266 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-14T15:25:56.563 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:56 smithi138 bash[22282]: audit 2024-04-14T15:25:55.945696+0000 mon.a (mon.0) 267 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:25:56.563 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:25:56 smithi138 bash[22282]: audit 2024-04-14T15:25:56.134187+0000 mon.a (mon.0) 268 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T15:25:56.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:56 smithi047 bash[21449]: audit 2024-04-14T15:25:55.276353+0000 mon.a (mon.0) 252 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:56.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:56 smithi047 bash[21449]: audit 2024-04-14T15:25:55.283338+0000 mon.a (mon.0) 253 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:56.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:56 smithi047 bash[21449]: audit 2024-04-14T15:25:55.382344+0000 mon.a (mon.0) 254 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:25:56.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:56 smithi047 bash[21449]: audit 2024-04-14T15:25:55.387159+0000 mon.a (mon.0) 255 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:25:56.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:56 smithi047 bash[21449]: audit 2024-04-14T15:25:55.388658+0000 mon.a (mon.0) 256 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:25:56.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:56 smithi047 bash[21449]: cephadm 2024-04-14T15:25:55.391068+0000 mgr.a (mgr.14152) 79 : cephadm [INF] Updating smithi047:/etc/ceph/ceph.conf 2024-04-14T15:25:56.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:56 smithi047 bash[21449]: cephadm 2024-04-14T15:25:55.391928+0000 mgr.a (mgr.14152) 80 : cephadm [INF] Updating smithi110:/etc/ceph/ceph.conf 2024-04-14T15:25:56.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:56 smithi047 bash[21449]: cephadm 2024-04-14T15:25:55.392918+0000 mgr.a (mgr.14152) 81 : cephadm [INF] Updating smithi138:/etc/ceph/ceph.conf 2024-04-14T15:25:56.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:56 smithi047 bash[21449]: audit 2024-04-14T15:25:55.871620+0000 mon.a (mon.0) 257 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:25:56.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:56 smithi047 bash[21449]: audit 2024-04-14T15:25:55.876623+0000 mon.a (mon.0) 258 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:56.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:56 smithi047 bash[21449]: audit 2024-04-14T15:25:55.879948+0000 mon.a (mon.0) 259 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:56.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:56 smithi047 bash[21449]: audit 2024-04-14T15:25:55.882834+0000 mon.a (mon.0) 260 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:56.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:56 smithi047 bash[21449]: audit 2024-04-14T15:25:55.886006+0000 mon.a (mon.0) 261 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:56.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:56 smithi047 bash[21449]: audit 2024-04-14T15:25:55.888892+0000 mon.a (mon.0) 262 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:56.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:56 smithi047 bash[21449]: audit 2024-04-14T15:25:55.891741+0000 mon.a (mon.0) 263 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:56.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:56 smithi047 bash[21449]: audit 2024-04-14T15:25:55.895279+0000 mon.a (mon.0) 264 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:56.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:56 smithi047 bash[21449]: audit 2024-04-14T15:25:55.944010+0000 mon.a (mon.0) 265 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-14T15:25:56.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:56 smithi047 bash[21449]: audit 2024-04-14T15:25:55.944770+0000 mon.a (mon.0) 266 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-14T15:25:56.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:56 smithi047 bash[21449]: audit 2024-04-14T15:25:55.945696+0000 mon.a (mon.0) 267 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:25:56.713 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:25:56 smithi047 bash[21449]: audit 2024-04-14T15:25:56.134187+0000 mon.a (mon.0) 268 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T15:25:57.144 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: cluster 2024-04-14T15:25:49.851929+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-14T15:25:57.144 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: audit 2024-04-14T15:25:50.133523+0000 mon.a (mon.0) 225 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T15:25:57.144 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: audit 2024-04-14T15:25:50.138219+0000 mon.a (mon.0) 226 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-14T15:25:57.144 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: cluster 2024-04-14T15:25:50.138607+0000 mon.a (mon.0) 227 : cluster [INF] mon.a calling monitor election 2024-04-14T15:25:57.144 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: audit 2024-04-14T15:25:50.157219+0000 mon.a (mon.0) 228 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T15:25:57.144 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: audit 2024-04-14T15:25:51.133378+0000 mon.a (mon.0) 229 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T15:25:57.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: cluster 2024-04-14T15:25:51.852272+0000 mgr.a (mgr.14152) 77 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:25:57.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: audit 2024-04-14T15:25:52.133672+0000 mon.a (mon.0) 230 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T15:25:57.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: cluster 2024-04-14T15:25:52.135616+0000 mon.c (mon.1) 1 : cluster [INF] mon.c calling monitor election 2024-04-14T15:25:57.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: audit 2024-04-14T15:25:52.872092+0000 mon.a (mon.0) 231 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:25:57.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: audit 2024-04-14T15:25:53.133880+0000 mon.a (mon.0) 232 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T15:25:57.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: cluster 2024-04-14T15:25:53.852639+0000 mgr.a (mgr.14152) 78 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:25:57.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: audit 2024-04-14T15:25:53.872089+0000 mon.a (mon.0) 233 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:25:57.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: audit 2024-04-14T15:25:54.133979+0000 mon.a (mon.0) 234 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T15:25:57.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: audit 2024-04-14T15:25:54.872736+0000 mon.a (mon.0) 235 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:25:57.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: audit 2024-04-14T15:25:55.134100+0000 mon.a (mon.0) 236 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T15:25:57.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: cluster 2024-04-14T15:25:55.180249+0000 mon.a (mon.0) 237 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-04-14T15:25:57.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: cluster 2024-04-14T15:25:55.187229+0000 mon.a (mon.0) 238 : cluster [DBG] monmap epoch 2 2024-04-14T15:25:57.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: cluster 2024-04-14T15:25:55.187268+0000 mon.a (mon.0) 239 : cluster [DBG] fsid af942ef8-fa72-11ee-bc8e-c7b262605968 2024-04-14T15:25:57.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: cluster 2024-04-14T15:25:55.187291+0000 mon.a (mon.0) 240 : cluster [DBG] last_changed 2024-04-14T15:25:50.132959+0000 2024-04-14T15:25:57.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: cluster 2024-04-14T15:25:55.187347+0000 mon.a (mon.0) 241 : cluster [DBG] created 2024-04-14T15:22:58.674104+0000 2024-04-14T15:25:57.146 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: cluster 2024-04-14T15:25:55.187378+0000 mon.a (mon.0) 242 : cluster [DBG] min_mon_release 19 (squid) 2024-04-14T15:25:57.146 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: cluster 2024-04-14T15:25:55.187401+0000 mon.a (mon.0) 243 : cluster [DBG] election_strategy: 1 2024-04-14T15:25:57.146 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: cluster 2024-04-14T15:25:55.187424+0000 mon.a (mon.0) 244 : cluster [DBG] 0: [v2:172.21.15.47:3300/0,v1:172.21.15.47:6789/0] mon.a 2024-04-14T15:25:57.146 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: cluster 2024-04-14T15:25:55.187449+0000 mon.a (mon.0) 245 : cluster [DBG] 1: [v2:172.21.15.138:3300/0,v1:172.21.15.138:6789/0] mon.c 2024-04-14T15:25:57.146 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: cluster 2024-04-14T15:25:55.204840+0000 mon.a (mon.0) 246 : cluster [DBG] fsmap 2024-04-14T15:25:57.146 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: cluster 2024-04-14T15:25:55.204898+0000 mon.a (mon.0) 247 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-04-14T15:25:57.146 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: cluster 2024-04-14T15:25:55.205179+0000 mon.a (mon.0) 248 : cluster [DBG] mgrmap e13: a(active, since 103s) 2024-04-14T15:25:57.146 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: cluster 2024-04-14T15:25:55.205445+0000 mon.a (mon.0) 249 : cluster [INF] overall HEALTH_OK 2024-04-14T15:25:57.146 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: audit 2024-04-14T15:25:55.212908+0000 mon.a (mon.0) 250 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:57.146 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: audit 2024-04-14T15:25:55.220654+0000 mon.a (mon.0) 251 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:57.146 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: audit 2024-04-14T15:25:55.276353+0000 mon.a (mon.0) 252 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:57.146 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: audit 2024-04-14T15:25:55.283338+0000 mon.a (mon.0) 253 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:57.146 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: audit 2024-04-14T15:25:55.382344+0000 mon.a (mon.0) 254 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:25:57.146 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: audit 2024-04-14T15:25:55.387159+0000 mon.a (mon.0) 255 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:25:57.147 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: audit 2024-04-14T15:25:55.388658+0000 mon.a (mon.0) 256 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:25:57.147 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: cephadm 2024-04-14T15:25:55.391068+0000 mgr.a (mgr.14152) 79 : cephadm [INF] Updating smithi047:/etc/ceph/ceph.conf 2024-04-14T15:25:57.147 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: cephadm 2024-04-14T15:25:55.391928+0000 mgr.a (mgr.14152) 80 : cephadm [INF] Updating smithi110:/etc/ceph/ceph.conf 2024-04-14T15:25:57.147 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: cephadm 2024-04-14T15:25:55.392918+0000 mgr.a (mgr.14152) 81 : cephadm [INF] Updating smithi138:/etc/ceph/ceph.conf 2024-04-14T15:25:57.147 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: audit 2024-04-14T15:25:55.871620+0000 mon.a (mon.0) 257 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:25:57.147 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: audit 2024-04-14T15:25:55.876623+0000 mon.a (mon.0) 258 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:57.147 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: audit 2024-04-14T15:25:55.879948+0000 mon.a (mon.0) 259 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:57.147 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: audit 2024-04-14T15:25:55.882834+0000 mon.a (mon.0) 260 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:57.147 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: audit 2024-04-14T15:25:55.886006+0000 mon.a (mon.0) 261 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:57.147 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: audit 2024-04-14T15:25:55.888892+0000 mon.a (mon.0) 262 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:57.147 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: audit 2024-04-14T15:25:55.891741+0000 mon.a (mon.0) 263 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:57.147 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: audit 2024-04-14T15:25:55.895279+0000 mon.a (mon.0) 264 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:25:57.147 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: audit 2024-04-14T15:25:55.944010+0000 mon.a (mon.0) 265 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-14T15:25:57.147 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: audit 2024-04-14T15:25:55.944770+0000 mon.a (mon.0) 266 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-14T15:25:57.148 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: audit 2024-04-14T15:25:55.945696+0000 mon.a (mon.0) 267 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:25:57.148 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:25:56 smithi110 bash[22161]: audit 2024-04-14T15:25:56.134187+0000 mon.a (mon.0) 268 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T15:26:02.211 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:01 smithi047 bash[21449]: audit 2024-04-14T15:25:56.890695+0000 mon.a (mon.0) 270 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-14T15:26:02.211 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:01 smithi047 bash[21449]: cluster 2024-04-14T15:25:56.891131+0000 mon.a (mon.0) 271 : cluster [INF] mon.a calling monitor election 2024-04-14T15:26:02.211 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:01 smithi047 bash[21449]: cluster 2024-04-14T15:25:56.892109+0000 mon.c (mon.1) 2 : cluster [INF] mon.c calling monitor election 2024-04-14T15:26:02.211 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:01 smithi047 bash[21449]: audit 2024-04-14T15:25:56.909426+0000 mon.a (mon.0) 272 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:26:02.212 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:01 smithi047 bash[21449]: audit 2024-04-14T15:25:56.909691+0000 mon.a (mon.0) 273 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T15:26:02.212 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:01 smithi047 bash[21449]: cluster 2024-04-14T15:25:57.853315+0000 mgr.a (mgr.14152) 89 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:02.212 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:01 smithi047 bash[21449]: audit 2024-04-14T15:25:57.873132+0000 mon.a (mon.0) 274 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:26:02.212 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:01 smithi047 bash[21449]: audit 2024-04-14T15:25:58.873282+0000 mon.a (mon.0) 275 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:26:02.212 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:01 smithi047 bash[21449]: cluster 2024-04-14T15:25:59.853749+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-14T15:26:02.212 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:01 smithi047 bash[21449]: audit 2024-04-14T15:25:59.873205+0000 mon.a (mon.0) 276 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:26:02.212 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:01 smithi047 bash[21449]: audit 2024-04-14T15:26:00.873648+0000 mon.a (mon.0) 277 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:26:02.212 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:01 smithi047 bash[21449]: audit 2024-04-14T15:26:01.873725+0000 mon.a (mon.0) 278 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:26:02.212 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:01 smithi047 bash[21449]: cluster 2024-04-14T15:26:01.909413+0000 mon.a (mon.0) 279 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-04-14T15:26:02.212 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:01 smithi047 bash[21449]: cluster 2024-04-14T15:26:01.915662+0000 mon.a (mon.0) 280 : cluster [DBG] monmap epoch 3 2024-04-14T15:26:02.212 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:01 smithi047 bash[21449]: cluster 2024-04-14T15:26:01.915697+0000 mon.a (mon.0) 281 : cluster [DBG] fsid af942ef8-fa72-11ee-bc8e-c7b262605968 2024-04-14T15:26:02.212 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:01 smithi047 bash[21449]: cluster 2024-04-14T15:26:01.915718+0000 mon.a (mon.0) 282 : cluster [DBG] last_changed 2024-04-14T15:25:56.884122+0000 2024-04-14T15:26:02.212 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:01 smithi047 bash[21449]: cluster 2024-04-14T15:26:01.915741+0000 mon.a (mon.0) 283 : cluster [DBG] created 2024-04-14T15:22:58.674104+0000 2024-04-14T15:26:02.212 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:01 smithi047 bash[21449]: cluster 2024-04-14T15:26:01.915761+0000 mon.a (mon.0) 284 : cluster [DBG] min_mon_release 19 (squid) 2024-04-14T15:26:02.213 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:01 smithi047 bash[21449]: cluster 2024-04-14T15:26:01.915781+0000 mon.a (mon.0) 285 : cluster [DBG] election_strategy: 1 2024-04-14T15:26:02.213 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:01 smithi047 bash[21449]: cluster 2024-04-14T15:26:01.915801+0000 mon.a (mon.0) 286 : cluster [DBG] 0: [v2:172.21.15.47:3300/0,v1:172.21.15.47:6789/0] mon.a 2024-04-14T15:26:02.213 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:01 smithi047 bash[21449]: cluster 2024-04-14T15:26:01.915822+0000 mon.a (mon.0) 287 : cluster [DBG] 1: [v2:172.21.15.138:3300/0,v1:172.21.15.138:6789/0] mon.c 2024-04-14T15:26:02.213 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:01 smithi047 bash[21449]: cluster 2024-04-14T15:26:01.915842+0000 mon.a (mon.0) 288 : cluster [DBG] 2: [v2:172.21.15.110:3300/0,v1:172.21.15.110:6789/0] mon.b 2024-04-14T15:26:02.213 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:01 smithi047 bash[21449]: cluster 2024-04-14T15:26:01.936401+0000 mon.a (mon.0) 289 : cluster [DBG] fsmap 2024-04-14T15:26:02.213 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:01 smithi047 bash[21449]: cluster 2024-04-14T15:26:01.936436+0000 mon.a (mon.0) 290 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-04-14T15:26:02.213 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:01 smithi047 bash[21449]: cluster 2024-04-14T15:26:01.936645+0000 mon.a (mon.0) 291 : cluster [DBG] mgrmap e13: a(active, since 110s) 2024-04-14T15:26:02.213 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:01 smithi047 bash[21449]: cluster 2024-04-14T15:26:01.936837+0000 mon.a (mon.0) 292 : cluster [WRN] Health check failed: 1/3 mons down, quorum a,c (MON_DOWN) 2024-04-14T15:26:02.213 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:01 smithi047 bash[21449]: cluster 2024-04-14T15:26:01.940818+0000 mon.a (mon.0) 293 : cluster [WRN] Health detail: HEALTH_WARN 1/3 mons down, quorum a,c 2024-04-14T15:26:02.213 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:01 smithi047 bash[21449]: cluster 2024-04-14T15:26:01.940837+0000 mon.a (mon.0) 294 : cluster [WRN] [WRN] MON_DOWN: 1/3 mons down, quorum a,c 2024-04-14T15:26:02.213 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:01 smithi047 bash[21449]: cluster 2024-04-14T15:26:01.940848+0000 mon.a (mon.0) 295 : cluster [WRN] mon.b (rank 2) addr [v2:172.21.15.110:3300/0,v1:172.21.15.110:6789/0] is down (out of quorum) 2024-04-14T15:26:02.213 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:01 smithi047 bash[21449]: audit 2024-04-14T15:26:01.944673+0000 mon.a (mon.0) 296 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:02.213 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:01 smithi047 bash[21449]: audit 2024-04-14T15:26:01.949092+0000 mon.a (mon.0) 297 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:02.214 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:01 smithi047 bash[21449]: audit 2024-04-14T15:26:01.953552+0000 mon.a (mon.0) 298 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:02.214 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:01 smithi047 bash[21449]: audit 2024-04-14T15:26:01.957530+0000 mon.a (mon.0) 299 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:02.214 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:01 smithi047 bash[21449]: audit 2024-04-14T15:26:01.961262+0000 mon.a (mon.0) 300 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:02.214 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:01 smithi047 bash[21449]: audit 2024-04-14T15:26:01.975456+0000 mon.a (mon.0) 301 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-14T15:26:02.214 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:01 smithi047 bash[21449]: audit 2024-04-14T15:26:01.976306+0000 mon.a (mon.0) 302 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-14T15:26:02.214 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:01 smithi047 bash[21449]: audit 2024-04-14T15:26:01.977075+0000 mon.a (mon.0) 303 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:26:02.237 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:01 smithi138 bash[22282]: audit 2024-04-14T15:25:56.890695+0000 mon.a (mon.0) 270 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-14T15:26:02.237 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:01 smithi138 bash[22282]: cluster 2024-04-14T15:25:56.891131+0000 mon.a (mon.0) 271 : cluster [INF] mon.a calling monitor election 2024-04-14T15:26:02.237 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:01 smithi138 bash[22282]: cluster 2024-04-14T15:25:56.892109+0000 mon.c (mon.1) 2 : cluster [INF] mon.c calling monitor election 2024-04-14T15:26:02.237 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:01 smithi138 bash[22282]: audit 2024-04-14T15:25:56.909426+0000 mon.a (mon.0) 272 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:26:02.237 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:01 smithi138 bash[22282]: audit 2024-04-14T15:25:56.909691+0000 mon.a (mon.0) 273 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T15:26:02.237 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:01 smithi138 bash[22282]: cluster 2024-04-14T15:25:57.853315+0000 mgr.a (mgr.14152) 89 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:02.237 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:01 smithi138 bash[22282]: audit 2024-04-14T15:25:57.873132+0000 mon.a (mon.0) 274 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:26:02.237 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:01 smithi138 bash[22282]: audit 2024-04-14T15:25:58.873282+0000 mon.a (mon.0) 275 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:26:02.237 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:01 smithi138 bash[22282]: cluster 2024-04-14T15:25:59.853749+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-14T15:26:02.237 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:01 smithi138 bash[22282]: audit 2024-04-14T15:25:59.873205+0000 mon.a (mon.0) 276 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:26:02.238 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:01 smithi138 bash[22282]: audit 2024-04-14T15:26:00.873648+0000 mon.a (mon.0) 277 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:26:02.238 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:01 smithi138 bash[22282]: audit 2024-04-14T15:26:01.873725+0000 mon.a (mon.0) 278 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:26:02.238 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:01 smithi138 bash[22282]: cluster 2024-04-14T15:26:01.909413+0000 mon.a (mon.0) 279 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-04-14T15:26:02.238 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:01 smithi138 bash[22282]: cluster 2024-04-14T15:26:01.915662+0000 mon.a (mon.0) 280 : cluster [DBG] monmap epoch 3 2024-04-14T15:26:02.238 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:01 smithi138 bash[22282]: cluster 2024-04-14T15:26:01.915697+0000 mon.a (mon.0) 281 : cluster [DBG] fsid af942ef8-fa72-11ee-bc8e-c7b262605968 2024-04-14T15:26:02.238 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:01 smithi138 bash[22282]: cluster 2024-04-14T15:26:01.915718+0000 mon.a (mon.0) 282 : cluster [DBG] last_changed 2024-04-14T15:25:56.884122+0000 2024-04-14T15:26:02.238 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:01 smithi138 bash[22282]: cluster 2024-04-14T15:26:01.915741+0000 mon.a (mon.0) 283 : cluster [DBG] created 2024-04-14T15:22:58.674104+0000 2024-04-14T15:26:02.238 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:01 smithi138 bash[22282]: cluster 2024-04-14T15:26:01.915761+0000 mon.a (mon.0) 284 : cluster [DBG] min_mon_release 19 (squid) 2024-04-14T15:26:02.238 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:01 smithi138 bash[22282]: cluster 2024-04-14T15:26:01.915781+0000 mon.a (mon.0) 285 : cluster [DBG] election_strategy: 1 2024-04-14T15:26:02.238 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:01 smithi138 bash[22282]: cluster 2024-04-14T15:26:01.915801+0000 mon.a (mon.0) 286 : cluster [DBG] 0: [v2:172.21.15.47:3300/0,v1:172.21.15.47:6789/0] mon.a 2024-04-14T15:26:02.238 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:01 smithi138 bash[22282]: cluster 2024-04-14T15:26:01.915822+0000 mon.a (mon.0) 287 : cluster [DBG] 1: [v2:172.21.15.138:3300/0,v1:172.21.15.138:6789/0] mon.c 2024-04-14T15:26:02.238 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:01 smithi138 bash[22282]: cluster 2024-04-14T15:26:01.915842+0000 mon.a (mon.0) 288 : cluster [DBG] 2: [v2:172.21.15.110:3300/0,v1:172.21.15.110:6789/0] mon.b 2024-04-14T15:26:02.238 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:01 smithi138 bash[22282]: cluster 2024-04-14T15:26:01.936401+0000 mon.a (mon.0) 289 : cluster [DBG] fsmap 2024-04-14T15:26:02.239 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:01 smithi138 bash[22282]: cluster 2024-04-14T15:26:01.936436+0000 mon.a (mon.0) 290 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-04-14T15:26:02.239 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:01 smithi138 bash[22282]: cluster 2024-04-14T15:26:01.936645+0000 mon.a (mon.0) 291 : cluster [DBG] mgrmap e13: a(active, since 110s) 2024-04-14T15:26:02.239 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:01 smithi138 bash[22282]: cluster 2024-04-14T15:26:01.936837+0000 mon.a (mon.0) 292 : cluster [WRN] Health check failed: 1/3 mons down, quorum a,c (MON_DOWN) 2024-04-14T15:26:02.239 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:01 smithi138 bash[22282]: cluster 2024-04-14T15:26:01.940818+0000 mon.a (mon.0) 293 : cluster [WRN] Health detail: HEALTH_WARN 1/3 mons down, quorum a,c 2024-04-14T15:26:02.239 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:01 smithi138 bash[22282]: cluster 2024-04-14T15:26:01.940837+0000 mon.a (mon.0) 294 : cluster [WRN] [WRN] MON_DOWN: 1/3 mons down, quorum a,c 2024-04-14T15:26:02.239 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:01 smithi138 bash[22282]: cluster 2024-04-14T15:26:01.940848+0000 mon.a (mon.0) 295 : cluster [WRN] mon.b (rank 2) addr [v2:172.21.15.110:3300/0,v1:172.21.15.110:6789/0] is down (out of quorum) 2024-04-14T15:26:02.239 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:01 smithi138 bash[22282]: audit 2024-04-14T15:26:01.944673+0000 mon.a (mon.0) 296 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:02.239 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:01 smithi138 bash[22282]: audit 2024-04-14T15:26:01.949092+0000 mon.a (mon.0) 297 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:02.239 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:01 smithi138 bash[22282]: audit 2024-04-14T15:26:01.953552+0000 mon.a (mon.0) 298 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:02.239 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:01 smithi138 bash[22282]: audit 2024-04-14T15:26:01.957530+0000 mon.a (mon.0) 299 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:02.240 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:01 smithi138 bash[22282]: audit 2024-04-14T15:26:01.961262+0000 mon.a (mon.0) 300 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:02.240 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:01 smithi138 bash[22282]: audit 2024-04-14T15:26:01.975456+0000 mon.a (mon.0) 301 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-14T15:26:02.240 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:01 smithi138 bash[22282]: audit 2024-04-14T15:26:01.976306+0000 mon.a (mon.0) 302 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-14T15:26:02.240 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:01 smithi138 bash[22282]: audit 2024-04-14T15:26:01.977075+0000 mon.a (mon.0) 303 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:26:03.146 INFO:teuthology.orchestra.run.smithi138.stdout: 2024-04-14T15:26:03.146 INFO:teuthology.orchestra.run.smithi138.stdout:{"epoch":3,"fsid":"af942ef8-fa72-11ee-bc8e-c7b262605968","modified":"2024-04-14T15:25:56.884122Z","created":"2024-04-14T15:22:58.674104Z","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.47:3300","nonce":0},{"type":"v1","addr":"172.21.15.47:6789","nonce":0}]},"addr":"172.21.15.47:6789/0","public_addr":"172.21.15.47:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"c","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:3300","nonce":0},{"type":"v1","addr":"172.21.15.138:6789","nonce":0}]},"addr":"172.21.15.138:6789/0","public_addr":"172.21.15.138:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":2,"name":"b","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.110:3300","nonce":0},{"type":"v1","addr":"172.21.15.110:6789","nonce":0}]},"addr":"172.21.15.110:6789/0","public_addr":"172.21.15.110:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-04-14T15:26:03.148 INFO:teuthology.orchestra.run.smithi138.stderr:dumped monmap epoch 3 2024-04-14T15:26:03.561 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:03 smithi138 bash[22282]: cluster 2024-04-14T15:26:01.854178+0000 mgr.a (mgr.14152) 91 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:03.562 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:03 smithi138 bash[22282]: cephadm 2024-04-14T15:26:01.975013+0000 mgr.a (mgr.14152) 92 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-04-14T15:26:03.562 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:03 smithi138 bash[22282]: cephadm 2024-04-14T15:26:01.978038+0000 mgr.a (mgr.14152) 93 : cephadm [INF] Reconfiguring daemon mon.b on smithi110 2024-04-14T15:26:03.562 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:03 smithi138 bash[22282]: audit 2024-04-14T15:26:02.280615+0000 mon.a (mon.0) 304 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:03.562 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:03 smithi138 bash[22282]: audit 2024-04-14T15:26:02.285047+0000 mon.a (mon.0) 305 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:03.562 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:03 smithi138 bash[22282]: audit 2024-04-14T15:26:02.291875+0000 mon.a (mon.0) 306 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:03.563 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:03 smithi138 bash[22282]: audit 2024-04-14T15:26:02.590417+0000 mon.a (mon.0) 307 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:03.563 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:03 smithi138 bash[22282]: audit 2024-04-14T15:26:02.594985+0000 mon.a (mon.0) 308 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:03.563 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:03 smithi138 bash[22282]: audit 2024-04-14T15:26:02.601018+0000 mon.a (mon.0) 309 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:03.563 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:03 smithi138 bash[22282]: audit 2024-04-14T15:26:02.873774+0000 mon.a (mon.0) 310 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:26:03.563 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:03 smithi138 bash[22282]: audit 2024-04-14T15:26:03.145527+0000 mon.a (mon.0) 311 : audit [DBG] from='client.? 172.21.15.138:0/71600478' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-14T15:26:03.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:03 smithi047 bash[21449]: cluster 2024-04-14T15:26:01.854178+0000 mgr.a (mgr.14152) 91 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:03.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:03 smithi047 bash[21449]: cephadm 2024-04-14T15:26:01.975013+0000 mgr.a (mgr.14152) 92 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-04-14T15:26:03.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:03 smithi047 bash[21449]: cephadm 2024-04-14T15:26:01.978038+0000 mgr.a (mgr.14152) 93 : cephadm [INF] Reconfiguring daemon mon.b on smithi110 2024-04-14T15:26:03.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:03 smithi047 bash[21449]: audit 2024-04-14T15:26:02.280615+0000 mon.a (mon.0) 304 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:03.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:03 smithi047 bash[21449]: audit 2024-04-14T15:26:02.285047+0000 mon.a (mon.0) 305 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:03.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:03 smithi047 bash[21449]: audit 2024-04-14T15:26:02.291875+0000 mon.a (mon.0) 306 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:03.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:03 smithi047 bash[21449]: audit 2024-04-14T15:26:02.590417+0000 mon.a (mon.0) 307 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:03.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:03 smithi047 bash[21449]: audit 2024-04-14T15:26:02.594985+0000 mon.a (mon.0) 308 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:03.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:03 smithi047 bash[21449]: audit 2024-04-14T15:26:02.601018+0000 mon.a (mon.0) 309 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:03.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:03 smithi047 bash[21449]: audit 2024-04-14T15:26:02.873774+0000 mon.a (mon.0) 310 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:26:03.712 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:03 smithi047 bash[21449]: audit 2024-04-14T15:26:03.145527+0000 mon.a (mon.0) 311 : audit [DBG] from='client.? 172.21.15.138:0/71600478' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-14T15:26:03.863 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-04-14T15:26:03.864 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph config generate-minimal-conf 2024-04-14T15:26:04.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: audit 2024-04-14T15:25:56.890695+0000 mon.a (mon.0) 270 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-14T15:26:04.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: cluster 2024-04-14T15:25:56.891131+0000 mon.a (mon.0) 271 : cluster [INF] mon.a calling monitor election 2024-04-14T15:26:04.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: cluster 2024-04-14T15:25:56.892109+0000 mon.c (mon.1) 2 : cluster [INF] mon.c calling monitor election 2024-04-14T15:26:04.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: audit 2024-04-14T15:25:56.909426+0000 mon.a (mon.0) 272 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:26:04.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: audit 2024-04-14T15:25:56.909691+0000 mon.a (mon.0) 273 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T15:26:04.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: cluster 2024-04-14T15:25:57.853315+0000 mgr.a (mgr.14152) 89 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:04.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: audit 2024-04-14T15:25:57.873132+0000 mon.a (mon.0) 274 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:26:04.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: audit 2024-04-14T15:25:58.873282+0000 mon.a (mon.0) 275 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:26:04.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: cluster 2024-04-14T15:25:59.853749+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-14T15:26:04.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: audit 2024-04-14T15:25:59.873205+0000 mon.a (mon.0) 276 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:26:04.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: audit 2024-04-14T15:26:00.873648+0000 mon.a (mon.0) 277 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:26:04.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: audit 2024-04-14T15:26:01.873725+0000 mon.a (mon.0) 278 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:26:04.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: cluster 2024-04-14T15:26:01.909413+0000 mon.a (mon.0) 279 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-04-14T15:26:04.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: cluster 2024-04-14T15:26:01.915662+0000 mon.a (mon.0) 280 : cluster [DBG] monmap epoch 3 2024-04-14T15:26:04.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: cluster 2024-04-14T15:26:01.915697+0000 mon.a (mon.0) 281 : cluster [DBG] fsid af942ef8-fa72-11ee-bc8e-c7b262605968 2024-04-14T15:26:04.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: cluster 2024-04-14T15:26:01.915718+0000 mon.a (mon.0) 282 : cluster [DBG] last_changed 2024-04-14T15:25:56.884122+0000 2024-04-14T15:26:04.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: cluster 2024-04-14T15:26:01.915741+0000 mon.a (mon.0) 283 : cluster [DBG] created 2024-04-14T15:22:58.674104+0000 2024-04-14T15:26:04.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: cluster 2024-04-14T15:26:01.915761+0000 mon.a (mon.0) 284 : cluster [DBG] min_mon_release 19 (squid) 2024-04-14T15:26:04.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: cluster 2024-04-14T15:26:01.915781+0000 mon.a (mon.0) 285 : cluster [DBG] election_strategy: 1 2024-04-14T15:26:04.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: cluster 2024-04-14T15:26:01.915801+0000 mon.a (mon.0) 286 : cluster [DBG] 0: [v2:172.21.15.47:3300/0,v1:172.21.15.47:6789/0] mon.a 2024-04-14T15:26:04.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: cluster 2024-04-14T15:26:01.915822+0000 mon.a (mon.0) 287 : cluster [DBG] 1: [v2:172.21.15.138:3300/0,v1:172.21.15.138:6789/0] mon.c 2024-04-14T15:26:04.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: cluster 2024-04-14T15:26:01.915842+0000 mon.a (mon.0) 288 : cluster [DBG] 2: [v2:172.21.15.110:3300/0,v1:172.21.15.110:6789/0] mon.b 2024-04-14T15:26:04.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: cluster 2024-04-14T15:26:01.936401+0000 mon.a (mon.0) 289 : cluster [DBG] fsmap 2024-04-14T15:26:04.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: cluster 2024-04-14T15:26:01.936436+0000 mon.a (mon.0) 290 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-04-14T15:26:04.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: cluster 2024-04-14T15:26:01.936645+0000 mon.a (mon.0) 291 : cluster [DBG] mgrmap e13: a(active, since 110s) 2024-04-14T15:26:04.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: cluster 2024-04-14T15:26:01.936837+0000 mon.a (mon.0) 292 : cluster [WRN] Health check failed: 1/3 mons down, quorum a,c (MON_DOWN) 2024-04-14T15:26:04.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: cluster 2024-04-14T15:26:01.940818+0000 mon.a (mon.0) 293 : cluster [WRN] Health detail: HEALTH_WARN 1/3 mons down, quorum a,c 2024-04-14T15:26:04.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: cluster 2024-04-14T15:26:01.940837+0000 mon.a (mon.0) 294 : cluster [WRN] [WRN] MON_DOWN: 1/3 mons down, quorum a,c 2024-04-14T15:26:04.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: cluster 2024-04-14T15:26:01.940848+0000 mon.a (mon.0) 295 : cluster [WRN] mon.b (rank 2) addr [v2:172.21.15.110:3300/0,v1:172.21.15.110:6789/0] is down (out of quorum) 2024-04-14T15:26:04.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: audit 2024-04-14T15:26:01.944673+0000 mon.a (mon.0) 296 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:04.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: audit 2024-04-14T15:26:01.949092+0000 mon.a (mon.0) 297 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:04.397 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: audit 2024-04-14T15:26:01.953552+0000 mon.a (mon.0) 298 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:04.397 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: audit 2024-04-14T15:26:01.957530+0000 mon.a (mon.0) 299 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:04.397 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: audit 2024-04-14T15:26:01.961262+0000 mon.a (mon.0) 300 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:04.397 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: audit 2024-04-14T15:26:01.975456+0000 mon.a (mon.0) 301 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-14T15:26:04.397 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: audit 2024-04-14T15:26:01.976306+0000 mon.a (mon.0) 302 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-14T15:26:04.397 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: audit 2024-04-14T15:26:01.977075+0000 mon.a (mon.0) 303 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:26:04.397 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: cluster 2024-04-14T15:26:01.854178+0000 mgr.a (mgr.14152) 91 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:04.397 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: cephadm 2024-04-14T15:26:01.975013+0000 mgr.a (mgr.14152) 92 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-04-14T15:26:04.397 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: cephadm 2024-04-14T15:26:01.978038+0000 mgr.a (mgr.14152) 93 : cephadm [INF] Reconfiguring daemon mon.b on smithi110 2024-04-14T15:26:04.397 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: audit 2024-04-14T15:26:02.280615+0000 mon.a (mon.0) 304 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:04.397 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: audit 2024-04-14T15:26:02.285047+0000 mon.a (mon.0) 305 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:04.397 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: audit 2024-04-14T15:26:02.291875+0000 mon.a (mon.0) 306 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:04.397 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: audit 2024-04-14T15:26:02.590417+0000 mon.a (mon.0) 307 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:04.397 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: audit 2024-04-14T15:26:02.594985+0000 mon.a (mon.0) 308 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:04.397 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: audit 2024-04-14T15:26:02.601018+0000 mon.a (mon.0) 309 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:04.398 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: audit 2024-04-14T15:26:02.873774+0000 mon.a (mon.0) 310 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:26:04.398 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:03 smithi110 bash[22161]: audit 2024-04-14T15:26:03.145527+0000 mon.a (mon.0) 311 : audit [DBG] from='client.? 172.21.15.138:0/71600478' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-14T15:26:04.856 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:04 smithi138 bash[22282]: cluster 2024-04-14T15:25:58.884375+0000 mon.b (mon.2) 1 : cluster [INF] mon.b calling monitor election 2024-04-14T15:26:04.857 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:04 smithi138 bash[22282]: cephadm 2024-04-14T15:26:03.646044+0000 mgr.a (mgr.14152) 94 : cephadm [INF] Reconfiguring mon.c (monmap changed)... 2024-04-14T15:26:04.857 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:04 smithi138 bash[22282]: cephadm 2024-04-14T15:26:03.652355+0000 mgr.a (mgr.14152) 95 : cephadm [INF] Reconfiguring daemon mon.c on smithi138 2024-04-14T15:26:04.857 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:04 smithi138 bash[22282]: cluster 2024-04-14T15:26:03.854600+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-14T15:26:04.857 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:04 smithi138 bash[22282]: cluster 2024-04-14T15:26:03.921804+0000 mon.b (mon.2) 2 : cluster [INF] mon.b calling monitor election 2024-04-14T15:26:04.857 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:04 smithi138 bash[22282]: cluster 2024-04-14T15:26:03.924445+0000 mon.a (mon.0) 318 : cluster [INF] mon.a calling monitor election 2024-04-14T15:26:04.857 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:04 smithi138 bash[22282]: cluster 2024-04-14T15:26:03.924709+0000 mon.c (mon.1) 3 : cluster [INF] mon.c calling monitor election 2024-04-14T15:26:04.857 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:04 smithi138 bash[22282]: cluster 2024-04-14T15:26:03.948275+0000 mon.a (mon.0) 319 : cluster [INF] mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-04-14T15:26:04.857 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:04 smithi138 bash[22282]: cluster 2024-04-14T15:26:03.954235+0000 mon.a (mon.0) 320 : cluster [DBG] monmap epoch 3 2024-04-14T15:26:04.857 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:04 smithi138 bash[22282]: cluster 2024-04-14T15:26:03.954269+0000 mon.a (mon.0) 321 : cluster [DBG] fsid af942ef8-fa72-11ee-bc8e-c7b262605968 2024-04-14T15:26:04.857 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:04 smithi138 bash[22282]: cluster 2024-04-14T15:26:03.954288+0000 mon.a (mon.0) 322 : cluster [DBG] last_changed 2024-04-14T15:25:56.884122+0000 2024-04-14T15:26:04.857 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:04 smithi138 bash[22282]: cluster 2024-04-14T15:26:03.954309+0000 mon.a (mon.0) 323 : cluster [DBG] created 2024-04-14T15:22:58.674104+0000 2024-04-14T15:26:04.858 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:04 smithi138 bash[22282]: cluster 2024-04-14T15:26:03.954331+0000 mon.a (mon.0) 324 : cluster [DBG] min_mon_release 19 (squid) 2024-04-14T15:26:04.858 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:04 smithi138 bash[22282]: cluster 2024-04-14T15:26:03.954354+0000 mon.a (mon.0) 325 : cluster [DBG] election_strategy: 1 2024-04-14T15:26:04.858 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:04 smithi138 bash[22282]: cluster 2024-04-14T15:26:03.954377+0000 mon.a (mon.0) 326 : cluster [DBG] 0: [v2:172.21.15.47:3300/0,v1:172.21.15.47:6789/0] mon.a 2024-04-14T15:26:04.858 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:04 smithi138 bash[22282]: cluster 2024-04-14T15:26:03.954401+0000 mon.a (mon.0) 327 : cluster [DBG] 1: [v2:172.21.15.138:3300/0,v1:172.21.15.138:6789/0] mon.c 2024-04-14T15:26:04.858 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:04 smithi138 bash[22282]: cluster 2024-04-14T15:26:03.954422+0000 mon.a (mon.0) 328 : cluster [DBG] 2: [v2:172.21.15.110:3300/0,v1:172.21.15.110:6789/0] mon.b 2024-04-14T15:26:04.858 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:04 smithi138 bash[22282]: cluster 2024-04-14T15:26:03.955461+0000 mon.a (mon.0) 329 : cluster [DBG] fsmap 2024-04-14T15:26:04.858 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:04 smithi138 bash[22282]: cluster 2024-04-14T15:26:03.955522+0000 mon.a (mon.0) 330 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-04-14T15:26:04.858 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:04 smithi138 bash[22282]: cluster 2024-04-14T15:26:03.955788+0000 mon.a (mon.0) 331 : cluster [DBG] mgrmap e13: a(active, since 112s) 2024-04-14T15:26:04.858 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:04 smithi138 bash[22282]: cluster 2024-04-14T15:26:03.956095+0000 mon.a (mon.0) 332 : cluster [INF] Health check cleared: MON_DOWN (was: 1/3 mons down, quorum a,c) 2024-04-14T15:26:04.858 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:04 smithi138 bash[22282]: cluster 2024-04-14T15:26:03.956138+0000 mon.a (mon.0) 333 : cluster [INF] Cluster is now healthy 2024-04-14T15:26:04.858 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:04 smithi138 bash[22282]: cluster 2024-04-14T15:26:03.962386+0000 mon.a (mon.0) 334 : cluster [INF] overall HEALTH_OK 2024-04-14T15:26:04.893 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:04 smithi110 bash[22161]: cluster 2024-04-14T15:25:58.884375+0000 mon.b (mon.2) 1 : cluster [INF] mon.b calling monitor election 2024-04-14T15:26:04.893 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:04 smithi110 bash[22161]: cephadm 2024-04-14T15:26:03.646044+0000 mgr.a (mgr.14152) 94 : cephadm [INF] Reconfiguring mon.c (monmap changed)... 2024-04-14T15:26:04.893 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:04 smithi110 bash[22161]: cephadm 2024-04-14T15:26:03.652355+0000 mgr.a (mgr.14152) 95 : cephadm [INF] Reconfiguring daemon mon.c on smithi138 2024-04-14T15:26:04.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:04 smithi110 bash[22161]: cluster 2024-04-14T15:26:03.854600+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-14T15:26:04.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:04 smithi110 bash[22161]: cluster 2024-04-14T15:26:03.921804+0000 mon.b (mon.2) 2 : cluster [INF] mon.b calling monitor election 2024-04-14T15:26:04.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:04 smithi110 bash[22161]: cluster 2024-04-14T15:26:03.924445+0000 mon.a (mon.0) 318 : cluster [INF] mon.a calling monitor election 2024-04-14T15:26:04.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:04 smithi110 bash[22161]: cluster 2024-04-14T15:26:03.924709+0000 mon.c (mon.1) 3 : cluster [INF] mon.c calling monitor election 2024-04-14T15:26:04.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:04 smithi110 bash[22161]: cluster 2024-04-14T15:26:03.948275+0000 mon.a (mon.0) 319 : cluster [INF] mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-04-14T15:26:04.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:04 smithi110 bash[22161]: cluster 2024-04-14T15:26:03.954235+0000 mon.a (mon.0) 320 : cluster [DBG] monmap epoch 3 2024-04-14T15:26:04.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:04 smithi110 bash[22161]: cluster 2024-04-14T15:26:03.954269+0000 mon.a (mon.0) 321 : cluster [DBG] fsid af942ef8-fa72-11ee-bc8e-c7b262605968 2024-04-14T15:26:04.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:04 smithi110 bash[22161]: cluster 2024-04-14T15:26:03.954288+0000 mon.a (mon.0) 322 : cluster [DBG] last_changed 2024-04-14T15:25:56.884122+0000 2024-04-14T15:26:04.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:04 smithi110 bash[22161]: cluster 2024-04-14T15:26:03.954309+0000 mon.a (mon.0) 323 : cluster [DBG] created 2024-04-14T15:22:58.674104+0000 2024-04-14T15:26:04.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:04 smithi110 bash[22161]: cluster 2024-04-14T15:26:03.954331+0000 mon.a (mon.0) 324 : cluster [DBG] min_mon_release 19 (squid) 2024-04-14T15:26:04.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:04 smithi110 bash[22161]: cluster 2024-04-14T15:26:03.954354+0000 mon.a (mon.0) 325 : cluster [DBG] election_strategy: 1 2024-04-14T15:26:04.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:04 smithi110 bash[22161]: cluster 2024-04-14T15:26:03.954377+0000 mon.a (mon.0) 326 : cluster [DBG] 0: [v2:172.21.15.47:3300/0,v1:172.21.15.47:6789/0] mon.a 2024-04-14T15:26:04.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:04 smithi110 bash[22161]: cluster 2024-04-14T15:26:03.954401+0000 mon.a (mon.0) 327 : cluster [DBG] 1: [v2:172.21.15.138:3300/0,v1:172.21.15.138:6789/0] mon.c 2024-04-14T15:26:04.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:04 smithi110 bash[22161]: cluster 2024-04-14T15:26:03.954422+0000 mon.a (mon.0) 328 : cluster [DBG] 2: [v2:172.21.15.110:3300/0,v1:172.21.15.110:6789/0] mon.b 2024-04-14T15:26:04.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:04 smithi110 bash[22161]: cluster 2024-04-14T15:26:03.955461+0000 mon.a (mon.0) 329 : cluster [DBG] fsmap 2024-04-14T15:26:04.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:04 smithi110 bash[22161]: cluster 2024-04-14T15:26:03.955522+0000 mon.a (mon.0) 330 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-04-14T15:26:04.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:04 smithi110 bash[22161]: cluster 2024-04-14T15:26:03.955788+0000 mon.a (mon.0) 331 : cluster [DBG] mgrmap e13: a(active, since 112s) 2024-04-14T15:26:04.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:04 smithi110 bash[22161]: cluster 2024-04-14T15:26:03.956095+0000 mon.a (mon.0) 332 : cluster [INF] Health check cleared: MON_DOWN (was: 1/3 mons down, quorum a,c) 2024-04-14T15:26:04.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:04 smithi110 bash[22161]: cluster 2024-04-14T15:26:03.956138+0000 mon.a (mon.0) 333 : cluster [INF] Cluster is now healthy 2024-04-14T15:26:04.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:04 smithi110 bash[22161]: cluster 2024-04-14T15:26:03.962386+0000 mon.a (mon.0) 334 : cluster [INF] overall HEALTH_OK 2024-04-14T15:26:04.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:04 smithi047 bash[21449]: cluster 2024-04-14T15:25:58.884375+0000 mon.b (mon.2) 1 : cluster [INF] mon.b calling monitor election 2024-04-14T15:26:04.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:04 smithi047 bash[21449]: cephadm 2024-04-14T15:26:03.646044+0000 mgr.a (mgr.14152) 94 : cephadm [INF] Reconfiguring mon.c (monmap changed)... 2024-04-14T15:26:04.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:04 smithi047 bash[21449]: cephadm 2024-04-14T15:26:03.652355+0000 mgr.a (mgr.14152) 95 : cephadm [INF] Reconfiguring daemon mon.c on smithi138 2024-04-14T15:26:04.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:04 smithi047 bash[21449]: cluster 2024-04-14T15:26:03.854600+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-14T15:26:04.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:04 smithi047 bash[21449]: cluster 2024-04-14T15:26:03.921804+0000 mon.b (mon.2) 2 : cluster [INF] mon.b calling monitor election 2024-04-14T15:26:04.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:04 smithi047 bash[21449]: cluster 2024-04-14T15:26:03.924445+0000 mon.a (mon.0) 318 : cluster [INF] mon.a calling monitor election 2024-04-14T15:26:04.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:04 smithi047 bash[21449]: cluster 2024-04-14T15:26:03.924709+0000 mon.c (mon.1) 3 : cluster [INF] mon.c calling monitor election 2024-04-14T15:26:04.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:04 smithi047 bash[21449]: cluster 2024-04-14T15:26:03.948275+0000 mon.a (mon.0) 319 : cluster [INF] mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-04-14T15:26:04.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:04 smithi047 bash[21449]: cluster 2024-04-14T15:26:03.954235+0000 mon.a (mon.0) 320 : cluster [DBG] monmap epoch 3 2024-04-14T15:26:04.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:04 smithi047 bash[21449]: cluster 2024-04-14T15:26:03.954269+0000 mon.a (mon.0) 321 : cluster [DBG] fsid af942ef8-fa72-11ee-bc8e-c7b262605968 2024-04-14T15:26:04.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:04 smithi047 bash[21449]: cluster 2024-04-14T15:26:03.954288+0000 mon.a (mon.0) 322 : cluster [DBG] last_changed 2024-04-14T15:25:56.884122+0000 2024-04-14T15:26:04.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:04 smithi047 bash[21449]: cluster 2024-04-14T15:26:03.954309+0000 mon.a (mon.0) 323 : cluster [DBG] created 2024-04-14T15:22:58.674104+0000 2024-04-14T15:26:04.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:04 smithi047 bash[21449]: cluster 2024-04-14T15:26:03.954331+0000 mon.a (mon.0) 324 : cluster [DBG] min_mon_release 19 (squid) 2024-04-14T15:26:04.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:04 smithi047 bash[21449]: cluster 2024-04-14T15:26:03.954354+0000 mon.a (mon.0) 325 : cluster [DBG] election_strategy: 1 2024-04-14T15:26:04.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:04 smithi047 bash[21449]: cluster 2024-04-14T15:26:03.954377+0000 mon.a (mon.0) 326 : cluster [DBG] 0: [v2:172.21.15.47:3300/0,v1:172.21.15.47:6789/0] mon.a 2024-04-14T15:26:04.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:04 smithi047 bash[21449]: cluster 2024-04-14T15:26:03.954401+0000 mon.a (mon.0) 327 : cluster [DBG] 1: [v2:172.21.15.138:3300/0,v1:172.21.15.138:6789/0] mon.c 2024-04-14T15:26:04.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:04 smithi047 bash[21449]: cluster 2024-04-14T15:26:03.954422+0000 mon.a (mon.0) 328 : cluster [DBG] 2: [v2:172.21.15.110:3300/0,v1:172.21.15.110:6789/0] mon.b 2024-04-14T15:26:04.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:04 smithi047 bash[21449]: cluster 2024-04-14T15:26:03.955461+0000 mon.a (mon.0) 329 : cluster [DBG] fsmap 2024-04-14T15:26:04.963 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:04 smithi047 bash[21449]: cluster 2024-04-14T15:26:03.955522+0000 mon.a (mon.0) 330 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-04-14T15:26:04.963 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:04 smithi047 bash[21449]: cluster 2024-04-14T15:26:03.955788+0000 mon.a (mon.0) 331 : cluster [DBG] mgrmap e13: a(active, since 112s) 2024-04-14T15:26:04.963 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:04 smithi047 bash[21449]: cluster 2024-04-14T15:26:03.956095+0000 mon.a (mon.0) 332 : cluster [INF] Health check cleared: MON_DOWN (was: 1/3 mons down, quorum a,c) 2024-04-14T15:26:04.963 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:04 smithi047 bash[21449]: cluster 2024-04-14T15:26:03.956138+0000 mon.a (mon.0) 333 : cluster [INF] Cluster is now healthy 2024-04-14T15:26:04.963 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:04 smithi047 bash[21449]: cluster 2024-04-14T15:26:03.962386+0000 mon.a (mon.0) 334 : cluster [INF] overall HEALTH_OK 2024-04-14T15:26:05.893 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:05 smithi110 bash[22161]: audit 2024-04-14T15:26:04.874218+0000 mon.a (mon.0) 335 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:26:05.893 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:05 smithi110 bash[22161]: audit 2024-04-14T15:26:05.587623+0000 mon.a (mon.0) 336 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:05.893 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:05 smithi110 bash[22161]: audit 2024-04-14T15:26:05.595454+0000 mon.a (mon.0) 337 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:05.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:05 smithi047 bash[21449]: audit 2024-04-14T15:26:04.874218+0000 mon.a (mon.0) 335 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:26:05.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:05 smithi047 bash[21449]: audit 2024-04-14T15:26:05.587623+0000 mon.a (mon.0) 336 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:05.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:05 smithi047 bash[21449]: audit 2024-04-14T15:26:05.595454+0000 mon.a (mon.0) 337 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:06.061 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:05 smithi138 bash[22282]: audit 2024-04-14T15:26:04.874218+0000 mon.a (mon.0) 335 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:26:06.061 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:05 smithi138 bash[22282]: audit 2024-04-14T15:26:05.587623+0000 mon.a (mon.0) 336 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:06.061 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:05 smithi138 bash[22282]: audit 2024-04-14T15:26:05.595454+0000 mon.a (mon.0) 337 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:06.893 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:06 smithi110 bash[22161]: audit 2024-04-14T15:26:05.622510+0000 mon.a (mon.0) 338 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:26:06.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:06 smithi110 bash[22161]: audit 2024-04-14T15:26:05.628356+0000 mon.a (mon.0) 339 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:26:06.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:06 smithi110 bash[22161]: audit 2024-04-14T15:26:05.630251+0000 mon.a (mon.0) 340 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:26:06.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:06 smithi110 bash[22161]: cephadm 2024-04-14T15:26:05.632970+0000 mgr.a (mgr.14152) 97 : cephadm [INF] Updating smithi047:/etc/ceph/ceph.conf 2024-04-14T15:26:06.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:06 smithi110 bash[22161]: cephadm 2024-04-14T15:26:05.633904+0000 mgr.a (mgr.14152) 98 : cephadm [INF] Updating smithi110:/etc/ceph/ceph.conf 2024-04-14T15:26:06.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:06 smithi110 bash[22161]: cephadm 2024-04-14T15:26:05.634331+0000 mgr.a (mgr.14152) 99 : cephadm [INF] Updating smithi138:/etc/ceph/ceph.conf 2024-04-14T15:26:06.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:06 smithi110 bash[22161]: cluster 2024-04-14T15:26:05.854960+0000 mgr.a (mgr.14152) 100 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:06.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:06 smithi110 bash[22161]: cephadm 2024-04-14T15:26:06.000611+0000 mgr.a (mgr.14152) 101 : cephadm [INF] Updating smithi047:/var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T15:26:06.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:06 smithi110 bash[22161]: cephadm 2024-04-14T15:26:06.001031+0000 mgr.a (mgr.14152) 102 : cephadm [INF] Updating smithi110:/var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T15:26:06.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:06 smithi110 bash[22161]: cephadm 2024-04-14T15:26:06.001228+0000 mgr.a (mgr.14152) 103 : cephadm [INF] Updating smithi138:/var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T15:26:06.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:06 smithi110 bash[22161]: audit 2024-04-14T15:26:06.220331+0000 mon.a (mon.0) 341 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:06.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:06 smithi110 bash[22161]: audit 2024-04-14T15:26:06.224990+0000 mon.a (mon.0) 342 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:06.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:06 smithi110 bash[22161]: audit 2024-04-14T15:26:06.229161+0000 mon.a (mon.0) 343 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:06.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:06 smithi110 bash[22161]: audit 2024-04-14T15:26:06.233666+0000 mon.a (mon.0) 344 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:06.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:06 smithi110 bash[22161]: audit 2024-04-14T15:26:06.238242+0000 mon.a (mon.0) 345 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:06.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:06 smithi110 bash[22161]: audit 2024-04-14T15:26:06.242525+0000 mon.a (mon.0) 346 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:06.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:06 smithi110 bash[22161]: audit 2024-04-14T15:26:06.248796+0000 mon.a (mon.0) 347 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:06.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:06 smithi110 bash[22161]: cephadm 2024-04-14T15:26:06.348735+0000 mgr.a (mgr.14152) 104 : cephadm [INF] Reconfiguring mon.a (monmap changed)... 2024-04-14T15:26:06.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:06 smithi110 bash[22161]: audit 2024-04-14T15:26:06.349498+0000 mon.a (mon.0) 348 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-14T15:26:06.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:06 smithi110 bash[22161]: audit 2024-04-14T15:26:06.351374+0000 mon.a (mon.0) 349 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-14T15:26:06.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:06 smithi110 bash[22161]: audit 2024-04-14T15:26:06.353205+0000 mon.a (mon.0) 350 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:26:06.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:06 smithi110 bash[22161]: cephadm 2024-04-14T15:26:06.355021+0000 mgr.a (mgr.14152) 105 : cephadm [INF] Reconfiguring daemon mon.a on smithi047 2024-04-14T15:26:06.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:06 smithi047 bash[21449]: audit 2024-04-14T15:26:05.622510+0000 mon.a (mon.0) 338 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:26:06.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:06 smithi047 bash[21449]: audit 2024-04-14T15:26:05.628356+0000 mon.a (mon.0) 339 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:26:06.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:06 smithi047 bash[21449]: audit 2024-04-14T15:26:05.630251+0000 mon.a (mon.0) 340 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:26:06.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:06 smithi047 bash[21449]: cephadm 2024-04-14T15:26:05.632970+0000 mgr.a (mgr.14152) 97 : cephadm [INF] Updating smithi047:/etc/ceph/ceph.conf 2024-04-14T15:26:06.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:06 smithi047 bash[21449]: cephadm 2024-04-14T15:26:05.633904+0000 mgr.a (mgr.14152) 98 : cephadm [INF] Updating smithi110:/etc/ceph/ceph.conf 2024-04-14T15:26:06.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:06 smithi047 bash[21449]: cephadm 2024-04-14T15:26:05.634331+0000 mgr.a (mgr.14152) 99 : cephadm [INF] Updating smithi138:/etc/ceph/ceph.conf 2024-04-14T15:26:06.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:06 smithi047 bash[21449]: cluster 2024-04-14T15:26:05.854960+0000 mgr.a (mgr.14152) 100 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:06.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:06 smithi047 bash[21449]: cephadm 2024-04-14T15:26:06.000611+0000 mgr.a (mgr.14152) 101 : cephadm [INF] Updating smithi047:/var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T15:26:06.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:06 smithi047 bash[21449]: cephadm 2024-04-14T15:26:06.001031+0000 mgr.a (mgr.14152) 102 : cephadm [INF] Updating smithi110:/var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T15:26:06.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:06 smithi047 bash[21449]: cephadm 2024-04-14T15:26:06.001228+0000 mgr.a (mgr.14152) 103 : cephadm [INF] Updating smithi138:/var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T15:26:06.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:06 smithi047 bash[21449]: audit 2024-04-14T15:26:06.220331+0000 mon.a (mon.0) 341 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:06.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:06 smithi047 bash[21449]: audit 2024-04-14T15:26:06.224990+0000 mon.a (mon.0) 342 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:06.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:06 smithi047 bash[21449]: audit 2024-04-14T15:26:06.229161+0000 mon.a (mon.0) 343 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:06.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:06 smithi047 bash[21449]: audit 2024-04-14T15:26:06.233666+0000 mon.a (mon.0) 344 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:06.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:06 smithi047 bash[21449]: audit 2024-04-14T15:26:06.238242+0000 mon.a (mon.0) 345 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:06.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:06 smithi047 bash[21449]: audit 2024-04-14T15:26:06.242525+0000 mon.a (mon.0) 346 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:06.963 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:06 smithi047 bash[21449]: audit 2024-04-14T15:26:06.248796+0000 mon.a (mon.0) 347 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:06.963 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:06 smithi047 bash[21449]: cephadm 2024-04-14T15:26:06.348735+0000 mgr.a (mgr.14152) 104 : cephadm [INF] Reconfiguring mon.a (monmap changed)... 2024-04-14T15:26:06.963 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:06 smithi047 bash[21449]: audit 2024-04-14T15:26:06.349498+0000 mon.a (mon.0) 348 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-14T15:26:06.963 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:06 smithi047 bash[21449]: audit 2024-04-14T15:26:06.351374+0000 mon.a (mon.0) 349 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-14T15:26:06.963 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:06 smithi047 bash[21449]: audit 2024-04-14T15:26:06.353205+0000 mon.a (mon.0) 350 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:26:06.963 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:06 smithi047 bash[21449]: cephadm 2024-04-14T15:26:06.355021+0000 mgr.a (mgr.14152) 105 : cephadm [INF] Reconfiguring daemon mon.a on smithi047 2024-04-14T15:26:07.062 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:06 smithi138 bash[22282]: audit 2024-04-14T15:26:05.622510+0000 mon.a (mon.0) 338 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:26:07.062 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:06 smithi138 bash[22282]: audit 2024-04-14T15:26:05.628356+0000 mon.a (mon.0) 339 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:26:07.062 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:06 smithi138 bash[22282]: audit 2024-04-14T15:26:05.630251+0000 mon.a (mon.0) 340 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:26:07.062 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:06 smithi138 bash[22282]: cephadm 2024-04-14T15:26:05.632970+0000 mgr.a (mgr.14152) 97 : cephadm [INF] Updating smithi047:/etc/ceph/ceph.conf 2024-04-14T15:26:07.062 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:06 smithi138 bash[22282]: cephadm 2024-04-14T15:26:05.633904+0000 mgr.a (mgr.14152) 98 : cephadm [INF] Updating smithi110:/etc/ceph/ceph.conf 2024-04-14T15:26:07.062 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:06 smithi138 bash[22282]: cephadm 2024-04-14T15:26:05.634331+0000 mgr.a (mgr.14152) 99 : cephadm [INF] Updating smithi138:/etc/ceph/ceph.conf 2024-04-14T15:26:07.062 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:06 smithi138 bash[22282]: cluster 2024-04-14T15:26:05.854960+0000 mgr.a (mgr.14152) 100 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:07.062 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:06 smithi138 bash[22282]: cephadm 2024-04-14T15:26:06.000611+0000 mgr.a (mgr.14152) 101 : cephadm [INF] Updating smithi047:/var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T15:26:07.062 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:06 smithi138 bash[22282]: cephadm 2024-04-14T15:26:06.001031+0000 mgr.a (mgr.14152) 102 : cephadm [INF] Updating smithi110:/var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T15:26:07.063 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:06 smithi138 bash[22282]: cephadm 2024-04-14T15:26:06.001228+0000 mgr.a (mgr.14152) 103 : cephadm [INF] Updating smithi138:/var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T15:26:07.063 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:06 smithi138 bash[22282]: audit 2024-04-14T15:26:06.220331+0000 mon.a (mon.0) 341 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:07.063 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:06 smithi138 bash[22282]: audit 2024-04-14T15:26:06.224990+0000 mon.a (mon.0) 342 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:07.063 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:06 smithi138 bash[22282]: audit 2024-04-14T15:26:06.229161+0000 mon.a (mon.0) 343 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:07.063 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:06 smithi138 bash[22282]: audit 2024-04-14T15:26:06.233666+0000 mon.a (mon.0) 344 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:07.063 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:06 smithi138 bash[22282]: audit 2024-04-14T15:26:06.238242+0000 mon.a (mon.0) 345 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:07.063 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:06 smithi138 bash[22282]: audit 2024-04-14T15:26:06.242525+0000 mon.a (mon.0) 346 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:07.063 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:06 smithi138 bash[22282]: audit 2024-04-14T15:26:06.248796+0000 mon.a (mon.0) 347 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:07.063 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:06 smithi138 bash[22282]: cephadm 2024-04-14T15:26:06.348735+0000 mgr.a (mgr.14152) 104 : cephadm [INF] Reconfiguring mon.a (monmap changed)... 2024-04-14T15:26:07.063 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:06 smithi138 bash[22282]: audit 2024-04-14T15:26:06.349498+0000 mon.a (mon.0) 348 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-14T15:26:07.063 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:06 smithi138 bash[22282]: audit 2024-04-14T15:26:06.351374+0000 mon.a (mon.0) 349 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-14T15:26:07.063 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:06 smithi138 bash[22282]: audit 2024-04-14T15:26:06.353205+0000 mon.a (mon.0) 350 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:26:07.063 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:06 smithi138 bash[22282]: cephadm 2024-04-14T15:26:06.355021+0000 mgr.a (mgr.14152) 105 : cephadm [INF] Reconfiguring daemon mon.a on smithi047 2024-04-14T15:26:08.851 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T15:26:09.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:09 smithi047 bash[21449]: cluster 2024-04-14T15:26:07.855343+0000 mgr.a (mgr.14152) 106 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:09.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:09 smithi047 bash[21449]: audit 2024-04-14T15:26:08.397987+0000 mon.a (mon.0) 351 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:09.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:09 smithi047 bash[21449]: audit 2024-04-14T15:26:08.405660+0000 mon.a (mon.0) 352 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:09.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:09 smithi138 bash[22282]: cluster 2024-04-14T15:26:07.855343+0000 mgr.a (mgr.14152) 106 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:09.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:09 smithi138 bash[22282]: audit 2024-04-14T15:26:08.397987+0000 mon.a (mon.0) 351 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:09.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:09 smithi138 bash[22282]: audit 2024-04-14T15:26:08.405660+0000 mon.a (mon.0) 352 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:09.893 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:09 smithi110 bash[22161]: cluster 2024-04-14T15:26:07.855343+0000 mgr.a (mgr.14152) 106 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:09.893 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:09 smithi110 bash[22161]: audit 2024-04-14T15:26:08.397987+0000 mon.a (mon.0) 351 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:09.893 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:09 smithi110 bash[22161]: audit 2024-04-14T15:26:08.405660+0000 mon.a (mon.0) 352 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:10.710 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:10 smithi047 bash[21449]: audit 2024-04-14T15:26:09.411102+0000 mon.a (mon.0) 353 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:10.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:10 smithi047 bash[21449]: audit 2024-04-14T15:26:09.416292+0000 mon.a (mon.0) 354 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:10.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:10 smithi047 bash[21449]: audit 2024-04-14T15:26:09.422338+0000 mon.a (mon.0) 355 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:10.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:10 smithi138 bash[22282]: audit 2024-04-14T15:26:09.411102+0000 mon.a (mon.0) 353 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:10.812 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:10 smithi138 bash[22282]: audit 2024-04-14T15:26:09.416292+0000 mon.a (mon.0) 354 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:10.812 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:10 smithi138 bash[22282]: audit 2024-04-14T15:26:09.422338+0000 mon.a (mon.0) 355 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:10.893 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:10 smithi110 bash[22161]: audit 2024-04-14T15:26:09.411102+0000 mon.a (mon.0) 353 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:10.893 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:10 smithi110 bash[22161]: audit 2024-04-14T15:26:09.416292+0000 mon.a (mon.0) 354 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:10.893 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:10 smithi110 bash[22161]: audit 2024-04-14T15:26:09.422338+0000 mon.a (mon.0) 355 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:11.537 INFO:teuthology.orchestra.run.smithi047.stdout:# minimal ceph.conf for af942ef8-fa72-11ee-bc8e-c7b262605968 2024-04-14T15:26:11.537 INFO:teuthology.orchestra.run.smithi047.stdout:[global] 2024-04-14T15:26:11.537 INFO:teuthology.orchestra.run.smithi047.stdout: fsid = af942ef8-fa72-11ee-bc8e-c7b262605968 2024-04-14T15:26:11.537 INFO:teuthology.orchestra.run.smithi047.stdout: mon_host = [v2:172.21.15.47:3300/0,v1:172.21.15.47:6789/0] [v2:172.21.15.110:3300/0,v1:172.21.15.110:6789/0] [v2:172.21.15.138:3300/0,v1:172.21.15.138:6789/0] 2024-04-14T15:26:11.710 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:11 smithi047 bash[21449]: cluster 2024-04-14T15:26:09.855757+0000 mgr.a (mgr.14152) 107 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:11.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:11 smithi138 bash[22282]: cluster 2024-04-14T15:26:09.855757+0000 mgr.a (mgr.14152) 107 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:11.893 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:11 smithi110 bash[22161]: cluster 2024-04-14T15:26:09.855757+0000 mgr.a (mgr.14152) 107 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:12.179 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-04-14T15:26:12.179 DEBUG:teuthology.orchestra.run.smithi047:> set -ex 2024-04-14T15:26:12.180 DEBUG:teuthology.orchestra.run.smithi047:> sudo dd of=/etc/ceph/ceph.conf 2024-04-14T15:26:12.194 DEBUG:teuthology.orchestra.run.smithi047:> set -ex 2024-04-14T15:26:12.194 DEBUG:teuthology.orchestra.run.smithi047:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-04-14T15:26:12.247 DEBUG:teuthology.orchestra.run.smithi110:> set -ex 2024-04-14T15:26:12.247 DEBUG:teuthology.orchestra.run.smithi110:> sudo dd of=/etc/ceph/ceph.conf 2024-04-14T15:26:12.261 DEBUG:teuthology.orchestra.run.smithi110:> set -ex 2024-04-14T15:26:12.261 DEBUG:teuthology.orchestra.run.smithi110:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-04-14T15:26:12.318 DEBUG:teuthology.orchestra.run.smithi138:> set -ex 2024-04-14T15:26:12.318 DEBUG:teuthology.orchestra.run.smithi138:> sudo dd of=/etc/ceph/ceph.conf 2024-04-14T15:26:12.333 DEBUG:teuthology.orchestra.run.smithi138:> set -ex 2024-04-14T15:26:12.333 DEBUG:teuthology.orchestra.run.smithi138:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-04-14T15:26:12.389 INFO:tasks.cephadm:Adding mgr.a on smithi047 2024-04-14T15:26:12.389 INFO:tasks.cephadm:Adding mgr.b on smithi110 2024-04-14T15:26:12.390 DEBUG:teuthology.orchestra.run.smithi138:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph orch apply mgr '2;smithi047=a;smithi110=b' 2024-04-14T15:26:12.460 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:12 smithi047 bash[21449]: audit 2024-04-14T15:26:11.537251+0000 mon.a (mon.0) 356 : audit [DBG] from='client.? 172.21.15.47:0/285199358' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:26:12.643 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:12 smithi110 bash[22161]: audit 2024-04-14T15:26:11.537251+0000 mon.a (mon.0) 356 : audit [DBG] from='client.? 172.21.15.47:0/285199358' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:26:12.750 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:12 smithi138 bash[22282]: audit 2024-04-14T15:26:11.537251+0000 mon.a (mon.0) 356 : audit [DBG] from='client.? 172.21.15.47:0/285199358' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:26:13.710 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:13 smithi047 bash[21449]: cluster 2024-04-14T15:26:11.856152+0000 mgr.a (mgr.14152) 108 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:13.717 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:13 smithi138 bash[22282]: cluster 2024-04-14T15:26:11.856152+0000 mgr.a (mgr.14152) 108 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:13.893 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:13 smithi110 bash[22161]: cluster 2024-04-14T15:26:11.856152+0000 mgr.a (mgr.14152) 108 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:15.710 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:15 smithi047 bash[21449]: cluster 2024-04-14T15:26:13.856550+0000 mgr.a (mgr.14152) 109 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:15.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:15 smithi138 bash[22282]: cluster 2024-04-14T15:26:13.856550+0000 mgr.a (mgr.14152) 109 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:15.893 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:15 smithi110 bash[22161]: cluster 2024-04-14T15:26:13.856550+0000 mgr.a (mgr.14152) 109 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:16.956 INFO:teuthology.orchestra.run.smithi138.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.c/config 2024-04-14T15:26:17.702 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:17 smithi138 bash[22282]: cluster 2024-04-14T15:26:15.856936+0000 mgr.a (mgr.14152) 110 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:17.710 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:17 smithi047 bash[21449]: cluster 2024-04-14T15:26:15.856936+0000 mgr.a (mgr.14152) 110 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:17.714 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:17 smithi110 bash[22161]: cluster 2024-04-14T15:26:15.856936+0000 mgr.a (mgr.14152) 110 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:19.597 INFO:teuthology.orchestra.run.smithi138.stdout:Scheduled mgr update... 2024-04-14T15:26:19.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:19 smithi047 bash[21449]: cluster 2024-04-14T15:26:17.857332+0000 mgr.a (mgr.14152) 111 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:19.808 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:19 smithi138 bash[22282]: cluster 2024-04-14T15:26:17.857332+0000 mgr.a (mgr.14152) 111 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:19.893 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:19 smithi110 bash[22161]: cluster 2024-04-14T15:26:17.857332+0000 mgr.a (mgr.14152) 111 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:20.211 DEBUG:teuthology.orchestra.run.smithi110:mgr.b> sudo journalctl -f -n 0 -u ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@mgr.b.service 2024-04-14T15:26:20.214 INFO:tasks.cephadm:Deploying OSDs... 2024-04-14T15:26:20.214 DEBUG:teuthology.orchestra.run.smithi047:> set -ex 2024-04-14T15:26:20.214 DEBUG:teuthology.orchestra.run.smithi047:> dd if=/scratch_devs of=/dev/stdout 2024-04-14T15:26:20.221 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-14T15:26:20.221 DEBUG:teuthology.orchestra.run.smithi047:> stat /dev/vg_nvme/lv_1 2024-04-14T15:26:20.268 INFO:teuthology.orchestra.run.smithi047.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-04-14T15:26:20.268 INFO:teuthology.orchestra.run.smithi047.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-14T15:26:20.268 INFO:teuthology.orchestra.run.smithi047.stdout:Device: 5h/5d Inode: 871 Links: 1 2024-04-14T15:26:20.268 INFO:teuthology.orchestra.run.smithi047.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-14T15:26:20.268 INFO:teuthology.orchestra.run.smithi047.stdout:Access: 2024-04-14 15:16:11.479262078 +0000 2024-04-14T15:26:20.268 INFO:teuthology.orchestra.run.smithi047.stdout:Modify: 2024-04-14 15:16:11.207264496 +0000 2024-04-14T15:26:20.268 INFO:teuthology.orchestra.run.smithi047.stdout:Change: 2024-04-14 15:16:11.207264496 +0000 2024-04-14T15:26:20.268 INFO:teuthology.orchestra.run.smithi047.stdout: Birth: - 2024-04-14T15:26:20.269 DEBUG:teuthology.orchestra.run.smithi047:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-04-14T15:26:20.322 INFO:teuthology.orchestra.run.smithi047.stderr:1+0 records in 2024-04-14T15:26:20.322 INFO:teuthology.orchestra.run.smithi047.stderr:1+0 records out 2024-04-14T15:26:20.322 INFO:teuthology.orchestra.run.smithi047.stderr:512 bytes copied, 0.000213977 s, 2.4 MB/s 2024-04-14T15:26:20.324 DEBUG:teuthology.orchestra.run.smithi047:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-04-14T15:26:20.373 DEBUG:teuthology.orchestra.run.smithi047:> stat /dev/vg_nvme/lv_2 2024-04-14T15:26:20.419 INFO:teuthology.orchestra.run.smithi047.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-04-14T15:26:20.419 INFO:teuthology.orchestra.run.smithi047.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-14T15:26:20.419 INFO:teuthology.orchestra.run.smithi047.stdout:Device: 5h/5d Inode: 891 Links: 1 2024-04-14T15:26:20.419 INFO:teuthology.orchestra.run.smithi047.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-14T15:26:20.419 INFO:teuthology.orchestra.run.smithi047.stdout:Access: 2024-04-14 15:16:11.983257598 +0000 2024-04-14T15:26:20.419 INFO:teuthology.orchestra.run.smithi047.stdout:Modify: 2024-04-14 15:16:11.715259980 +0000 2024-04-14T15:26:20.419 INFO:teuthology.orchestra.run.smithi047.stdout:Change: 2024-04-14 15:16:11.715259980 +0000 2024-04-14T15:26:20.419 INFO:teuthology.orchestra.run.smithi047.stdout: Birth: - 2024-04-14T15:26:20.420 DEBUG:teuthology.orchestra.run.smithi047:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-04-14T15:26:20.475 INFO:teuthology.orchestra.run.smithi047.stderr:1+0 records in 2024-04-14T15:26:20.475 INFO:teuthology.orchestra.run.smithi047.stderr:1+0 records out 2024-04-14T15:26:20.475 INFO:teuthology.orchestra.run.smithi047.stderr:512 bytes copied, 0.000330058 s, 1.6 MB/s 2024-04-14T15:26:20.476 DEBUG:teuthology.orchestra.run.smithi047:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-04-14T15:26:20.524 DEBUG:teuthology.orchestra.run.smithi047:> stat /dev/vg_nvme/lv_3 2024-04-14T15:26:20.575 INFO:teuthology.orchestra.run.smithi047.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-04-14T15:26:20.575 INFO:teuthology.orchestra.run.smithi047.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-14T15:26:20.575 INFO:teuthology.orchestra.run.smithi047.stdout:Device: 5h/5d Inode: 909 Links: 1 2024-04-14T15:26:20.575 INFO:teuthology.orchestra.run.smithi047.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-14T15:26:20.575 INFO:teuthology.orchestra.run.smithi047.stdout:Access: 2024-04-14 15:16:12.483253154 +0000 2024-04-14T15:26:20.575 INFO:teuthology.orchestra.run.smithi047.stdout:Modify: 2024-04-14 15:16:12.227255429 +0000 2024-04-14T15:26:20.576 INFO:teuthology.orchestra.run.smithi047.stdout:Change: 2024-04-14 15:16:12.227255429 +0000 2024-04-14T15:26:20.576 INFO:teuthology.orchestra.run.smithi047.stdout: Birth: - 2024-04-14T15:26:20.576 DEBUG:teuthology.orchestra.run.smithi047:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-04-14T15:26:20.630 INFO:teuthology.orchestra.run.smithi047.stderr:1+0 records in 2024-04-14T15:26:20.630 INFO:teuthology.orchestra.run.smithi047.stderr:1+0 records out 2024-04-14T15:26:20.630 INFO:teuthology.orchestra.run.smithi047.stderr:512 bytes copied, 0.000254782 s, 2.0 MB/s 2024-04-14T15:26:20.631 DEBUG:teuthology.orchestra.run.smithi047:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-04-14T15:26:20.681 DEBUG:teuthology.orchestra.run.smithi047:> stat /dev/vg_nvme/lv_4 2024-04-14T15:26:20.710 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:20 smithi047 bash[21449]: audit 2024-04-14T15:26:19.586960+0000 mgr.a (mgr.14152) 112 : audit [DBG] from='client.24106 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi047=a;smithi110=b", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:26:20.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:20 smithi047 bash[21449]: cephadm 2024-04-14T15:26:19.590609+0000 mgr.a (mgr.14152) 113 : cephadm [INF] Saving service mgr spec with placement smithi047=a;smithi110=b;count:2 2024-04-14T15:26:20.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:20 smithi047 bash[21449]: audit 2024-04-14T15:26:19.597014+0000 mon.a (mon.0) 357 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:20.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:20 smithi047 bash[21449]: audit 2024-04-14T15:26:19.620287+0000 mon.a (mon.0) 358 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:26:20.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:20 smithi047 bash[21449]: audit 2024-04-14T15:26:19.626017+0000 mon.a (mon.0) 359 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:26:20.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:20 smithi047 bash[21449]: audit 2024-04-14T15:26:19.627818+0000 mon.a (mon.0) 360 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:26:20.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:20 smithi047 bash[21449]: audit 2024-04-14T15:26:19.637054+0000 mon.a (mon.0) 361 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:20.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:20 smithi047 bash[21449]: audit 2024-04-14T15:26:19.641527+0000 mon.a (mon.0) 362 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-14T15:26:20.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:20 smithi047 bash[21449]: audit 2024-04-14T15:26:19.644155+0000 mon.a (mon.0) 363 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-04-14T15:26:20.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:20 smithi047 bash[21449]: audit 2024-04-14T15:26:19.648731+0000 mon.a (mon.0) 364 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-14T15:26:20.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:20 smithi047 bash[21449]: audit 2024-04-14T15:26:19.650624+0000 mon.a (mon.0) 365 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:26:20.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:20 smithi047 bash[21449]: cephadm 2024-04-14T15:26:19.652784+0000 mgr.a (mgr.14152) 114 : cephadm [INF] Deploying daemon mgr.b on smithi110 2024-04-14T15:26:20.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:20 smithi047 bash[21449]: cluster 2024-04-14T15:26:19.857694+0000 mgr.a (mgr.14152) 115 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:20.716 INFO:teuthology.orchestra.run.smithi047.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-04-14T15:26:20.716 INFO:teuthology.orchestra.run.smithi047.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-14T15:26:20.717 INFO:teuthology.orchestra.run.smithi047.stdout:Device: 5h/5d Inode: 926 Links: 1 2024-04-14T15:26:20.717 INFO:teuthology.orchestra.run.smithi047.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-14T15:26:20.717 INFO:teuthology.orchestra.run.smithi047.stdout:Access: 2024-04-14 15:16:12.991248638 +0000 2024-04-14T15:26:20.717 INFO:teuthology.orchestra.run.smithi047.stdout:Modify: 2024-04-14 15:16:12.711251126 +0000 2024-04-14T15:26:20.717 INFO:teuthology.orchestra.run.smithi047.stdout:Change: 2024-04-14 15:16:12.711251126 +0000 2024-04-14T15:26:20.717 INFO:teuthology.orchestra.run.smithi047.stdout: Birth: - 2024-04-14T15:26:20.717 DEBUG:teuthology.orchestra.run.smithi047:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-04-14T15:26:20.770 INFO:teuthology.orchestra.run.smithi047.stderr:1+0 records in 2024-04-14T15:26:20.770 INFO:teuthology.orchestra.run.smithi047.stderr:1+0 records out 2024-04-14T15:26:20.770 INFO:teuthology.orchestra.run.smithi047.stderr:512 bytes copied, 0.000231938 s, 2.2 MB/s 2024-04-14T15:26:20.771 DEBUG:teuthology.orchestra.run.smithi047:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-04-14T15:26:20.821 DEBUG:teuthology.orchestra.run.smithi110:> set -ex 2024-04-14T15:26:20.821 DEBUG:teuthology.orchestra.run.smithi110:> dd if=/scratch_devs of=/dev/stdout 2024-04-14T15:26:20.828 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-14T15:26:20.828 DEBUG:teuthology.orchestra.run.smithi110:> stat /dev/vg_nvme/lv_1 2024-04-14T15:26:20.878 INFO:teuthology.orchestra.run.smithi110.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-04-14T15:26:20.878 INFO:teuthology.orchestra.run.smithi110.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-14T15:26:20.879 INFO:teuthology.orchestra.run.smithi110.stdout:Device: 5h/5d Inode: 880 Links: 1 2024-04-14T15:26:20.879 INFO:teuthology.orchestra.run.smithi110.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-14T15:26:20.879 INFO:teuthology.orchestra.run.smithi110.stdout:Access: 2024-04-14 15:16:14.449899099 +0000 2024-04-14T15:26:20.879 INFO:teuthology.orchestra.run.smithi110.stdout:Modify: 2024-04-14 15:16:14.201901307 +0000 2024-04-14T15:26:20.879 INFO:teuthology.orchestra.run.smithi110.stdout:Change: 2024-04-14 15:16:14.201901307 +0000 2024-04-14T15:26:20.879 INFO:teuthology.orchestra.run.smithi110.stdout: Birth: - 2024-04-14T15:26:20.879 DEBUG:teuthology.orchestra.run.smithi110:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-04-14T15:26:20.893 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:20 smithi110 bash[22161]: audit 2024-04-14T15:26:19.586960+0000 mgr.a (mgr.14152) 112 : audit [DBG] from='client.24106 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi047=a;smithi110=b", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:26:20.893 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:20 smithi110 bash[22161]: cephadm 2024-04-14T15:26:19.590609+0000 mgr.a (mgr.14152) 113 : cephadm [INF] Saving service mgr spec with placement smithi047=a;smithi110=b;count:2 2024-04-14T15:26:20.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:20 smithi110 bash[22161]: audit 2024-04-14T15:26:19.597014+0000 mon.a (mon.0) 357 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:20.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:20 smithi110 bash[22161]: audit 2024-04-14T15:26:19.620287+0000 mon.a (mon.0) 358 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:26:20.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:20 smithi110 bash[22161]: audit 2024-04-14T15:26:19.626017+0000 mon.a (mon.0) 359 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:26:20.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:20 smithi110 bash[22161]: audit 2024-04-14T15:26:19.627818+0000 mon.a (mon.0) 360 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:26:20.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:20 smithi110 bash[22161]: audit 2024-04-14T15:26:19.637054+0000 mon.a (mon.0) 361 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:20.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:20 smithi110 bash[22161]: audit 2024-04-14T15:26:19.641527+0000 mon.a (mon.0) 362 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-14T15:26:20.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:20 smithi110 bash[22161]: audit 2024-04-14T15:26:19.644155+0000 mon.a (mon.0) 363 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-04-14T15:26:20.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:20 smithi110 bash[22161]: audit 2024-04-14T15:26:19.648731+0000 mon.a (mon.0) 364 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-14T15:26:20.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:20 smithi110 bash[22161]: audit 2024-04-14T15:26:19.650624+0000 mon.a (mon.0) 365 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:26:20.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:20 smithi110 bash[22161]: cephadm 2024-04-14T15:26:19.652784+0000 mgr.a (mgr.14152) 114 : cephadm [INF] Deploying daemon mgr.b on smithi110 2024-04-14T15:26:20.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:20 smithi110 bash[22161]: cluster 2024-04-14T15:26:19.857694+0000 mgr.a (mgr.14152) 115 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:20.906 INFO:teuthology.orchestra.run.smithi110.stderr:1+0 records in 2024-04-14T15:26:20.906 INFO:teuthology.orchestra.run.smithi110.stderr:1+0 records out 2024-04-14T15:26:20.906 INFO:teuthology.orchestra.run.smithi110.stderr:512 bytes copied, 0.000249039 s, 2.1 MB/s 2024-04-14T15:26:20.907 DEBUG:teuthology.orchestra.run.smithi110:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-04-14T15:26:20.955 DEBUG:teuthology.orchestra.run.smithi110:> stat /dev/vg_nvme/lv_2 2024-04-14T15:26:21.006 INFO:teuthology.orchestra.run.smithi110.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-04-14T15:26:21.006 INFO:teuthology.orchestra.run.smithi110.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-14T15:26:21.006 INFO:teuthology.orchestra.run.smithi110.stdout:Device: 5h/5d Inode: 903 Links: 1 2024-04-14T15:26:21.006 INFO:teuthology.orchestra.run.smithi110.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-14T15:26:21.006 INFO:teuthology.orchestra.run.smithi110.stdout:Access: 2024-04-14 15:16:14.957894577 +0000 2024-04-14T15:26:21.006 INFO:teuthology.orchestra.run.smithi110.stdout:Modify: 2024-04-14 15:16:14.677897068 +0000 2024-04-14T15:26:21.006 INFO:teuthology.orchestra.run.smithi110.stdout:Change: 2024-04-14 15:16:14.677897068 +0000 2024-04-14T15:26:21.006 INFO:teuthology.orchestra.run.smithi110.stdout: Birth: - 2024-04-14T15:26:21.006 DEBUG:teuthology.orchestra.run.smithi110:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-04-14T15:26:21.058 INFO:teuthology.orchestra.run.smithi110.stderr:1+0 records in 2024-04-14T15:26:21.058 INFO:teuthology.orchestra.run.smithi110.stderr:1+0 records out 2024-04-14T15:26:21.058 INFO:teuthology.orchestra.run.smithi110.stderr:512 bytes copied, 0.000175385 s, 2.9 MB/s 2024-04-14T15:26:21.059 DEBUG:teuthology.orchestra.run.smithi110:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-04-14T15:26:21.061 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:20 smithi138 bash[22282]: audit 2024-04-14T15:26:19.586960+0000 mgr.a (mgr.14152) 112 : audit [DBG] from='client.24106 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi047=a;smithi110=b", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:26:21.061 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:20 smithi138 bash[22282]: cephadm 2024-04-14T15:26:19.590609+0000 mgr.a (mgr.14152) 113 : cephadm [INF] Saving service mgr spec with placement smithi047=a;smithi110=b;count:2 2024-04-14T15:26:21.061 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:20 smithi138 bash[22282]: audit 2024-04-14T15:26:19.597014+0000 mon.a (mon.0) 357 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:21.061 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:20 smithi138 bash[22282]: audit 2024-04-14T15:26:19.620287+0000 mon.a (mon.0) 358 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:26:21.062 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:20 smithi138 bash[22282]: audit 2024-04-14T15:26:19.626017+0000 mon.a (mon.0) 359 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:26:21.062 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:20 smithi138 bash[22282]: audit 2024-04-14T15:26:19.627818+0000 mon.a (mon.0) 360 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:26:21.062 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:20 smithi138 bash[22282]: audit 2024-04-14T15:26:19.637054+0000 mon.a (mon.0) 361 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:21.062 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:20 smithi138 bash[22282]: audit 2024-04-14T15:26:19.641527+0000 mon.a (mon.0) 362 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-14T15:26:21.062 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:20 smithi138 bash[22282]: audit 2024-04-14T15:26:19.644155+0000 mon.a (mon.0) 363 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-04-14T15:26:21.062 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:20 smithi138 bash[22282]: audit 2024-04-14T15:26:19.648731+0000 mon.a (mon.0) 364 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-14T15:26:21.062 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:20 smithi138 bash[22282]: audit 2024-04-14T15:26:19.650624+0000 mon.a (mon.0) 365 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:26:21.062 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:20 smithi138 bash[22282]: cephadm 2024-04-14T15:26:19.652784+0000 mgr.a (mgr.14152) 114 : cephadm [INF] Deploying daemon mgr.b on smithi110 2024-04-14T15:26:21.062 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:20 smithi138 bash[22282]: cluster 2024-04-14T15:26:19.857694+0000 mgr.a (mgr.14152) 115 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:21.111 DEBUG:teuthology.orchestra.run.smithi110:> stat /dev/vg_nvme/lv_3 2024-04-14T15:26:21.158 INFO:teuthology.orchestra.run.smithi110.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-04-14T15:26:21.158 INFO:teuthology.orchestra.run.smithi110.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-14T15:26:21.158 INFO:teuthology.orchestra.run.smithi110.stdout:Device: 5h/5d Inode: 912 Links: 1 2024-04-14T15:26:21.158 INFO:teuthology.orchestra.run.smithi110.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-14T15:26:21.158 INFO:teuthology.orchestra.run.smithi110.stdout:Access: 2024-04-14 15:16:15.481889912 +0000 2024-04-14T15:26:21.158 INFO:teuthology.orchestra.run.smithi110.stdout:Modify: 2024-04-14 15:16:15.205892369 +0000 2024-04-14T15:26:21.158 INFO:teuthology.orchestra.run.smithi110.stdout:Change: 2024-04-14 15:16:15.205892369 +0000 2024-04-14T15:26:21.158 INFO:teuthology.orchestra.run.smithi110.stdout: Birth: - 2024-04-14T15:26:21.159 DEBUG:teuthology.orchestra.run.smithi110:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-04-14T15:26:21.213 INFO:teuthology.orchestra.run.smithi110.stderr:1+0 records in 2024-04-14T15:26:21.213 INFO:teuthology.orchestra.run.smithi110.stderr:1+0 records out 2024-04-14T15:26:21.213 INFO:teuthology.orchestra.run.smithi110.stderr:512 bytes copied, 0.000321792 s, 1.6 MB/s 2024-04-14T15:26:21.214 DEBUG:teuthology.orchestra.run.smithi110:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-04-14T15:26:21.263 DEBUG:teuthology.orchestra.run.smithi110:> stat /dev/vg_nvme/lv_4 2024-04-14T15:26:21.310 INFO:teuthology.orchestra.run.smithi110.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-04-14T15:26:21.310 INFO:teuthology.orchestra.run.smithi110.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-14T15:26:21.310 INFO:teuthology.orchestra.run.smithi110.stdout:Device: 5h/5d Inode: 935 Links: 1 2024-04-14T15:26:21.310 INFO:teuthology.orchestra.run.smithi110.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-14T15:26:21.310 INFO:teuthology.orchestra.run.smithi110.stdout:Access: 2024-04-14 15:16:15.717887811 +0000 2024-04-14T15:26:21.310 INFO:teuthology.orchestra.run.smithi110.stdout:Modify: 2024-04-14 15:16:15.713887847 +0000 2024-04-14T15:26:21.310 INFO:teuthology.orchestra.run.smithi110.stdout:Change: 2024-04-14 15:16:15.713887847 +0000 2024-04-14T15:26:21.310 INFO:teuthology.orchestra.run.smithi110.stdout: Birth: - 2024-04-14T15:26:21.311 DEBUG:teuthology.orchestra.run.smithi110:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-04-14T15:26:21.364 INFO:teuthology.orchestra.run.smithi110.stderr:1+0 records in 2024-04-14T15:26:21.365 INFO:teuthology.orchestra.run.smithi110.stderr:1+0 records out 2024-04-14T15:26:21.365 INFO:teuthology.orchestra.run.smithi110.stderr:512 bytes copied, 0.000307202 s, 1.7 MB/s 2024-04-14T15:26:21.366 DEBUG:teuthology.orchestra.run.smithi110:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-04-14T15:26:21.415 DEBUG:teuthology.orchestra.run.smithi138:> set -ex 2024-04-14T15:26:21.415 DEBUG:teuthology.orchestra.run.smithi138:> dd if=/scratch_devs of=/dev/stdout 2024-04-14T15:26:21.421 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-14T15:26:21.422 DEBUG:teuthology.orchestra.run.smithi138:> stat /dev/vg_nvme/lv_1 2024-04-14T15:26:21.470 INFO:teuthology.orchestra.run.smithi138.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-04-14T15:26:21.470 INFO:teuthology.orchestra.run.smithi138.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-14T15:26:21.470 INFO:teuthology.orchestra.run.smithi138.stdout:Device: 5h/5d Inode: 878 Links: 1 2024-04-14T15:26:21.470 INFO:teuthology.orchestra.run.smithi138.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-14T15:26:21.470 INFO:teuthology.orchestra.run.smithi138.stdout:Access: 2024-04-14 15:16:11.226703336 +0000 2024-04-14T15:26:21.471 INFO:teuthology.orchestra.run.smithi138.stdout:Modify: 2024-04-14 15:16:11.222703372 +0000 2024-04-14T15:26:21.471 INFO:teuthology.orchestra.run.smithi138.stdout:Change: 2024-04-14 15:16:11.222703372 +0000 2024-04-14T15:26:21.471 INFO:teuthology.orchestra.run.smithi138.stdout: Birth: - 2024-04-14T15:26:21.471 DEBUG:teuthology.orchestra.run.smithi138:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-04-14T15:26:21.524 INFO:teuthology.orchestra.run.smithi138.stderr:1+0 records in 2024-04-14T15:26:21.525 INFO:teuthology.orchestra.run.smithi138.stderr:1+0 records out 2024-04-14T15:26:21.525 INFO:teuthology.orchestra.run.smithi138.stderr:512 bytes copied, 0.000457019 s, 1.1 MB/s 2024-04-14T15:26:21.526 DEBUG:teuthology.orchestra.run.smithi138:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-04-14T15:26:21.575 DEBUG:teuthology.orchestra.run.smithi138:> stat /dev/vg_nvme/lv_2 2024-04-14T15:26:21.621 INFO:teuthology.orchestra.run.smithi138.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-04-14T15:26:21.622 INFO:teuthology.orchestra.run.smithi138.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-14T15:26:21.622 INFO:teuthology.orchestra.run.smithi138.stdout:Device: 5h/5d Inode: 896 Links: 1 2024-04-14T15:26:21.622 INFO:teuthology.orchestra.run.smithi138.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-14T15:26:21.622 INFO:teuthology.orchestra.run.smithi138.stdout:Access: 2024-04-14 15:16:11.674699334 +0000 2024-04-14T15:26:21.622 INFO:teuthology.orchestra.run.smithi138.stdout:Modify: 2024-04-14 15:16:11.670699370 +0000 2024-04-14T15:26:21.622 INFO:teuthology.orchestra.run.smithi138.stdout:Change: 2024-04-14 15:16:11.670699370 +0000 2024-04-14T15:26:21.622 INFO:teuthology.orchestra.run.smithi138.stdout: Birth: - 2024-04-14T15:26:21.622 DEBUG:teuthology.orchestra.run.smithi138:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-04-14T15:26:21.676 INFO:teuthology.orchestra.run.smithi138.stderr:1+0 records in 2024-04-14T15:26:21.676 INFO:teuthology.orchestra.run.smithi138.stderr:1+0 records out 2024-04-14T15:26:21.676 INFO:teuthology.orchestra.run.smithi138.stderr:512 bytes copied, 0.000421713 s, 1.2 MB/s 2024-04-14T15:26:21.678 DEBUG:teuthology.orchestra.run.smithi138:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-04-14T15:26:21.729 DEBUG:teuthology.orchestra.run.smithi138:> stat /dev/vg_nvme/lv_3 2024-04-14T15:26:21.778 INFO:teuthology.orchestra.run.smithi138.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-04-14T15:26:21.778 INFO:teuthology.orchestra.run.smithi138.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-14T15:26:21.778 INFO:teuthology.orchestra.run.smithi138.stdout:Device: 5h/5d Inode: 912 Links: 1 2024-04-14T15:26:21.778 INFO:teuthology.orchestra.run.smithi138.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-14T15:26:21.778 INFO:teuthology.orchestra.run.smithi138.stdout:Access: 2024-04-14 15:16:12.438692510 +0000 2024-04-14T15:26:21.778 INFO:teuthology.orchestra.run.smithi138.stdout:Modify: 2024-04-14 15:16:12.182694796 +0000 2024-04-14T15:26:21.778 INFO:teuthology.orchestra.run.smithi138.stdout:Change: 2024-04-14 15:16:12.182694796 +0000 2024-04-14T15:26:21.778 INFO:teuthology.orchestra.run.smithi138.stdout: Birth: - 2024-04-14T15:26:21.779 DEBUG:teuthology.orchestra.run.smithi138:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-04-14T15:26:21.832 INFO:teuthology.orchestra.run.smithi138.stderr:1+0 records in 2024-04-14T15:26:21.832 INFO:teuthology.orchestra.run.smithi138.stderr:1+0 records out 2024-04-14T15:26:21.832 INFO:teuthology.orchestra.run.smithi138.stderr:512 bytes copied, 0.000442372 s, 1.2 MB/s 2024-04-14T15:26:21.833 DEBUG:teuthology.orchestra.run.smithi138:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-04-14T15:26:21.883 DEBUG:teuthology.orchestra.run.smithi138:> stat /dev/vg_nvme/lv_4 2024-04-14T15:26:21.930 INFO:teuthology.orchestra.run.smithi138.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-04-14T15:26:21.930 INFO:teuthology.orchestra.run.smithi138.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-14T15:26:21.931 INFO:teuthology.orchestra.run.smithi138.stdout:Device: 5h/5d Inode: 930 Links: 1 2024-04-14T15:26:21.931 INFO:teuthology.orchestra.run.smithi138.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-14T15:26:21.931 INFO:teuthology.orchestra.run.smithi138.stdout:Access: 2024-04-14 15:16:12.926688151 +0000 2024-04-14T15:26:21.931 INFO:teuthology.orchestra.run.smithi138.stdout:Modify: 2024-04-14 15:16:12.674690402 +0000 2024-04-14T15:26:21.931 INFO:teuthology.orchestra.run.smithi138.stdout:Change: 2024-04-14 15:16:12.674690402 +0000 2024-04-14T15:26:21.931 INFO:teuthology.orchestra.run.smithi138.stdout: Birth: - 2024-04-14T15:26:21.931 DEBUG:teuthology.orchestra.run.smithi138:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-04-14T15:26:21.984 INFO:teuthology.orchestra.run.smithi138.stderr:1+0 records in 2024-04-14T15:26:21.984 INFO:teuthology.orchestra.run.smithi138.stderr:1+0 records out 2024-04-14T15:26:21.985 INFO:teuthology.orchestra.run.smithi138.stderr:512 bytes copied, 0.000358977 s, 1.4 MB/s 2024-04-14T15:26:21.986 DEBUG:teuthology.orchestra.run.smithi138:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-04-14T15:26:22.034 INFO:tasks.cephadm:Deploying osd.0 on smithi047 with /dev/vg_nvme/lv_4... 2024-04-14T15:26:22.035 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_4 2024-04-14T15:26:22.059 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:21 smithi110 systemd[1]: /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-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-14T15:26:22.059 INFO:journalctl@ceph.mgr.b.smithi110.stdout:Apr 14 15:26:21 smithi110 systemd[1]: /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-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-14T15:26:22.060 INFO:journalctl@ceph.mgr.b.smithi110.stdout:Apr 14 15:26:21 smithi110 systemd[1]: /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-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-14T15:26:22.060 INFO:journalctl@ceph.mgr.b.smithi110.stdout:Apr 14 15:26:21 smithi110 systemd[1]: /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-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-14T15:26:22.393 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:22 smithi110 systemd[1]: /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-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-14T15:26:22.393 INFO:journalctl@ceph.mgr.b.smithi110.stdout:Apr 14 15:26:22 smithi110 systemd[1]: /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-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-14T15:26:22.393 INFO:journalctl@ceph.mgr.b.smithi110.stdout:Apr 14 15:26:22 smithi110 systemd[1]: Started Ceph mgr.b for af942ef8-fa72-11ee-bc8e-c7b262605968. 2024-04-14T15:26:23.390 INFO:journalctl@ceph.mgr.b.smithi110.stdout:Apr 14 15:26:23 smithi110 bash[23362]: debug 2024-04-14T15:26:23.232+0000 7f877ba53700 1 -- 172.21.15.110:0/310716075 <== mon.2 v2:172.21.15.110:3300/0 4 ==== auth_reply(proto 2 0 (0) Success) ==== 194+0+0 (secure 0 0 0) 0x56241e9105a0 con 0x56241f690800 2024-04-14T15:26:23.391 INFO:journalctl@ceph.mgr.b.smithi110.stdout:Apr 14 15:26:23 smithi110 bash[23362]: debug 2024-04-14T15:26:23.384+0000 7f8785c63200 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-04-14T15:26:23.391 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:23 smithi110 bash[22161]: cluster 2024-04-14T15:26:21.858107+0000 mgr.a (mgr.14152) 116 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:23.391 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:23 smithi110 bash[22161]: audit 2024-04-14T15:26:22.185042+0000 mon.a (mon.0) 366 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:23.391 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:23 smithi110 bash[22161]: audit 2024-04-14T15:26:22.192002+0000 mon.a (mon.0) 367 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:23.391 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:23 smithi110 bash[22161]: audit 2024-04-14T15:26:22.201238+0000 mon.a (mon.0) 368 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:23.391 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:23 smithi110 bash[22161]: audit 2024-04-14T15:26:22.209680+0000 mon.a (mon.0) 369 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:23.391 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:23 smithi110 bash[22161]: audit 2024-04-14T15:26:22.217534+0000 mon.a (mon.0) 370 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:23.391 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:23 smithi110 bash[22161]: audit 2024-04-14T15:26:22.227490+0000 mon.a (mon.0) 371 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:23.391 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:23 smithi110 bash[22161]: audit 2024-04-14T15:26:22.231632+0000 mon.a (mon.0) 372 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:23.391 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:23 smithi110 bash[22161]: audit 2024-04-14T15:26:22.297719+0000 mon.a (mon.0) 373 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:26:23.392 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:23 smithi110 bash[22161]: audit 2024-04-14T15:26:22.300148+0000 mon.a (mon.0) 374 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:26:23.392 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:23 smithi110 bash[22161]: audit 2024-04-14T15:26:22.300852+0000 mon.a (mon.0) 375 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:26:23.392 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:23 smithi110 bash[22161]: audit 2024-04-14T15:26:22.306240+0000 mon.a (mon.0) 376 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:23.392 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:23 smithi110 bash[22161]: cephadm 2024-04-14T15:26:22.306598+0000 mgr.a (mgr.14152) 117 : cephadm [INF] Metadata not up to date on all hosts. Skipping non agent specs 2024-04-14T15:26:23.392 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:23 smithi110 bash[22161]: cephadm 2024-04-14T15:26:22.354408+0000 mgr.a (mgr.14152) 118 : cephadm [INF] Reconfiguring mgr.a (unknown last config time)... 2024-04-14T15:26:23.392 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:23 smithi110 bash[22161]: audit 2024-04-14T15:26:22.354772+0000 mon.a (mon.0) 377 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-14T15:26:23.392 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:23 smithi110 bash[22161]: audit 2024-04-14T15:26:22.355600+0000 mon.a (mon.0) 378 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-14T15:26:23.392 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:23 smithi110 bash[22161]: audit 2024-04-14T15:26:22.356250+0000 mon.a (mon.0) 379 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:26:23.392 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:23 smithi110 bash[22161]: cephadm 2024-04-14T15:26:22.356987+0000 mgr.a (mgr.14152) 119 : cephadm [INF] Reconfiguring daemon mgr.a on smithi047 2024-04-14T15:26:23.392 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:23 smithi110 bash[22161]: audit 2024-04-14T15:26:22.441115+0000 mon.a (mon.0) 380 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:23.392 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:23 smithi110 bash[22161]: audit 2024-04-14T15:26:22.446583+0000 mon.a (mon.0) 381 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:23.392 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:23 smithi110 bash[22161]: audit 2024-04-14T15:26:22.453641+0000 mon.a (mon.0) 382 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:23.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:23 smithi047 bash[21449]: cluster 2024-04-14T15:26:21.858107+0000 mgr.a (mgr.14152) 116 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:23.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:23 smithi047 bash[21449]: audit 2024-04-14T15:26:22.185042+0000 mon.a (mon.0) 366 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:23.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:23 smithi047 bash[21449]: audit 2024-04-14T15:26:22.192002+0000 mon.a (mon.0) 367 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:23.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:23 smithi047 bash[21449]: audit 2024-04-14T15:26:22.201238+0000 mon.a (mon.0) 368 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:23.462 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:23 smithi047 bash[21449]: audit 2024-04-14T15:26:22.209680+0000 mon.a (mon.0) 369 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:23.462 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:23 smithi047 bash[21449]: audit 2024-04-14T15:26:22.217534+0000 mon.a (mon.0) 370 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:23.462 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:23 smithi047 bash[21449]: audit 2024-04-14T15:26:22.227490+0000 mon.a (mon.0) 371 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:23.462 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:23 smithi047 bash[21449]: audit 2024-04-14T15:26:22.231632+0000 mon.a (mon.0) 372 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:23.462 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:23 smithi047 bash[21449]: audit 2024-04-14T15:26:22.297719+0000 mon.a (mon.0) 373 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:26:23.462 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:23 smithi047 bash[21449]: audit 2024-04-14T15:26:22.300148+0000 mon.a (mon.0) 374 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:26:23.462 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:23 smithi047 bash[21449]: audit 2024-04-14T15:26:22.300852+0000 mon.a (mon.0) 375 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:26:23.462 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:23 smithi047 bash[21449]: audit 2024-04-14T15:26:22.306240+0000 mon.a (mon.0) 376 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:23.462 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:23 smithi047 bash[21449]: cephadm 2024-04-14T15:26:22.306598+0000 mgr.a (mgr.14152) 117 : cephadm [INF] Metadata not up to date on all hosts. Skipping non agent specs 2024-04-14T15:26:23.462 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:23 smithi047 bash[21449]: cephadm 2024-04-14T15:26:22.354408+0000 mgr.a (mgr.14152) 118 : cephadm [INF] Reconfiguring mgr.a (unknown last config time)... 2024-04-14T15:26:23.462 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:23 smithi047 bash[21449]: audit 2024-04-14T15:26:22.354772+0000 mon.a (mon.0) 377 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-14T15:26:23.462 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:23 smithi047 bash[21449]: audit 2024-04-14T15:26:22.355600+0000 mon.a (mon.0) 378 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-14T15:26:23.463 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:23 smithi047 bash[21449]: audit 2024-04-14T15:26:22.356250+0000 mon.a (mon.0) 379 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:26:23.463 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:23 smithi047 bash[21449]: cephadm 2024-04-14T15:26:22.356987+0000 mgr.a (mgr.14152) 119 : cephadm [INF] Reconfiguring daemon mgr.a on smithi047 2024-04-14T15:26:23.463 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:23 smithi047 bash[21449]: audit 2024-04-14T15:26:22.441115+0000 mon.a (mon.0) 380 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:23.463 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:23 smithi047 bash[21449]: audit 2024-04-14T15:26:22.446583+0000 mon.a (mon.0) 381 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:23.463 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:23 smithi047 bash[21449]: audit 2024-04-14T15:26:22.453641+0000 mon.a (mon.0) 382 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:23.562 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:23 smithi138 bash[22282]: cluster 2024-04-14T15:26:21.858107+0000 mgr.a (mgr.14152) 116 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:23.562 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:23 smithi138 bash[22282]: audit 2024-04-14T15:26:22.185042+0000 mon.a (mon.0) 366 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:23.562 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:23 smithi138 bash[22282]: audit 2024-04-14T15:26:22.192002+0000 mon.a (mon.0) 367 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:23.562 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:23 smithi138 bash[22282]: audit 2024-04-14T15:26:22.201238+0000 mon.a (mon.0) 368 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:23.562 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:23 smithi138 bash[22282]: audit 2024-04-14T15:26:22.209680+0000 mon.a (mon.0) 369 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:23.562 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:23 smithi138 bash[22282]: audit 2024-04-14T15:26:22.217534+0000 mon.a (mon.0) 370 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:23.562 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:23 smithi138 bash[22282]: audit 2024-04-14T15:26:22.227490+0000 mon.a (mon.0) 371 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:23.563 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:23 smithi138 bash[22282]: audit 2024-04-14T15:26:22.231632+0000 mon.a (mon.0) 372 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:23.563 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:23 smithi138 bash[22282]: audit 2024-04-14T15:26:22.297719+0000 mon.a (mon.0) 373 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:26:23.563 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:23 smithi138 bash[22282]: audit 2024-04-14T15:26:22.300148+0000 mon.a (mon.0) 374 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:26:23.563 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:23 smithi138 bash[22282]: audit 2024-04-14T15:26:22.300852+0000 mon.a (mon.0) 375 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:26:23.563 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:23 smithi138 bash[22282]: audit 2024-04-14T15:26:22.306240+0000 mon.a (mon.0) 376 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:23.563 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:23 smithi138 bash[22282]: cephadm 2024-04-14T15:26:22.306598+0000 mgr.a (mgr.14152) 117 : cephadm [INF] Metadata not up to date on all hosts. Skipping non agent specs 2024-04-14T15:26:23.563 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:23 smithi138 bash[22282]: cephadm 2024-04-14T15:26:22.354408+0000 mgr.a (mgr.14152) 118 : cephadm [INF] Reconfiguring mgr.a (unknown last config time)... 2024-04-14T15:26:23.563 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:23 smithi138 bash[22282]: audit 2024-04-14T15:26:22.354772+0000 mon.a (mon.0) 377 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-14T15:26:23.564 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:23 smithi138 bash[22282]: audit 2024-04-14T15:26:22.355600+0000 mon.a (mon.0) 378 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-14T15:26:23.564 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:23 smithi138 bash[22282]: audit 2024-04-14T15:26:22.356250+0000 mon.a (mon.0) 379 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:26:23.564 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:23 smithi138 bash[22282]: cephadm 2024-04-14T15:26:22.356987+0000 mgr.a (mgr.14152) 119 : cephadm [INF] Reconfiguring daemon mgr.a on smithi047 2024-04-14T15:26:23.564 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:23 smithi138 bash[22282]: audit 2024-04-14T15:26:22.441115+0000 mon.a (mon.0) 380 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:23.564 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:23 smithi138 bash[22282]: audit 2024-04-14T15:26:22.446583+0000 mon.a (mon.0) 381 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:23.564 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:23 smithi138 bash[22282]: audit 2024-04-14T15:26:22.453641+0000 mon.a (mon.0) 382 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:25.343 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:25 smithi110 bash[22161]: cluster 2024-04-14T15:26:23.858493+0000 mgr.a (mgr.14152) 120 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:25.343 INFO:journalctl@ceph.mgr.b.smithi110.stdout:Apr 14 15:26:24 smithi110 bash[23362]: debug 2024-04-14T15:26:24.984+0000 7f8785c63200 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-04-14T15:26:25.343 INFO:journalctl@ceph.mgr.b.smithi110.stdout:Apr 14 15:26:25 smithi110 bash[23362]: debug 2024-04-14T15:26:25.080+0000 7f8785c63200 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-04-14T15:26:25.343 INFO:journalctl@ceph.mgr.b.smithi110.stdout:Apr 14 15:26:25 smithi110 bash[23362]: debug 2024-04-14T15:26:25.336+0000 7f8785c63200 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-04-14T15:26:25.460 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:25 smithi047 bash[21449]: cluster 2024-04-14T15:26:23.858493+0000 mgr.a (mgr.14152) 120 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:25.561 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:25 smithi138 bash[22282]: cluster 2024-04-14T15:26:23.858493+0000 mgr.a (mgr.14152) 120 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:26.435 INFO:journalctl@ceph.mgr.b.smithi110.stdout:Apr 14 15:26:26 smithi110 bash[23362]: debug 2024-04-14T15:26:26.144+0000 7f8785c63200 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-04-14T15:26:26.435 INFO:journalctl@ceph.mgr.b.smithi110.stdout:Apr 14 15:26:26 smithi110 bash[23362]: debug 2024-04-14T15:26:26.256+0000 7f8785c63200 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-04-14T15:26:26.436 INFO:journalctl@ceph.mgr.b.smithi110.stdout:Apr 14 15:26:26 smithi110 bash[23362]: debug 2024-04-14T15:26:26.356+0000 7f8785c63200 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-04-14T15:26:27.010 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T15:26:27.045 INFO:journalctl@ceph.mgr.b.smithi110.stdout:Apr 14 15:26:26 smithi110 bash[23362]: debug 2024-04-14T15:26:26.732+0000 7f8785c63200 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-04-14T15:26:27.046 INFO:journalctl@ceph.mgr.b.smithi110.stdout:Apr 14 15:26:26 smithi110 bash[23362]: debug 2024-04-14T15:26:26.844+0000 7f8785c63200 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-04-14T15:26:27.046 INFO:journalctl@ceph.mgr.b.smithi110.stdout:Apr 14 15:26:26 smithi110 bash[23362]: debug 2024-04-14T15:26:26.948+0000 7f8785c63200 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-04-14T15:26:27.311 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:27 smithi110 bash[22161]: cluster 2024-04-14T15:26:25.858931+0000 mgr.a (mgr.14152) 121 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:27.311 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:27 smithi110 bash[22161]: audit 2024-04-14T15:26:26.047596+0000 mon.a (mon.0) 383 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:27.311 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:27 smithi110 bash[22161]: audit 2024-04-14T15:26:26.055123+0000 mon.a (mon.0) 384 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:27.311 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:27 smithi110 bash[22161]: audit 2024-04-14T15:26:26.082281+0000 mon.a (mon.0) 385 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:26:27.312 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:27 smithi110 bash[22161]: audit 2024-04-14T15:26:26.087403+0000 mon.a (mon.0) 386 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:26:27.312 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:27 smithi110 bash[22161]: audit 2024-04-14T15:26:26.089043+0000 mon.a (mon.0) 387 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:26:27.312 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:27 smithi110 bash[22161]: audit 2024-04-14T15:26:26.097247+0000 mon.a (mon.0) 388 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:27.312 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:27 smithi110 bash[22161]: cephadm 2024-04-14T15:26:26.098089+0000 mgr.a (mgr.14152) 122 : cephadm [INF] Metadata not up to date on all hosts. Skipping non agent specs 2024-04-14T15:26:27.312 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:27 smithi110 bash[22161]: audit 2024-04-14T15:26:26.170367+0000 mon.a (mon.0) 389 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:27.312 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:27 smithi110 bash[22161]: audit 2024-04-14T15:26:26.827920+0000 mon.a (mon.0) 390 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:27.312 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:27 smithi110 bash[22161]: audit 2024-04-14T15:26:26.952253+0000 mon.a (mon.0) 391 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:27.312 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:27 smithi138 bash[22282]: cluster 2024-04-14T15:26:25.858931+0000 mgr.a (mgr.14152) 121 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:27.312 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:27 smithi138 bash[22282]: audit 2024-04-14T15:26:26.047596+0000 mon.a (mon.0) 383 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:27.313 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:27 smithi138 bash[22282]: audit 2024-04-14T15:26:26.055123+0000 mon.a (mon.0) 384 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:27.313 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:27 smithi138 bash[22282]: audit 2024-04-14T15:26:26.082281+0000 mon.a (mon.0) 385 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:26:27.313 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:27 smithi138 bash[22282]: audit 2024-04-14T15:26:26.087403+0000 mon.a (mon.0) 386 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:26:27.313 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:27 smithi138 bash[22282]: audit 2024-04-14T15:26:26.089043+0000 mon.a (mon.0) 387 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:26:27.313 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:27 smithi138 bash[22282]: audit 2024-04-14T15:26:26.097247+0000 mon.a (mon.0) 388 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:27.313 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:27 smithi138 bash[22282]: cephadm 2024-04-14T15:26:26.098089+0000 mgr.a (mgr.14152) 122 : cephadm [INF] Metadata not up to date on all hosts. Skipping non agent specs 2024-04-14T15:26:27.313 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:27 smithi138 bash[22282]: audit 2024-04-14T15:26:26.170367+0000 mon.a (mon.0) 389 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:27.313 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:27 smithi138 bash[22282]: audit 2024-04-14T15:26:26.827920+0000 mon.a (mon.0) 390 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:27.313 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:27 smithi138 bash[22282]: audit 2024-04-14T15:26:26.952253+0000 mon.a (mon.0) 391 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:27.460 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:27 smithi047 bash[21449]: cluster 2024-04-14T15:26:25.858931+0000 mgr.a (mgr.14152) 121 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:27.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:27 smithi047 bash[21449]: audit 2024-04-14T15:26:26.047596+0000 mon.a (mon.0) 383 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:27.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:27 smithi047 bash[21449]: audit 2024-04-14T15:26:26.055123+0000 mon.a (mon.0) 384 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:27.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:27 smithi047 bash[21449]: audit 2024-04-14T15:26:26.082281+0000 mon.a (mon.0) 385 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:26:27.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:27 smithi047 bash[21449]: audit 2024-04-14T15:26:26.087403+0000 mon.a (mon.0) 386 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:26:27.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:27 smithi047 bash[21449]: audit 2024-04-14T15:26:26.089043+0000 mon.a (mon.0) 387 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:26:27.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:27 smithi047 bash[21449]: audit 2024-04-14T15:26:26.097247+0000 mon.a (mon.0) 388 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:27.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:27 smithi047 bash[21449]: cephadm 2024-04-14T15:26:26.098089+0000 mgr.a (mgr.14152) 122 : cephadm [INF] Metadata not up to date on all hosts. Skipping non agent specs 2024-04-14T15:26:27.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:27 smithi047 bash[21449]: audit 2024-04-14T15:26:26.170367+0000 mon.a (mon.0) 389 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:27.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:27 smithi047 bash[21449]: audit 2024-04-14T15:26:26.827920+0000 mon.a (mon.0) 390 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:27.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:27 smithi047 bash[21449]: audit 2024-04-14T15:26:26.952253+0000 mon.a (mon.0) 391 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:27.643 INFO:journalctl@ceph.mgr.b.smithi110.stdout:Apr 14 15:26:27 smithi110 bash[23362]: debug 2024-04-14T15:26:27.304+0000 7f8785c63200 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-04-14T15:26:27.643 INFO:journalctl@ceph.mgr.b.smithi110.stdout:Apr 14 15:26:27 smithi110 bash[23362]: debug 2024-04-14T15:26:27.540+0000 7f8785c63200 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-04-14T15:26:28.143 INFO:journalctl@ceph.mgr.b.smithi110.stdout:Apr 14 15:26:27 smithi110 bash[23362]: debug 2024-04-14T15:26:27.796+0000 7f8785c63200 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-04-14T15:26:28.143 INFO:journalctl@ceph.mgr.b.smithi110.stdout:Apr 14 15:26:27 smithi110 bash[23362]: debug 2024-04-14T15:26:27.916+0000 7f8785c63200 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-04-14T15:26:28.623 INFO:journalctl@ceph.mgr.b.smithi110.stdout:Apr 14 15:26:28 smithi110 bash[23362]: debug 2024-04-14T15:26:28.184+0000 7f8785c63200 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-04-14T15:26:28.893 INFO:journalctl@ceph.mgr.b.smithi110.stdout:Apr 14 15:26:28 smithi110 bash[23362]: debug 2024-04-14T15:26:28.620+0000 7f8785c63200 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-04-14T15:26:28.893 INFO:journalctl@ceph.mgr.b.smithi110.stdout:Apr 14 15:26:28 smithi110 bash[23362]: debug 2024-04-14T15:26:28.856+0000 7f8785c63200 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-04-14T15:26:29.234 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:29 smithi110 bash[22161]: cluster 2024-04-14T15:26:27.859324+0000 mgr.a (mgr.14152) 123 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:29.234 INFO:journalctl@ceph.mgr.b.smithi110.stdout:Apr 14 15:26:28 smithi110 bash[23362]: debug 2024-04-14T15:26:28.972+0000 7f8785c63200 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-04-14T15:26:29.234 INFO:journalctl@ceph.mgr.b.smithi110.stdout:Apr 14 15:26:29 smithi110 bash[23362]: debug 2024-04-14T15:26:29.216+0000 7f8785c63200 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-04-14T15:26:29.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:29 smithi138 bash[22282]: cluster 2024-04-14T15:26:27.859324+0000 mgr.a (mgr.14152) 123 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:29.460 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:29 smithi047 bash[21449]: cluster 2024-04-14T15:26:27.859324+0000 mgr.a (mgr.14152) 123 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:29.909 INFO:teuthology.orchestra.run.smithi047.stderr:--> Zapping: /dev/vg_nvme/lv_4 2024-04-14T15:26:29.909 INFO:teuthology.orchestra.run.smithi047.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_4 bs=1M count=10 conv=fsync 2024-04-14T15:26:29.909 INFO:teuthology.orchestra.run.smithi047.stderr: stderr: 10+0 records in 2024-04-14T15:26:29.909 INFO:teuthology.orchestra.run.smithi047.stderr:10+0 records out 2024-04-14T15:26:29.909 INFO:teuthology.orchestra.run.smithi047.stderr:10485760 bytes (10 MB, 10 MiB) copied, 0.0112099 s, 935 MB/s 2024-04-14T15:26:29.909 INFO:teuthology.orchestra.run.smithi047.stderr:--> Zapping successful for: 2024-04-14T15:26:30.643 INFO:journalctl@ceph.mgr.b.smithi110.stdout:Apr 14 15:26:30 smithi110 bash[23362]: debug 2024-04-14T15:26:30.232+0000 7f8785c63200 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-04-14T15:26:30.643 INFO:journalctl@ceph.mgr.b.smithi110.stdout:Apr 14 15:26:30 smithi110 bash[23362]: debug 2024-04-14T15:26:30.348+0000 7f8785c63200 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-04-14T15:26:30.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:30 smithi110 bash[22161]: audit 2024-04-14T15:26:29.378235+0000 mon.a (mon.0) 392 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:30.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:30 smithi110 bash[22161]: audit 2024-04-14T15:26:29.385884+0000 mon.a (mon.0) 393 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:30.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:30 smithi110 bash[22161]: audit 2024-04-14T15:26:29.394396+0000 mon.a (mon.0) 394 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:30.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:30 smithi110 bash[22161]: audit 2024-04-14T15:26:29.406193+0000 mon.a (mon.0) 395 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:26:30.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:30 smithi110 bash[22161]: audit 2024-04-14T15:26:29.410773+0000 mon.a (mon.0) 396 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:26:30.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:30 smithi110 bash[22161]: audit 2024-04-14T15:26:29.412139+0000 mon.a (mon.0) 397 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:26:30.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:30 smithi110 bash[22161]: audit 2024-04-14T15:26:29.420117+0000 mon.a (mon.0) 398 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:30.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:30 smithi110 bash[22161]: audit 2024-04-14T15:26:29.571538+0000 mon.a (mon.0) 399 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:30.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:30 smithi110 bash[22161]: audit 2024-04-14T15:26:29.578195+0000 mon.a (mon.0) 400 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:30.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:30 smithi110 bash[22161]: audit 2024-04-14T15:26:29.585307+0000 mon.a (mon.0) 401 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:30.649 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph orch daemon add osd smithi047:vg_nvme/lv_4 2024-04-14T15:26:30.650 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:30 smithi047 bash[21449]: audit 2024-04-14T15:26:29.378235+0000 mon.a (mon.0) 392 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:30.650 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:30 smithi047 bash[21449]: audit 2024-04-14T15:26:29.385884+0000 mon.a (mon.0) 393 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:30.650 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:30 smithi047 bash[21449]: audit 2024-04-14T15:26:29.394396+0000 mon.a (mon.0) 394 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:30.650 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:30 smithi047 bash[21449]: audit 2024-04-14T15:26:29.406193+0000 mon.a (mon.0) 395 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:26:30.650 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:30 smithi047 bash[21449]: audit 2024-04-14T15:26:29.410773+0000 mon.a (mon.0) 396 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:26:30.650 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:30 smithi047 bash[21449]: audit 2024-04-14T15:26:29.412139+0000 mon.a (mon.0) 397 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:26:30.650 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:30 smithi047 bash[21449]: audit 2024-04-14T15:26:29.420117+0000 mon.a (mon.0) 398 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:30.650 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:30 smithi047 bash[21449]: audit 2024-04-14T15:26:29.571538+0000 mon.a (mon.0) 399 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:30.651 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:30 smithi047 bash[21449]: audit 2024-04-14T15:26:29.578195+0000 mon.a (mon.0) 400 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:30.651 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:30 smithi047 bash[21449]: audit 2024-04-14T15:26:29.585307+0000 mon.a (mon.0) 401 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:30.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:30 smithi138 bash[22282]: audit 2024-04-14T15:26:29.378235+0000 mon.a (mon.0) 392 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:30.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:30 smithi138 bash[22282]: audit 2024-04-14T15:26:29.385884+0000 mon.a (mon.0) 393 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:30.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:30 smithi138 bash[22282]: audit 2024-04-14T15:26:29.394396+0000 mon.a (mon.0) 394 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:30.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:30 smithi138 bash[22282]: audit 2024-04-14T15:26:29.406193+0000 mon.a (mon.0) 395 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:26:30.812 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:30 smithi138 bash[22282]: audit 2024-04-14T15:26:29.410773+0000 mon.a (mon.0) 396 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:26:30.812 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:30 smithi138 bash[22282]: audit 2024-04-14T15:26:29.412139+0000 mon.a (mon.0) 397 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:26:30.812 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:30 smithi138 bash[22282]: audit 2024-04-14T15:26:29.420117+0000 mon.a (mon.0) 398 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:30.812 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:30 smithi138 bash[22282]: audit 2024-04-14T15:26:29.571538+0000 mon.a (mon.0) 399 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:30.812 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:30 smithi138 bash[22282]: audit 2024-04-14T15:26:29.578195+0000 mon.a (mon.0) 400 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:30.812 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:30 smithi138 bash[22282]: audit 2024-04-14T15:26:29.585307+0000 mon.a (mon.0) 401 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:31.143 INFO:journalctl@ceph.mgr.b.smithi110.stdout:Apr 14 15:26:30 smithi110 bash[23362]: debug 2024-04-14T15:26:30.640+0000 7f8785c63200 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-04-14T15:26:31.143 INFO:journalctl@ceph.mgr.b.smithi110.stdout:Apr 14 15:26:30 smithi110 bash[23362]: debug 2024-04-14T15:26:30.752+0000 7f8785c63200 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-04-14T15:26:31.643 INFO:journalctl@ceph.mgr.b.smithi110.stdout:Apr 14 15:26:31 smithi110 bash[23362]: debug 2024-04-14T15:26:31.196+0000 7f8785c63200 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-04-14T15:26:31.643 INFO:journalctl@ceph.mgr.b.smithi110.stdout:Apr 14 15:26:31 smithi110 bash[23362]: debug 2024-04-14T15:26:31.316+0000 7f8785c63200 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-04-14T15:26:31.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:31 smithi110 bash[22161]: cluster 2024-04-14T15:26:29.859738+0000 mgr.a (mgr.14152) 124 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:31.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:31 smithi110 bash[22161]: audit 2024-04-14T15:26:31.344803+0000 mon.b (mon.2) 3 : audit [DBG] from='mgr.? 172.21.15.110:0/2589748866' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-04-14T15:26:31.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:31 smithi110 bash[22161]: audit 2024-04-14T15:26:31.345824+0000 mon.b (mon.2) 4 : audit [DBG] from='mgr.? 172.21.15.110:0/2589748866' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-04-14T15:26:31.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:31 smithi110 bash[22161]: cluster 2024-04-14T15:26:31.346554+0000 mon.a (mon.0) 402 : cluster [DBG] Standby manager daemon b started 2024-04-14T15:26:31.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:31 smithi110 bash[22161]: audit 2024-04-14T15:26:31.347346+0000 mon.b (mon.2) 5 : audit [DBG] from='mgr.? 172.21.15.110:0/2589748866' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-04-14T15:26:31.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:31 smithi110 bash[22161]: audit 2024-04-14T15:26:31.347966+0000 mon.b (mon.2) 6 : audit [DBG] from='mgr.? 172.21.15.110:0/2589748866' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-04-14T15:26:31.710 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:31 smithi047 bash[21449]: cluster 2024-04-14T15:26:29.859738+0000 mgr.a (mgr.14152) 124 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:31.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:31 smithi047 bash[21449]: audit 2024-04-14T15:26:31.344803+0000 mon.b (mon.2) 3 : audit [DBG] from='mgr.? 172.21.15.110:0/2589748866' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-04-14T15:26:31.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:31 smithi047 bash[21449]: audit 2024-04-14T15:26:31.345824+0000 mon.b (mon.2) 4 : audit [DBG] from='mgr.? 172.21.15.110:0/2589748866' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-04-14T15:26:31.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:31 smithi047 bash[21449]: cluster 2024-04-14T15:26:31.346554+0000 mon.a (mon.0) 402 : cluster [DBG] Standby manager daemon b started 2024-04-14T15:26:31.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:31 smithi047 bash[21449]: audit 2024-04-14T15:26:31.347346+0000 mon.b (mon.2) 5 : audit [DBG] from='mgr.? 172.21.15.110:0/2589748866' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-04-14T15:26:31.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:31 smithi047 bash[21449]: audit 2024-04-14T15:26:31.347966+0000 mon.b (mon.2) 6 : audit [DBG] from='mgr.? 172.21.15.110:0/2589748866' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-04-14T15:26:31.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:31 smithi138 bash[22282]: cluster 2024-04-14T15:26:29.859738+0000 mgr.a (mgr.14152) 124 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:31.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:31 smithi138 bash[22282]: audit 2024-04-14T15:26:31.344803+0000 mon.b (mon.2) 3 : audit [DBG] from='mgr.? 172.21.15.110:0/2589748866' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-04-14T15:26:31.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:31 smithi138 bash[22282]: audit 2024-04-14T15:26:31.345824+0000 mon.b (mon.2) 4 : audit [DBG] from='mgr.? 172.21.15.110:0/2589748866' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-04-14T15:26:31.812 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:31 smithi138 bash[22282]: cluster 2024-04-14T15:26:31.346554+0000 mon.a (mon.0) 402 : cluster [DBG] Standby manager daemon b started 2024-04-14T15:26:31.812 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:31 smithi138 bash[22282]: audit 2024-04-14T15:26:31.347346+0000 mon.b (mon.2) 5 : audit [DBG] from='mgr.? 172.21.15.110:0/2589748866' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-04-14T15:26:31.812 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:31 smithi138 bash[22282]: audit 2024-04-14T15:26:31.347966+0000 mon.b (mon.2) 6 : audit [DBG] from='mgr.? 172.21.15.110:0/2589748866' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-04-14T15:26:32.757 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:32 smithi138 bash[22282]: cluster 2024-04-14T15:26:31.598129+0000 mon.a (mon.0) 403 : cluster [DBG] mgrmap e14: a(active, since 2m), standbys: b 2024-04-14T15:26:32.757 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:32 smithi138 bash[22282]: audit 2024-04-14T15:26:31.598416+0000 mon.a (mon.0) 404 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-04-14T15:26:32.758 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:32 smithi138 bash[22282]: cluster 2024-04-14T15:26:31.860101+0000 mgr.a (mgr.14152) 125 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:32.893 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:32 smithi110 bash[22161]: cluster 2024-04-14T15:26:31.598129+0000 mon.a (mon.0) 403 : cluster [DBG] mgrmap e14: a(active, since 2m), standbys: b 2024-04-14T15:26:32.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:32 smithi110 bash[22161]: audit 2024-04-14T15:26:31.598416+0000 mon.a (mon.0) 404 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-04-14T15:26:32.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:32 smithi110 bash[22161]: cluster 2024-04-14T15:26:31.860101+0000 mgr.a (mgr.14152) 125 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:32.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:32 smithi047 bash[21449]: cluster 2024-04-14T15:26:31.598129+0000 mon.a (mon.0) 403 : cluster [DBG] mgrmap e14: a(active, since 2m), standbys: b 2024-04-14T15:26:32.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:32 smithi047 bash[21449]: audit 2024-04-14T15:26:31.598416+0000 mon.a (mon.0) 404 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-04-14T15:26:32.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:32 smithi047 bash[21449]: cluster 2024-04-14T15:26:31.860101+0000 mgr.a (mgr.14152) 125 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:35.061 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:34 smithi138 bash[22282]: cluster 2024-04-14T15:26:33.860468+0000 mgr.a (mgr.14152) 126 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:35.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:34 smithi047 bash[21449]: cluster 2024-04-14T15:26:33.860468+0000 mgr.a (mgr.14152) 126 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:35.364 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T15:26:35.393 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:34 smithi110 bash[22161]: cluster 2024-04-14T15:26:33.860468+0000 mgr.a (mgr.14152) 126 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:37.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:36 smithi047 bash[21449]: cluster 2024-04-14T15:26:35.860926+0000 mgr.a (mgr.14152) 127 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:37.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:36 smithi138 bash[22282]: cluster 2024-04-14T15:26:35.860926+0000 mgr.a (mgr.14152) 127 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:37.393 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:36 smithi110 bash[22161]: cluster 2024-04-14T15:26:35.860926+0000 mgr.a (mgr.14152) 127 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:39.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:38 smithi047 bash[21449]: cluster 2024-04-14T15:26:37.861216+0000 mgr.a (mgr.14152) 128 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:39.211 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:38 smithi047 bash[21449]: audit 2024-04-14T15:26:38.226709+0000 mgr.a (mgr.14152) 129 : audit [DBG] from='client.14211 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi047:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:26:39.211 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:38 smithi047 bash[21449]: audit 2024-04-14T15:26:38.233971+0000 mon.a (mon.0) 405 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-14T15:26:39.211 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:38 smithi047 bash[21449]: audit 2024-04-14T15:26:38.240328+0000 mon.a (mon.0) 406 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-14T15:26:39.211 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:38 smithi047 bash[21449]: audit 2024-04-14T15:26:38.241639+0000 mon.a (mon.0) 407 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:26:39.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:38 smithi138 bash[22282]: cluster 2024-04-14T15:26:37.861216+0000 mgr.a (mgr.14152) 128 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:39.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:38 smithi138 bash[22282]: audit 2024-04-14T15:26:38.226709+0000 mgr.a (mgr.14152) 129 : audit [DBG] from='client.14211 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi047:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:26:39.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:38 smithi138 bash[22282]: audit 2024-04-14T15:26:38.233971+0000 mon.a (mon.0) 405 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-14T15:26:39.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:38 smithi138 bash[22282]: audit 2024-04-14T15:26:38.240328+0000 mon.a (mon.0) 406 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-14T15:26:39.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:38 smithi138 bash[22282]: audit 2024-04-14T15:26:38.241639+0000 mon.a (mon.0) 407 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:26:39.393 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:38 smithi110 bash[22161]: cluster 2024-04-14T15:26:37.861216+0000 mgr.a (mgr.14152) 128 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:39.393 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:38 smithi110 bash[22161]: audit 2024-04-14T15:26:38.226709+0000 mgr.a (mgr.14152) 129 : audit [DBG] from='client.14211 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi047:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:26:39.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:38 smithi110 bash[22161]: audit 2024-04-14T15:26:38.233971+0000 mon.a (mon.0) 405 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-14T15:26:39.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:38 smithi110 bash[22161]: audit 2024-04-14T15:26:38.240328+0000 mon.a (mon.0) 406 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-14T15:26:39.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:38 smithi110 bash[22161]: audit 2024-04-14T15:26:38.241639+0000 mon.a (mon.0) 407 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:26:41.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:40 smithi047 bash[21449]: cluster 2024-04-14T15:26:39.861605+0000 mgr.a (mgr.14152) 130 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:41.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:40 smithi138 bash[22282]: cluster 2024-04-14T15:26:39.861605+0000 mgr.a (mgr.14152) 130 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:41.393 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:40 smithi110 bash[22161]: cluster 2024-04-14T15:26:39.861605+0000 mgr.a (mgr.14152) 130 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:43.643 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:43 smithi110 bash[22161]: cluster 2024-04-14T15:26:41.862065+0000 mgr.a (mgr.14152) 131 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:43.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:43 smithi110 bash[22161]: audit 2024-04-14T15:26:42.384704+0000 mon.a (mon.0) 408 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:43.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:43 smithi110 bash[22161]: audit 2024-04-14T15:26:42.388956+0000 mon.a (mon.0) 409 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:43.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:43 smithi110 bash[22161]: audit 2024-04-14T15:26:42.393986+0000 mon.a (mon.0) 410 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:43.710 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:43 smithi047 bash[21449]: cluster 2024-04-14T15:26:41.862065+0000 mgr.a (mgr.14152) 131 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:43.710 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:43 smithi047 bash[21449]: audit 2024-04-14T15:26:42.384704+0000 mon.a (mon.0) 408 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:43.710 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:43 smithi047 bash[21449]: audit 2024-04-14T15:26:42.388956+0000 mon.a (mon.0) 409 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:43.710 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:43 smithi047 bash[21449]: audit 2024-04-14T15:26:42.393986+0000 mon.a (mon.0) 410 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:43.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:43 smithi138 bash[22282]: cluster 2024-04-14T15:26:41.862065+0000 mgr.a (mgr.14152) 131 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:43.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:43 smithi138 bash[22282]: audit 2024-04-14T15:26:42.384704+0000 mon.a (mon.0) 408 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:43.812 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:43 smithi138 bash[22282]: audit 2024-04-14T15:26:42.388956+0000 mon.a (mon.0) 409 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:43.812 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:43 smithi138 bash[22282]: audit 2024-04-14T15:26:42.393986+0000 mon.a (mon.0) 410 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:45.460 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:45 smithi047 bash[21449]: cluster 2024-04-14T15:26:43.862450+0000 mgr.a (mgr.14152) 132 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:45.643 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:45 smithi110 bash[22161]: cluster 2024-04-14T15:26:43.862450+0000 mgr.a (mgr.14152) 132 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:45.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:45 smithi138 bash[22282]: cluster 2024-04-14T15:26:43.862450+0000 mgr.a (mgr.14152) 132 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:47.643 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:47 smithi110 bash[22161]: cluster 2024-04-14T15:26:45.862886+0000 mgr.a (mgr.14152) 133 : cluster [DBG] pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:47.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:47 smithi110 bash[22161]: audit 2024-04-14T15:26:47.287839+0000 mon.a (mon.0) 411 : audit [INF] from='client.? 172.21.15.47:0/2408741357' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "9af483c5-e412-437f-b0d3-3ed8f007171b"}]: dispatch 2024-04-14T15:26:47.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:47 smithi110 bash[22161]: audit 2024-04-14T15:26:47.290374+0000 mon.a (mon.0) 412 : audit [INF] from='client.? 172.21.15.47:0/2408741357' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "9af483c5-e412-437f-b0d3-3ed8f007171b"}]': finished 2024-04-14T15:26:47.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:47 smithi110 bash[22161]: cluster 2024-04-14T15:26:47.293117+0000 mon.a (mon.0) 413 : cluster [DBG] osdmap e5: 1 total, 0 up, 1 in 2024-04-14T15:26:47.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:47 smithi110 bash[22161]: audit 2024-04-14T15:26:47.293756+0000 mon.a (mon.0) 414 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-14T15:26:47.710 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:47 smithi047 bash[21449]: cluster 2024-04-14T15:26:45.862886+0000 mgr.a (mgr.14152) 133 : cluster [DBG] pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:47.710 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:47 smithi047 bash[21449]: audit 2024-04-14T15:26:47.287839+0000 mon.a (mon.0) 411 : audit [INF] from='client.? 172.21.15.47:0/2408741357' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "9af483c5-e412-437f-b0d3-3ed8f007171b"}]: dispatch 2024-04-14T15:26:47.710 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:47 smithi047 bash[21449]: audit 2024-04-14T15:26:47.290374+0000 mon.a (mon.0) 412 : audit [INF] from='client.? 172.21.15.47:0/2408741357' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "9af483c5-e412-437f-b0d3-3ed8f007171b"}]': finished 2024-04-14T15:26:47.710 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:47 smithi047 bash[21449]: cluster 2024-04-14T15:26:47.293117+0000 mon.a (mon.0) 413 : cluster [DBG] osdmap e5: 1 total, 0 up, 1 in 2024-04-14T15:26:47.710 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:47 smithi047 bash[21449]: audit 2024-04-14T15:26:47.293756+0000 mon.a (mon.0) 414 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-14T15:26:47.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:47 smithi138 bash[22282]: cluster 2024-04-14T15:26:45.862886+0000 mgr.a (mgr.14152) 133 : cluster [DBG] pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:47.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:47 smithi138 bash[22282]: audit 2024-04-14T15:26:47.287839+0000 mon.a (mon.0) 411 : audit [INF] from='client.? 172.21.15.47:0/2408741357' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "9af483c5-e412-437f-b0d3-3ed8f007171b"}]: dispatch 2024-04-14T15:26:47.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:47 smithi138 bash[22282]: audit 2024-04-14T15:26:47.290374+0000 mon.a (mon.0) 412 : audit [INF] from='client.? 172.21.15.47:0/2408741357' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "9af483c5-e412-437f-b0d3-3ed8f007171b"}]': finished 2024-04-14T15:26:47.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:47 smithi138 bash[22282]: cluster 2024-04-14T15:26:47.293117+0000 mon.a (mon.0) 413 : cluster [DBG] osdmap e5: 1 total, 0 up, 1 in 2024-04-14T15:26:47.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:47 smithi138 bash[22282]: audit 2024-04-14T15:26:47.293756+0000 mon.a (mon.0) 414 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-14T15:26:48.651 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:48 smithi047 bash[21449]: audit 2024-04-14T15:26:48.013658+0000 mon.a (mon.0) 415 : audit [DBG] from='client.? 172.21.15.47:0/1621931713' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-14T15:26:48.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:48 smithi138 bash[22282]: audit 2024-04-14T15:26:48.013658+0000 mon.a (mon.0) 415 : audit [DBG] from='client.? 172.21.15.47:0/1621931713' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-14T15:26:48.893 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:48 smithi110 bash[22161]: audit 2024-04-14T15:26:48.013658+0000 mon.a (mon.0) 415 : audit [DBG] from='client.? 172.21.15.47:0/1621931713' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-14T15:26:49.710 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:49 smithi047 bash[21449]: cluster 2024-04-14T15:26:47.863311+0000 mgr.a (mgr.14152) 134 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:49.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:49 smithi138 bash[22282]: cluster 2024-04-14T15:26:47.863311+0000 mgr.a (mgr.14152) 134 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:49.893 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:49 smithi110 bash[22161]: cluster 2024-04-14T15:26:47.863311+0000 mgr.a (mgr.14152) 134 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:50.893 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:50 smithi110 bash[22161]: audit 2024-04-14T15:26:49.595369+0000 mon.a (mon.0) 416 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:50.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:50 smithi110 bash[22161]: audit 2024-04-14T15:26:49.602044+0000 mon.a (mon.0) 417 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:50.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:50 smithi110 bash[22161]: audit 2024-04-14T15:26:49.608902+0000 mon.a (mon.0) 418 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:50.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:50 smithi110 bash[22161]: audit 2024-04-14T15:26:49.754772+0000 mon.a (mon.0) 419 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:50.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:50 smithi110 bash[22161]: audit 2024-04-14T15:26:49.760960+0000 mon.a (mon.0) 420 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:50.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:50 smithi110 bash[22161]: audit 2024-04-14T15:26:49.766648+0000 mon.a (mon.0) 421 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:50.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:50 smithi110 bash[22161]: cluster 2024-04-14T15:26:49.863809+0000 mgr.a (mgr.14152) 135 : cluster [DBG] pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:50.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:50 smithi047 bash[21449]: audit 2024-04-14T15:26:49.595369+0000 mon.a (mon.0) 416 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:50.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:50 smithi047 bash[21449]: audit 2024-04-14T15:26:49.602044+0000 mon.a (mon.0) 417 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:50.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:50 smithi047 bash[21449]: audit 2024-04-14T15:26:49.608902+0000 mon.a (mon.0) 418 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:50.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:50 smithi047 bash[21449]: audit 2024-04-14T15:26:49.754772+0000 mon.a (mon.0) 419 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:50.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:50 smithi047 bash[21449]: audit 2024-04-14T15:26:49.760960+0000 mon.a (mon.0) 420 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:50.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:50 smithi047 bash[21449]: audit 2024-04-14T15:26:49.766648+0000 mon.a (mon.0) 421 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:50.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:50 smithi047 bash[21449]: cluster 2024-04-14T15:26:49.863809+0000 mgr.a (mgr.14152) 135 : cluster [DBG] pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:51.061 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:50 smithi138 bash[22282]: audit 2024-04-14T15:26:49.595369+0000 mon.a (mon.0) 416 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:51.061 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:50 smithi138 bash[22282]: audit 2024-04-14T15:26:49.602044+0000 mon.a (mon.0) 417 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:51.061 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:50 smithi138 bash[22282]: audit 2024-04-14T15:26:49.608902+0000 mon.a (mon.0) 418 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:51.061 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:50 smithi138 bash[22282]: audit 2024-04-14T15:26:49.754772+0000 mon.a (mon.0) 419 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:51.061 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:50 smithi138 bash[22282]: audit 2024-04-14T15:26:49.760960+0000 mon.a (mon.0) 420 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:51.061 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:50 smithi138 bash[22282]: audit 2024-04-14T15:26:49.766648+0000 mon.a (mon.0) 421 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:26:51.062 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:50 smithi138 bash[22282]: cluster 2024-04-14T15:26:49.863809+0000 mgr.a (mgr.14152) 135 : cluster [DBG] pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:53.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:52 smithi047 bash[21449]: cluster 2024-04-14T15:26:51.864236+0000 mgr.a (mgr.14152) 136 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:53.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:52 smithi138 bash[22282]: cluster 2024-04-14T15:26:51.864236+0000 mgr.a (mgr.14152) 136 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:53.393 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:52 smithi110 bash[22161]: cluster 2024-04-14T15:26:51.864236+0000 mgr.a (mgr.14152) 136 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:55.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:54 smithi047 bash[21449]: cluster 2024-04-14T15:26:53.864632+0000 mgr.a (mgr.14152) 137 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:55.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:54 smithi138 bash[22282]: cluster 2024-04-14T15:26:53.864632+0000 mgr.a (mgr.14152) 137 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:55.393 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:54 smithi110 bash[22161]: cluster 2024-04-14T15:26:53.864632+0000 mgr.a (mgr.14152) 137 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:57.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:56 smithi047 bash[21449]: cluster 2024-04-14T15:26:55.865011+0000 mgr.a (mgr.14152) 138 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:57.315 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:56 smithi138 bash[22282]: cluster 2024-04-14T15:26:55.865011+0000 mgr.a (mgr.14152) 138 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:57.393 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:56 smithi110 bash[22161]: cluster 2024-04-14T15:26:55.865011+0000 mgr.a (mgr.14152) 138 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:59.188 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:58 smithi047 bash[21449]: cluster 2024-04-14T15:26:57.865390+0000 mgr.a (mgr.14152) 139 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:59.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:58 smithi138 bash[22282]: cluster 2024-04-14T15:26:57.865390+0000 mgr.a (mgr.14152) 139 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:26:59.393 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:58 smithi110 bash[22161]: cluster 2024-04-14T15:26:57.865390+0000 mgr.a (mgr.14152) 139 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:27:00.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:59 smithi047 bash[21449]: audit 2024-04-14T15:26:59.644872+0000 mon.a (mon.0) 422 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-04-14T15:27:00.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:26:59 smithi047 bash[21449]: audit 2024-04-14T15:26:59.646586+0000 mon.a (mon.0) 423 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:27:00.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:59 smithi138 bash[22282]: audit 2024-04-14T15:26:59.644872+0000 mon.a (mon.0) 422 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-04-14T15:27:00.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:26:59 smithi138 bash[22282]: audit 2024-04-14T15:26:59.646586+0000 mon.a (mon.0) 423 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:27:00.393 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:59 smithi110 bash[22161]: audit 2024-04-14T15:26:59.644872+0000 mon.a (mon.0) 422 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-04-14T15:27:00.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:26:59 smithi110 bash[22161]: audit 2024-04-14T15:26:59.646586+0000 mon.a (mon.0) 423 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:27:01.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:00 smithi047 bash[21449]: cephadm 2024-04-14T15:26:59.648365+0000 mgr.a (mgr.14152) 140 : cephadm [INF] Deploying daemon osd.0 on smithi047 2024-04-14T15:27:01.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:00 smithi047 bash[21449]: cluster 2024-04-14T15:26:59.865775+0000 mgr.a (mgr.14152) 141 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:27:01.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:00 smithi138 bash[22282]: cephadm 2024-04-14T15:26:59.648365+0000 mgr.a (mgr.14152) 140 : cephadm [INF] Deploying daemon osd.0 on smithi047 2024-04-14T15:27:01.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:00 smithi138 bash[22282]: cluster 2024-04-14T15:26:59.865775+0000 mgr.a (mgr.14152) 141 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:27:01.393 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:00 smithi110 bash[22161]: cephadm 2024-04-14T15:26:59.648365+0000 mgr.a (mgr.14152) 140 : cephadm [INF] Deploying daemon osd.0 on smithi047 2024-04-14T15:27:01.393 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:00 smithi110 bash[22161]: cluster 2024-04-14T15:26:59.865775+0000 mgr.a (mgr.14152) 141 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:27:03.130 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:02 smithi047 bash[21449]: cluster 2024-04-14T15:27:01.866178+0000 mgr.a (mgr.14152) 142 : cluster [DBG] pgmap v80: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:27:03.130 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:02 smithi047 bash[21449]: audit 2024-04-14T15:27:02.577563+0000 mon.a (mon.0) 424 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:03.130 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:02 smithi047 bash[21449]: audit 2024-04-14T15:27:02.582447+0000 mon.a (mon.0) 425 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:03.130 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:02 smithi047 bash[21449]: audit 2024-04-14T15:27:02.588522+0000 mon.a (mon.0) 426 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:03.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:02 smithi138 bash[22282]: cluster 2024-04-14T15:27:01.866178+0000 mgr.a (mgr.14152) 142 : cluster [DBG] pgmap v80: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:27:03.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:02 smithi138 bash[22282]: audit 2024-04-14T15:27:02.577563+0000 mon.a (mon.0) 424 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:03.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:02 smithi138 bash[22282]: audit 2024-04-14T15:27:02.582447+0000 mon.a (mon.0) 425 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:03.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:02 smithi138 bash[22282]: audit 2024-04-14T15:27:02.588522+0000 mon.a (mon.0) 426 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:03.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:02 smithi110 bash[22161]: cluster 2024-04-14T15:27:01.866178+0000 mgr.a (mgr.14152) 142 : cluster [DBG] pgmap v80: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:27:03.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:02 smithi110 bash[22161]: audit 2024-04-14T15:27:02.577563+0000 mon.a (mon.0) 424 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:03.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:02 smithi110 bash[22161]: audit 2024-04-14T15:27:02.582447+0000 mon.a (mon.0) 425 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:03.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:02 smithi110 bash[22161]: audit 2024-04-14T15:27:02.588522+0000 mon.a (mon.0) 426 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:04.598 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:04 smithi047 systemd[1]: /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-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-14T15:27:04.598 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:04 smithi047 systemd[1]: /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-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-14T15:27:04.598 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:27:04 smithi047 systemd[1]: /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-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-14T15:27:04.598 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:27:04 smithi047 systemd[1]: /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-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-14T15:27:05.144 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:04 smithi110 bash[22161]: cluster 2024-04-14T15:27:03.866589+0000 mgr.a (mgr.14152) 143 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:27:05.144 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:04 smithi110 bash[22161]: audit 2024-04-14T15:27:04.652911+0000 mon.a (mon.0) 427 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:05.144 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:04 smithi110 bash[22161]: audit 2024-04-14T15:27:04.657905+0000 mon.a (mon.0) 428 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:05.144 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:04 smithi110 bash[22161]: audit 2024-04-14T15:27:04.670026+0000 mon.a (mon.0) 429 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:27:05.144 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:04 smithi110 bash[22161]: audit 2024-04-14T15:27:04.673321+0000 mon.a (mon.0) 430 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:27:05.144 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:04 smithi110 bash[22161]: audit 2024-04-14T15:27:04.674867+0000 mon.a (mon.0) 431 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:27:05.144 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:04 smithi110 bash[22161]: audit 2024-04-14T15:27:04.681475+0000 mon.a (mon.0) 432 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:05.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:04 smithi047 bash[21449]: cluster 2024-04-14T15:27:03.866589+0000 mgr.a (mgr.14152) 143 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:27:05.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:04 smithi047 bash[21449]: audit 2024-04-14T15:27:04.652911+0000 mon.a (mon.0) 427 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:05.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:04 smithi047 bash[21449]: audit 2024-04-14T15:27:04.657905+0000 mon.a (mon.0) 428 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:05.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:04 smithi047 bash[21449]: audit 2024-04-14T15:27:04.670026+0000 mon.a (mon.0) 429 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:27:05.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:04 smithi047 bash[21449]: audit 2024-04-14T15:27:04.673321+0000 mon.a (mon.0) 430 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:27:05.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:04 smithi047 bash[21449]: audit 2024-04-14T15:27:04.674867+0000 mon.a (mon.0) 431 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:27:05.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:04 smithi047 bash[21449]: audit 2024-04-14T15:27:04.681475+0000 mon.a (mon.0) 432 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:05.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:04 smithi138 bash[22282]: cluster 2024-04-14T15:27:03.866589+0000 mgr.a (mgr.14152) 143 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:27:05.312 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:04 smithi138 bash[22282]: audit 2024-04-14T15:27:04.652911+0000 mon.a (mon.0) 427 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:05.312 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:04 smithi138 bash[22282]: audit 2024-04-14T15:27:04.657905+0000 mon.a (mon.0) 428 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:05.312 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:04 smithi138 bash[22282]: audit 2024-04-14T15:27:04.670026+0000 mon.a (mon.0) 429 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:27:05.312 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:04 smithi138 bash[22282]: audit 2024-04-14T15:27:04.673321+0000 mon.a (mon.0) 430 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:27:05.312 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:04 smithi138 bash[22282]: audit 2024-04-14T15:27:04.674867+0000 mon.a (mon.0) 431 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:27:05.312 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:04 smithi138 bash[22282]: audit 2024-04-14T15:27:04.681475+0000 mon.a (mon.0) 432 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:07.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:06 smithi047 bash[21449]: cluster 2024-04-14T15:27:05.867022+0000 mgr.a (mgr.14152) 144 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:27:07.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:06 smithi138 bash[22282]: cluster 2024-04-14T15:27:05.867022+0000 mgr.a (mgr.14152) 144 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:27:07.393 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:06 smithi110 bash[22161]: cluster 2024-04-14T15:27:05.867022+0000 mgr.a (mgr.14152) 144 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:27:09.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:08 smithi047 bash[21449]: cluster 2024-04-14T15:27:07.867546+0000 mgr.a (mgr.14152) 145 : cluster [DBG] pgmap v83: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:27:09.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:08 smithi138 bash[22282]: cluster 2024-04-14T15:27:07.867546+0000 mgr.a (mgr.14152) 145 : cluster [DBG] pgmap v83: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:27:09.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:08 smithi110 bash[22161]: cluster 2024-04-14T15:27:07.867546+0000 mgr.a (mgr.14152) 145 : cluster [DBG] pgmap v83: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:27:11.061 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:10 smithi138 bash[22282]: audit 2024-04-14T15:27:09.795004+0000 mon.a (mon.0) 433 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:11.061 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:10 smithi138 bash[22282]: audit 2024-04-14T15:27:09.799580+0000 mon.a (mon.0) 434 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:11.061 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:10 smithi138 bash[22282]: audit 2024-04-14T15:27:09.804458+0000 mon.a (mon.0) 435 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:11.062 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:10 smithi138 bash[22282]: cluster 2024-04-14T15:27:09.867906+0000 mgr.a (mgr.14152) 146 : cluster [DBG] pgmap v84: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:27:11.062 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:10 smithi138 bash[22282]: audit 2024-04-14T15:27:09.925676+0000 mon.a (mon.0) 436 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:11.062 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:10 smithi138 bash[22282]: audit 2024-04-14T15:27:09.933191+0000 mon.a (mon.0) 437 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:11.062 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:10 smithi138 bash[22282]: cephadm 2024-04-14T15:27:09.935162+0000 mgr.a (mgr.14152) 147 : cephadm [INF] Detected new or changed devices on smithi047 2024-04-14T15:27:11.062 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:10 smithi138 bash[22282]: audit 2024-04-14T15:27:09.941331+0000 mon.a (mon.0) 438 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:11.062 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:10 smithi138 bash[22282]: audit 2024-04-14T15:27:09.974726+0000 mon.a (mon.0) 439 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:27:11.062 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:10 smithi138 bash[22282]: audit 2024-04-14T15:27:09.979681+0000 mon.a (mon.0) 440 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:27:11.062 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:10 smithi138 bash[22282]: audit 2024-04-14T15:27:09.981431+0000 mon.a (mon.0) 441 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:27:11.062 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:10 smithi138 bash[22282]: audit 2024-04-14T15:27:09.991379+0000 mon.a (mon.0) 442 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:11.063 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:10 smithi047 bash[21449]: audit 2024-04-14T15:27:09.795004+0000 mon.a (mon.0) 433 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:11.063 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:10 smithi047 bash[21449]: audit 2024-04-14T15:27:09.799580+0000 mon.a (mon.0) 434 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:11.063 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:10 smithi047 bash[21449]: audit 2024-04-14T15:27:09.804458+0000 mon.a (mon.0) 435 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:11.063 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:10 smithi047 bash[21449]: cluster 2024-04-14T15:27:09.867906+0000 mgr.a (mgr.14152) 146 : cluster [DBG] pgmap v84: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:27:11.063 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:10 smithi047 bash[21449]: audit 2024-04-14T15:27:09.925676+0000 mon.a (mon.0) 436 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:11.063 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:10 smithi047 bash[21449]: audit 2024-04-14T15:27:09.933191+0000 mon.a (mon.0) 437 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:11.063 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:10 smithi047 bash[21449]: cephadm 2024-04-14T15:27:09.935162+0000 mgr.a (mgr.14152) 147 : cephadm [INF] Detected new or changed devices on smithi047 2024-04-14T15:27:11.063 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:10 smithi047 bash[21449]: audit 2024-04-14T15:27:09.941331+0000 mon.a (mon.0) 438 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:11.063 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:10 smithi047 bash[21449]: audit 2024-04-14T15:27:09.974726+0000 mon.a (mon.0) 439 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:27:11.063 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:10 smithi047 bash[21449]: audit 2024-04-14T15:27:09.979681+0000 mon.a (mon.0) 440 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:27:11.063 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:10 smithi047 bash[21449]: audit 2024-04-14T15:27:09.981431+0000 mon.a (mon.0) 441 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:27:11.063 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:10 smithi047 bash[21449]: audit 2024-04-14T15:27:09.991379+0000 mon.a (mon.0) 442 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:11.144 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:10 smithi110 bash[22161]: audit 2024-04-14T15:27:09.795004+0000 mon.a (mon.0) 433 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:11.144 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:10 smithi110 bash[22161]: audit 2024-04-14T15:27:09.799580+0000 mon.a (mon.0) 434 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:11.144 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:10 smithi110 bash[22161]: audit 2024-04-14T15:27:09.804458+0000 mon.a (mon.0) 435 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:11.144 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:10 smithi110 bash[22161]: cluster 2024-04-14T15:27:09.867906+0000 mgr.a (mgr.14152) 146 : cluster [DBG] pgmap v84: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:27:11.144 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:10 smithi110 bash[22161]: audit 2024-04-14T15:27:09.925676+0000 mon.a (mon.0) 436 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:11.144 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:10 smithi110 bash[22161]: audit 2024-04-14T15:27:09.933191+0000 mon.a (mon.0) 437 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:11.144 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:10 smithi110 bash[22161]: cephadm 2024-04-14T15:27:09.935162+0000 mgr.a (mgr.14152) 147 : cephadm [INF] Detected new or changed devices on smithi047 2024-04-14T15:27:11.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:10 smithi110 bash[22161]: audit 2024-04-14T15:27:09.941331+0000 mon.a (mon.0) 438 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:11.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:10 smithi110 bash[22161]: audit 2024-04-14T15:27:09.974726+0000 mon.a (mon.0) 439 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:27:11.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:10 smithi110 bash[22161]: audit 2024-04-14T15:27:09.979681+0000 mon.a (mon.0) 440 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:27:11.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:10 smithi110 bash[22161]: audit 2024-04-14T15:27:09.981431+0000 mon.a (mon.0) 441 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:27:11.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:10 smithi110 bash[22161]: audit 2024-04-14T15:27:09.991379+0000 mon.a (mon.0) 442 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:13.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:12 smithi047 bash[21449]: cluster 2024-04-14T15:27:11.868312+0000 mgr.a (mgr.14152) 148 : cluster [DBG] pgmap v85: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:27:13.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:12 smithi047 bash[21449]: audit 2024-04-14T15:27:12.415869+0000 mon.a (mon.0) 443 : audit [INF] from='osd.0 [v2:172.21.15.47:6802/4086859852,v1:172.21.15.47:6803/4086859852]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-04-14T15:27:13.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:12 smithi138 bash[22282]: cluster 2024-04-14T15:27:11.868312+0000 mgr.a (mgr.14152) 148 : cluster [DBG] pgmap v85: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:27:13.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:12 smithi138 bash[22282]: audit 2024-04-14T15:27:12.415869+0000 mon.a (mon.0) 443 : audit [INF] from='osd.0 [v2:172.21.15.47:6802/4086859852,v1:172.21.15.47:6803/4086859852]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-04-14T15:27:13.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:12 smithi110 bash[22161]: cluster 2024-04-14T15:27:11.868312+0000 mgr.a (mgr.14152) 148 : cluster [DBG] pgmap v85: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:27:13.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:12 smithi110 bash[22161]: audit 2024-04-14T15:27:12.415869+0000 mon.a (mon.0) 443 : audit [INF] from='osd.0 [v2:172.21.15.47:6802/4086859852,v1:172.21.15.47:6803/4086859852]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-04-14T15:27:14.209 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:13 smithi047 bash[21449]: audit 2024-04-14T15:27:12.930994+0000 mon.a (mon.0) 444 : audit [INF] from='osd.0 [v2:172.21.15.47:6802/4086859852,v1:172.21.15.47:6803/4086859852]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-04-14T15:27:14.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:13 smithi047 bash[21449]: cluster 2024-04-14T15:27:12.935741+0000 mon.a (mon.0) 445 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-04-14T15:27:14.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:13 smithi047 bash[21449]: audit 2024-04-14T15:27:12.936398+0000 mon.a (mon.0) 446 : audit [INF] from='osd.0 [v2:172.21.15.47:6802/4086859852,v1:172.21.15.47:6803/4086859852]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi047", "root=default"]}]: dispatch 2024-04-14T15:27:14.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:13 smithi047 bash[21449]: audit 2024-04-14T15:27:12.937054+0000 mon.a (mon.0) 447 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-14T15:27:14.214 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:13 smithi138 bash[22282]: audit 2024-04-14T15:27:12.930994+0000 mon.a (mon.0) 444 : audit [INF] from='osd.0 [v2:172.21.15.47:6802/4086859852,v1:172.21.15.47:6803/4086859852]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-04-14T15:27:14.214 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:13 smithi138 bash[22282]: cluster 2024-04-14T15:27:12.935741+0000 mon.a (mon.0) 445 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-04-14T15:27:14.214 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:13 smithi138 bash[22282]: audit 2024-04-14T15:27:12.936398+0000 mon.a (mon.0) 446 : audit [INF] from='osd.0 [v2:172.21.15.47:6802/4086859852,v1:172.21.15.47:6803/4086859852]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi047", "root=default"]}]: dispatch 2024-04-14T15:27:14.214 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:13 smithi138 bash[22282]: audit 2024-04-14T15:27:12.937054+0000 mon.a (mon.0) 447 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-14T15:27:14.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:13 smithi110 bash[22161]: audit 2024-04-14T15:27:12.930994+0000 mon.a (mon.0) 444 : audit [INF] from='osd.0 [v2:172.21.15.47:6802/4086859852,v1:172.21.15.47:6803/4086859852]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-04-14T15:27:14.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:13 smithi110 bash[22161]: cluster 2024-04-14T15:27:12.935741+0000 mon.a (mon.0) 445 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-04-14T15:27:14.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:13 smithi110 bash[22161]: audit 2024-04-14T15:27:12.936398+0000 mon.a (mon.0) 446 : audit [INF] from='osd.0 [v2:172.21.15.47:6802/4086859852,v1:172.21.15.47:6803/4086859852]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi047", "root=default"]}]: dispatch 2024-04-14T15:27:14.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:13 smithi110 bash[22161]: audit 2024-04-14T15:27:12.937054+0000 mon.a (mon.0) 447 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-14T15:27:15.041 INFO:teuthology.orchestra.run.smithi047.stdout:Created osd(s) 0 on host 'smithi047' 2024-04-14T15:27:15.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:14 smithi047 bash[21449]: cluster 2024-04-14T15:27:13.868668+0000 mgr.a (mgr.14152) 149 : cluster [DBG] pgmap v87: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:27:15.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:14 smithi047 bash[21449]: audit 2024-04-14T15:27:13.932934+0000 mon.a (mon.0) 448 : audit [INF] from='osd.0 [v2:172.21.15.47:6802/4086859852,v1:172.21.15.47:6803/4086859852]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi047", "root=default"]}]': finished 2024-04-14T15:27:15.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:14 smithi047 bash[21449]: cluster 2024-04-14T15:27:13.937628+0000 mon.a (mon.0) 449 : cluster [DBG] osdmap e7: 1 total, 0 up, 1 in 2024-04-14T15:27:15.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:14 smithi047 bash[21449]: audit 2024-04-14T15:27:13.938897+0000 mon.a (mon.0) 450 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-14T15:27:15.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:14 smithi047 bash[21449]: audit 2024-04-14T15:27:13.945421+0000 mon.a (mon.0) 451 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-14T15:27:15.337 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:14 smithi138 bash[22282]: cluster 2024-04-14T15:27:13.868668+0000 mgr.a (mgr.14152) 149 : cluster [DBG] pgmap v87: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:27:15.337 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:14 smithi138 bash[22282]: audit 2024-04-14T15:27:13.932934+0000 mon.a (mon.0) 448 : audit [INF] from='osd.0 [v2:172.21.15.47:6802/4086859852,v1:172.21.15.47:6803/4086859852]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi047", "root=default"]}]': finished 2024-04-14T15:27:15.337 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:14 smithi138 bash[22282]: cluster 2024-04-14T15:27:13.937628+0000 mon.a (mon.0) 449 : cluster [DBG] osdmap e7: 1 total, 0 up, 1 in 2024-04-14T15:27:15.338 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:14 smithi138 bash[22282]: audit 2024-04-14T15:27:13.938897+0000 mon.a (mon.0) 450 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-14T15:27:15.338 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:14 smithi138 bash[22282]: audit 2024-04-14T15:27:13.945421+0000 mon.a (mon.0) 451 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-14T15:27:15.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:14 smithi110 bash[22161]: cluster 2024-04-14T15:27:13.868668+0000 mgr.a (mgr.14152) 149 : cluster [DBG] pgmap v87: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:27:15.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:14 smithi110 bash[22161]: audit 2024-04-14T15:27:13.932934+0000 mon.a (mon.0) 448 : audit [INF] from='osd.0 [v2:172.21.15.47:6802/4086859852,v1:172.21.15.47:6803/4086859852]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi047", "root=default"]}]': finished 2024-04-14T15:27:15.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:14 smithi110 bash[22161]: cluster 2024-04-14T15:27:13.937628+0000 mon.a (mon.0) 449 : cluster [DBG] osdmap e7: 1 total, 0 up, 1 in 2024-04-14T15:27:15.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:14 smithi110 bash[22161]: audit 2024-04-14T15:27:13.938897+0000 mon.a (mon.0) 450 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-14T15:27:15.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:14 smithi110 bash[22161]: audit 2024-04-14T15:27:13.945421+0000 mon.a (mon.0) 451 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-14T15:27:15.701 DEBUG:teuthology.orchestra.run.smithi047:osd.0> sudo journalctl -f -n 0 -u ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@osd.0.service 2024-04-14T15:27:15.703 INFO:tasks.cephadm:Deploying osd.1 on smithi047 with /dev/vg_nvme/lv_3... 2024-04-14T15:27:15.703 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_3 2024-04-14T15:27:15.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:15 smithi047 bash[21449]: cluster 2024-04-14T15:27:13.393160+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-04-14T15:27:15.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:15 smithi047 bash[21449]: cluster 2024-04-14T15:27:13.393256+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-04-14T15:27:15.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:15 smithi047 bash[21449]: audit 2024-04-14T15:27:14.949013+0000 mon.a (mon.0) 452 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-14T15:27:15.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:15 smithi047 bash[21449]: cluster 2024-04-14T15:27:14.954816+0000 mon.a (mon.0) 453 : cluster [INF] osd.0 [v2:172.21.15.47:6802/4086859852,v1:172.21.15.47:6803/4086859852] boot 2024-04-14T15:27:15.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:15 smithi047 bash[21449]: cluster 2024-04-14T15:27:14.954886+0000 mon.a (mon.0) 454 : cluster [DBG] osdmap e8: 1 total, 1 up, 1 in 2024-04-14T15:27:15.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:15 smithi047 bash[21449]: audit 2024-04-14T15:27:14.955105+0000 mon.a (mon.0) 455 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-14T15:27:15.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:15 smithi047 bash[21449]: audit 2024-04-14T15:27:15.002618+0000 mon.a (mon.0) 456 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:15.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:15 smithi047 bash[21449]: audit 2024-04-14T15:27:15.010472+0000 mon.a (mon.0) 457 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:15.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:15 smithi047 bash[21449]: audit 2024-04-14T15:27:15.021689+0000 mon.a (mon.0) 458 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:27:15.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:15 smithi047 bash[21449]: audit 2024-04-14T15:27:15.026715+0000 mon.a (mon.0) 459 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi047", "name": "osd_memory_target"}]: dispatch 2024-04-14T15:27:15.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:15 smithi047 bash[21449]: audit 2024-04-14T15:27:15.028580+0000 mon.a (mon.0) 460 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:27:15.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:15 smithi047 bash[21449]: audit 2024-04-14T15:27:15.030202+0000 mon.a (mon.0) 461 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:27:15.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:15 smithi047 bash[21449]: cluster 2024-04-14T15:27:15.033418+0000 mgr.a (mgr.14152) 150 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:27:15.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:15 smithi047 bash[21449]: audit 2024-04-14T15:27:15.039502+0000 mon.a (mon.0) 462 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:15.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:15 smithi047 bash[21449]: audit 2024-04-14T15:27:15.853210+0000 mon.a (mon.0) 463 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:15.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:15 smithi047 bash[21449]: audit 2024-04-14T15:27:15.858816+0000 mon.a (mon.0) 464 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:15.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:15 smithi047 bash[21449]: audit 2024-04-14T15:27:15.863945+0000 mon.a (mon.0) 465 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:15.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:15 smithi047 bash[21449]: audit 2024-04-14T15:27:15.907190+0000 mon.a (mon.0) 466 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:27:15.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:15 smithi047 bash[21449]: audit 2024-04-14T15:27:15.910935+0000 mon.a (mon.0) 467 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:27:15.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:15 smithi047 bash[21449]: audit 2024-04-14T15:27:15.911801+0000 mon.a (mon.0) 468 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:27:15.962 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:15 smithi047 bash[21449]: audit 2024-04-14T15:27:15.917600+0000 mon.a (mon.0) 469 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:16.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:15 smithi138 bash[22282]: cluster 2024-04-14T15:27:13.393160+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-04-14T15:27:16.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:15 smithi138 bash[22282]: cluster 2024-04-14T15:27:13.393256+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-04-14T15:27:16.312 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:15 smithi138 bash[22282]: audit 2024-04-14T15:27:14.949013+0000 mon.a (mon.0) 452 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-14T15:27:16.312 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:15 smithi138 bash[22282]: cluster 2024-04-14T15:27:14.954816+0000 mon.a (mon.0) 453 : cluster [INF] osd.0 [v2:172.21.15.47:6802/4086859852,v1:172.21.15.47:6803/4086859852] boot 2024-04-14T15:27:16.312 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:15 smithi138 bash[22282]: cluster 2024-04-14T15:27:14.954886+0000 mon.a (mon.0) 454 : cluster [DBG] osdmap e8: 1 total, 1 up, 1 in 2024-04-14T15:27:16.312 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:15 smithi138 bash[22282]: audit 2024-04-14T15:27:14.955105+0000 mon.a (mon.0) 455 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-14T15:27:16.312 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:15 smithi138 bash[22282]: audit 2024-04-14T15:27:15.002618+0000 mon.a (mon.0) 456 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:16.312 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:15 smithi138 bash[22282]: audit 2024-04-14T15:27:15.010472+0000 mon.a (mon.0) 457 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:16.312 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:15 smithi138 bash[22282]: audit 2024-04-14T15:27:15.021689+0000 mon.a (mon.0) 458 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:27:16.312 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:15 smithi138 bash[22282]: audit 2024-04-14T15:27:15.026715+0000 mon.a (mon.0) 459 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi047", "name": "osd_memory_target"}]: dispatch 2024-04-14T15:27:16.312 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:15 smithi138 bash[22282]: audit 2024-04-14T15:27:15.028580+0000 mon.a (mon.0) 460 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:27:16.312 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:15 smithi138 bash[22282]: audit 2024-04-14T15:27:15.030202+0000 mon.a (mon.0) 461 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:27:16.312 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:15 smithi138 bash[22282]: cluster 2024-04-14T15:27:15.033418+0000 mgr.a (mgr.14152) 150 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:27:16.312 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:15 smithi138 bash[22282]: audit 2024-04-14T15:27:15.039502+0000 mon.a (mon.0) 462 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:16.313 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:15 smithi138 bash[22282]: audit 2024-04-14T15:27:15.853210+0000 mon.a (mon.0) 463 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:16.313 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:15 smithi138 bash[22282]: audit 2024-04-14T15:27:15.858816+0000 mon.a (mon.0) 464 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:16.313 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:15 smithi138 bash[22282]: audit 2024-04-14T15:27:15.863945+0000 mon.a (mon.0) 465 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:16.313 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:15 smithi138 bash[22282]: audit 2024-04-14T15:27:15.907190+0000 mon.a (mon.0) 466 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:27:16.313 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:15 smithi138 bash[22282]: audit 2024-04-14T15:27:15.910935+0000 mon.a (mon.0) 467 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:27:16.313 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:15 smithi138 bash[22282]: audit 2024-04-14T15:27:15.911801+0000 mon.a (mon.0) 468 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:27:16.313 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:15 smithi138 bash[22282]: audit 2024-04-14T15:27:15.917600+0000 mon.a (mon.0) 469 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:16.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:15 smithi110 bash[22161]: cluster 2024-04-14T15:27:13.393160+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-04-14T15:27:16.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:15 smithi110 bash[22161]: cluster 2024-04-14T15:27:13.393256+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-04-14T15:27:16.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:15 smithi110 bash[22161]: audit 2024-04-14T15:27:14.949013+0000 mon.a (mon.0) 452 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-14T15:27:16.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:15 smithi110 bash[22161]: cluster 2024-04-14T15:27:14.954816+0000 mon.a (mon.0) 453 : cluster [INF] osd.0 [v2:172.21.15.47:6802/4086859852,v1:172.21.15.47:6803/4086859852] boot 2024-04-14T15:27:16.397 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:15 smithi110 bash[22161]: cluster 2024-04-14T15:27:14.954886+0000 mon.a (mon.0) 454 : cluster [DBG] osdmap e8: 1 total, 1 up, 1 in 2024-04-14T15:27:16.398 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:15 smithi110 bash[22161]: audit 2024-04-14T15:27:14.955105+0000 mon.a (mon.0) 455 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-14T15:27:16.398 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:15 smithi110 bash[22161]: audit 2024-04-14T15:27:15.002618+0000 mon.a (mon.0) 456 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:16.398 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:15 smithi110 bash[22161]: audit 2024-04-14T15:27:15.010472+0000 mon.a (mon.0) 457 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:16.398 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:15 smithi110 bash[22161]: audit 2024-04-14T15:27:15.021689+0000 mon.a (mon.0) 458 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:27:16.398 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:15 smithi110 bash[22161]: audit 2024-04-14T15:27:15.026715+0000 mon.a (mon.0) 459 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi047", "name": "osd_memory_target"}]: dispatch 2024-04-14T15:27:16.398 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:15 smithi110 bash[22161]: audit 2024-04-14T15:27:15.028580+0000 mon.a (mon.0) 460 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:27:16.398 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:15 smithi110 bash[22161]: audit 2024-04-14T15:27:15.030202+0000 mon.a (mon.0) 461 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:27:16.398 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:15 smithi110 bash[22161]: cluster 2024-04-14T15:27:15.033418+0000 mgr.a (mgr.14152) 150 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:27:16.398 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:15 smithi110 bash[22161]: audit 2024-04-14T15:27:15.039502+0000 mon.a (mon.0) 462 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:16.398 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:15 smithi110 bash[22161]: audit 2024-04-14T15:27:15.853210+0000 mon.a (mon.0) 463 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:16.398 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:15 smithi110 bash[22161]: audit 2024-04-14T15:27:15.858816+0000 mon.a (mon.0) 464 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:16.398 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:15 smithi110 bash[22161]: audit 2024-04-14T15:27:15.863945+0000 mon.a (mon.0) 465 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:16.399 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:15 smithi110 bash[22161]: audit 2024-04-14T15:27:15.907190+0000 mon.a (mon.0) 466 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:27:16.399 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:15 smithi110 bash[22161]: audit 2024-04-14T15:27:15.910935+0000 mon.a (mon.0) 467 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:27:16.399 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:15 smithi110 bash[22161]: audit 2024-04-14T15:27:15.911801+0000 mon.a (mon.0) 468 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:27:16.399 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:15 smithi110 bash[22161]: audit 2024-04-14T15:27:15.917600+0000 mon.a (mon.0) 469 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:17.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:17 smithi138 bash[22282]: cluster 2024-04-14T15:27:15.913557+0000 mgr.a (mgr.14152) 151 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:27:17.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:17 smithi138 bash[22282]: cluster 2024-04-14T15:27:16.042168+0000 mon.a (mon.0) 470 : cluster [DBG] osdmap e9: 1 total, 1 up, 1 in 2024-04-14T15:27:17.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:17 smithi110 bash[22161]: cluster 2024-04-14T15:27:15.913557+0000 mgr.a (mgr.14152) 151 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:27:17.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:17 smithi110 bash[22161]: cluster 2024-04-14T15:27:16.042168+0000 mon.a (mon.0) 470 : cluster [DBG] osdmap e9: 1 total, 1 up, 1 in 2024-04-14T15:27:17.459 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:17 smithi047 bash[21449]: cluster 2024-04-14T15:27:15.913557+0000 mgr.a (mgr.14152) 151 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T15:27:17.460 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:17 smithi047 bash[21449]: cluster 2024-04-14T15:27:16.042168+0000 mon.a (mon.0) 470 : cluster [DBG] osdmap e9: 1 total, 1 up, 1 in 2024-04-14T15:27:19.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:19 smithi138 bash[22282]: cluster 2024-04-14T15:27:17.913980+0000 mgr.a (mgr.14152) 152 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:19.393 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:19 smithi110 bash[22161]: cluster 2024-04-14T15:27:17.913980+0000 mgr.a (mgr.14152) 152 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:19.456 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T15:27:19.459 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:19 smithi047 bash[21449]: cluster 2024-04-14T15:27:17.913980+0000 mgr.a (mgr.14152) 152 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:21.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:21 smithi138 bash[22282]: cluster 2024-04-14T15:27:19.914440+0000 mgr.a (mgr.14152) 153 : cluster [DBG] pgmap v94: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:21.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:21 smithi110 bash[22161]: cluster 2024-04-14T15:27:19.914440+0000 mgr.a (mgr.14152) 153 : cluster [DBG] pgmap v94: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:21.459 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:21 smithi047 bash[21449]: cluster 2024-04-14T15:27:19.914440+0000 mgr.a (mgr.14152) 153 : cluster [DBG] pgmap v94: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:22.568 INFO:teuthology.orchestra.run.smithi047.stderr:--> Zapping: /dev/vg_nvme/lv_3 2024-04-14T15:27:22.568 INFO:teuthology.orchestra.run.smithi047.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_3 bs=1M count=10 conv=fsync 2024-04-14T15:27:22.568 INFO:teuthology.orchestra.run.smithi047.stderr: stderr: 10+0 records in 2024-04-14T15:27:22.568 INFO:teuthology.orchestra.run.smithi047.stderr:10+0 records out 2024-04-14T15:27:22.568 INFO:teuthology.orchestra.run.smithi047.stderr:10485760 bytes (10 MB, 10 MiB) copied, 0.012517 s, 838 MB/s 2024-04-14T15:27:22.568 INFO:teuthology.orchestra.run.smithi047.stderr:--> Zapping successful for: 2024-04-14T15:27:23.223 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph orch daemon add osd smithi047:vg_nvme/lv_3 2024-04-14T15:27:23.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:23 smithi138 bash[22282]: cluster 2024-04-14T15:27:21.914776+0000 mgr.a (mgr.14152) 154 : cluster [DBG] pgmap v95: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:23.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:23 smithi138 bash[22282]: audit 2024-04-14T15:27:22.797875+0000 mon.a (mon.0) 471 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:23.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:23 smithi138 bash[22282]: audit 2024-04-14T15:27:22.805966+0000 mon.a (mon.0) 472 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:23.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:23 smithi138 bash[22282]: audit 2024-04-14T15:27:22.816325+0000 mon.a (mon.0) 473 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:23.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:23 smithi110 bash[22161]: cluster 2024-04-14T15:27:21.914776+0000 mgr.a (mgr.14152) 154 : cluster [DBG] pgmap v95: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:23.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:23 smithi110 bash[22161]: audit 2024-04-14T15:27:22.797875+0000 mon.a (mon.0) 471 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:23.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:23 smithi110 bash[22161]: audit 2024-04-14T15:27:22.805966+0000 mon.a (mon.0) 472 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:23.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:23 smithi110 bash[22161]: audit 2024-04-14T15:27:22.816325+0000 mon.a (mon.0) 473 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:23.459 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:23 smithi047 bash[21449]: cluster 2024-04-14T15:27:21.914776+0000 mgr.a (mgr.14152) 154 : cluster [DBG] pgmap v95: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:23.459 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:23 smithi047 bash[21449]: audit 2024-04-14T15:27:22.797875+0000 mon.a (mon.0) 471 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:23.459 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:23 smithi047 bash[21449]: audit 2024-04-14T15:27:22.805966+0000 mon.a (mon.0) 472 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:23.459 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:23 smithi047 bash[21449]: audit 2024-04-14T15:27:22.816325+0000 mon.a (mon.0) 473 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:25.310 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:25 smithi138 bash[22282]: cluster 2024-04-14T15:27:23.915209+0000 mgr.a (mgr.14152) 155 : cluster [DBG] pgmap v96: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:25.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:25 smithi110 bash[22161]: cluster 2024-04-14T15:27:23.915209+0000 mgr.a (mgr.14152) 155 : cluster [DBG] pgmap v96: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:25.407 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:25 smithi047 bash[21449]: cluster 2024-04-14T15:27:23.915209+0000 mgr.a (mgr.14152) 155 : cluster [DBG] pgmap v96: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:27.209 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:27 smithi047 bash[21449]: cluster 2024-04-14T15:27:25.915679+0000 mgr.a (mgr.14152) 156 : cluster [DBG] pgmap v97: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:27.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:27 smithi138 bash[22282]: cluster 2024-04-14T15:27:25.915679+0000 mgr.a (mgr.14152) 156 : cluster [DBG] pgmap v97: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:27.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:27 smithi110 bash[22161]: cluster 2024-04-14T15:27:25.915679+0000 mgr.a (mgr.14152) 156 : cluster [DBG] pgmap v97: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:28.840 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T15:27:29.209 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:29 smithi047 bash[21449]: cluster 2024-04-14T15:27:27.916267+0000 mgr.a (mgr.14152) 157 : cluster [DBG] pgmap v98: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:29.393 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:29 smithi110 bash[22161]: cluster 2024-04-14T15:27:27.916267+0000 mgr.a (mgr.14152) 157 : cluster [DBG] pgmap v98: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:29.560 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:29 smithi138 bash[22282]: cluster 2024-04-14T15:27:27.916267+0000 mgr.a (mgr.14152) 157 : cluster [DBG] pgmap v98: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:31.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:30 smithi138 bash[22282]: cluster 2024-04-14T15:27:29.916857+0000 mgr.a (mgr.14152) 158 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:31.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:30 smithi138 bash[22282]: audit 2024-04-14T15:27:29.980143+0000 mon.a (mon.0) 474 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:31.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:30 smithi138 bash[22282]: audit 2024-04-14T15:27:29.984915+0000 mon.a (mon.0) 475 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:31.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:30 smithi138 bash[22282]: audit 2024-04-14T15:27:29.990842+0000 mon.a (mon.0) 476 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:31.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:30 smithi110 bash[22161]: cluster 2024-04-14T15:27:29.916857+0000 mgr.a (mgr.14152) 158 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:31.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:30 smithi110 bash[22161]: audit 2024-04-14T15:27:29.980143+0000 mon.a (mon.0) 474 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:31.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:30 smithi110 bash[22161]: audit 2024-04-14T15:27:29.984915+0000 mon.a (mon.0) 475 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:31.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:30 smithi110 bash[22161]: audit 2024-04-14T15:27:29.990842+0000 mon.a (mon.0) 476 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:31.459 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:30 smithi047 bash[21449]: cluster 2024-04-14T15:27:29.916857+0000 mgr.a (mgr.14152) 158 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:31.460 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:30 smithi047 bash[21449]: audit 2024-04-14T15:27:29.980143+0000 mon.a (mon.0) 474 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:31.460 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:30 smithi047 bash[21449]: audit 2024-04-14T15:27:29.984915+0000 mon.a (mon.0) 475 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:31.460 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:30 smithi047 bash[21449]: audit 2024-04-14T15:27:29.990842+0000 mon.a (mon.0) 476 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:32.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:31 smithi138 bash[22282]: audit 2024-04-14T15:27:31.518395+0000 mgr.a (mgr.14152) 159 : audit [DBG] from='client.14238 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi047:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:27:32.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:31 smithi138 bash[22282]: audit 2024-04-14T15:27:31.522352+0000 mon.a (mon.0) 477 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-14T15:27:32.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:31 smithi138 bash[22282]: audit 2024-04-14T15:27:31.525991+0000 mon.a (mon.0) 478 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-14T15:27:32.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:31 smithi138 bash[22282]: audit 2024-04-14T15:27:31.526849+0000 mon.a (mon.0) 479 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:27:32.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:31 smithi110 bash[22161]: audit 2024-04-14T15:27:31.518395+0000 mgr.a (mgr.14152) 159 : audit [DBG] from='client.14238 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi047:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:27:32.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:31 smithi110 bash[22161]: audit 2024-04-14T15:27:31.522352+0000 mon.a (mon.0) 477 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-14T15:27:32.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:31 smithi110 bash[22161]: audit 2024-04-14T15:27:31.525991+0000 mon.a (mon.0) 478 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-14T15:27:32.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:31 smithi110 bash[22161]: audit 2024-04-14T15:27:31.526849+0000 mon.a (mon.0) 479 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:27:32.459 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:31 smithi047 bash[21449]: audit 2024-04-14T15:27:31.518395+0000 mgr.a (mgr.14152) 159 : audit [DBG] from='client.14238 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi047:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:27:32.460 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:31 smithi047 bash[21449]: audit 2024-04-14T15:27:31.522352+0000 mon.a (mon.0) 477 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-14T15:27:32.460 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:31 smithi047 bash[21449]: audit 2024-04-14T15:27:31.525991+0000 mon.a (mon.0) 478 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-14T15:27:32.460 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:31 smithi047 bash[21449]: audit 2024-04-14T15:27:31.526849+0000 mon.a (mon.0) 479 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:27:33.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:32 smithi138 bash[22282]: cluster 2024-04-14T15:27:31.917327+0000 mgr.a (mgr.14152) 160 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:33.393 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:32 smithi110 bash[22161]: cluster 2024-04-14T15:27:31.917327+0000 mgr.a (mgr.14152) 160 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:33.459 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:32 smithi047 bash[21449]: cluster 2024-04-14T15:27:31.917327+0000 mgr.a (mgr.14152) 160 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:35.728 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:35 smithi138 bash[22282]: cluster 2024-04-14T15:27:33.917917+0000 mgr.a (mgr.14152) 161 : cluster [DBG] pgmap v101: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:35.729 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:35 smithi138 bash[22282]: audit 2024-04-14T15:27:34.468710+0000 mon.a (mon.0) 480 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:35.729 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:35 smithi138 bash[22282]: audit 2024-04-14T15:27:34.474204+0000 mon.a (mon.0) 481 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:35.729 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:35 smithi138 bash[22282]: audit 2024-04-14T15:27:34.479404+0000 mon.a (mon.0) 482 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:35.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:35 smithi110 bash[22161]: cluster 2024-04-14T15:27:33.917917+0000 mgr.a (mgr.14152) 161 : cluster [DBG] pgmap v101: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:35.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:35 smithi110 bash[22161]: audit 2024-04-14T15:27:34.468710+0000 mon.a (mon.0) 480 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:35.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:35 smithi110 bash[22161]: audit 2024-04-14T15:27:34.474204+0000 mon.a (mon.0) 481 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:35.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:35 smithi110 bash[22161]: audit 2024-04-14T15:27:34.479404+0000 mon.a (mon.0) 482 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:35.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:35 smithi047 bash[21449]: cluster 2024-04-14T15:27:33.917917+0000 mgr.a (mgr.14152) 161 : cluster [DBG] pgmap v101: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:35.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:35 smithi047 bash[21449]: audit 2024-04-14T15:27:34.468710+0000 mon.a (mon.0) 480 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:35.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:35 smithi047 bash[21449]: audit 2024-04-14T15:27:34.474204+0000 mon.a (mon.0) 481 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:35.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:35 smithi047 bash[21449]: audit 2024-04-14T15:27:34.479404+0000 mon.a (mon.0) 482 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:37.727 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:37 smithi047 bash[21449]: cluster 2024-04-14T15:27:35.918503+0000 mgr.a (mgr.14152) 162 : cluster [DBG] pgmap v102: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:37.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:37 smithi138 bash[22282]: cluster 2024-04-14T15:27:35.918503+0000 mgr.a (mgr.14152) 162 : cluster [DBG] pgmap v102: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:37.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:37 smithi110 bash[22161]: cluster 2024-04-14T15:27:35.918503+0000 mgr.a (mgr.14152) 162 : cluster [DBG] pgmap v102: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:39.560 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:39 smithi138 bash[22282]: cluster 2024-04-14T15:27:37.919021+0000 mgr.a (mgr.14152) 163 : cluster [DBG] pgmap v103: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:39.709 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:39 smithi047 bash[21449]: cluster 2024-04-14T15:27:37.919021+0000 mgr.a (mgr.14152) 163 : cluster [DBG] pgmap v103: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:39.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:39 smithi110 bash[22161]: cluster 2024-04-14T15:27:37.919021+0000 mgr.a (mgr.14152) 163 : cluster [DBG] pgmap v103: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:40.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:40 smithi138 bash[22282]: audit 2024-04-14T15:27:40.197150+0000 mon.a (mon.0) 483 : audit [INF] from='client.? 172.21.15.47:0/2250707407' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "81cd85ba-495f-4039-abd0-5ccf9c1a05fc"}]: dispatch 2024-04-14T15:27:40.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:40 smithi138 bash[22282]: audit 2024-04-14T15:27:40.200047+0000 mon.a (mon.0) 484 : audit [INF] from='client.? 172.21.15.47:0/2250707407' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "81cd85ba-495f-4039-abd0-5ccf9c1a05fc"}]': finished 2024-04-14T15:27:40.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:40 smithi138 bash[22282]: cluster 2024-04-14T15:27:40.203411+0000 mon.a (mon.0) 485 : cluster [DBG] osdmap e10: 2 total, 1 up, 2 in 2024-04-14T15:27:40.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:40 smithi138 bash[22282]: audit 2024-04-14T15:27:40.203682+0000 mon.a (mon.0) 486 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-14T15:27:40.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:40 smithi110 bash[22161]: audit 2024-04-14T15:27:40.197150+0000 mon.a (mon.0) 483 : audit [INF] from='client.? 172.21.15.47:0/2250707407' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "81cd85ba-495f-4039-abd0-5ccf9c1a05fc"}]: dispatch 2024-04-14T15:27:40.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:40 smithi110 bash[22161]: audit 2024-04-14T15:27:40.200047+0000 mon.a (mon.0) 484 : audit [INF] from='client.? 172.21.15.47:0/2250707407' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "81cd85ba-495f-4039-abd0-5ccf9c1a05fc"}]': finished 2024-04-14T15:27:40.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:40 smithi110 bash[22161]: cluster 2024-04-14T15:27:40.203411+0000 mon.a (mon.0) 485 : cluster [DBG] osdmap e10: 2 total, 1 up, 2 in 2024-04-14T15:27:40.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:40 smithi110 bash[22161]: audit 2024-04-14T15:27:40.203682+0000 mon.a (mon.0) 486 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-14T15:27:40.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:40 smithi047 bash[21449]: audit 2024-04-14T15:27:40.197150+0000 mon.a (mon.0) 483 : audit [INF] from='client.? 172.21.15.47:0/2250707407' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "81cd85ba-495f-4039-abd0-5ccf9c1a05fc"}]: dispatch 2024-04-14T15:27:40.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:40 smithi047 bash[21449]: audit 2024-04-14T15:27:40.200047+0000 mon.a (mon.0) 484 : audit [INF] from='client.? 172.21.15.47:0/2250707407' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "81cd85ba-495f-4039-abd0-5ccf9c1a05fc"}]': finished 2024-04-14T15:27:40.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:40 smithi047 bash[21449]: cluster 2024-04-14T15:27:40.203411+0000 mon.a (mon.0) 485 : cluster [DBG] osdmap e10: 2 total, 1 up, 2 in 2024-04-14T15:27:40.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:40 smithi047 bash[21449]: audit 2024-04-14T15:27:40.203682+0000 mon.a (mon.0) 486 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-14T15:27:41.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:41 smithi138 bash[22282]: cluster 2024-04-14T15:27:39.919450+0000 mgr.a (mgr.14152) 164 : cluster [DBG] pgmap v104: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:41.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:41 smithi138 bash[22282]: audit 2024-04-14T15:27:40.959234+0000 mon.a (mon.0) 487 : audit [DBG] from='client.? 172.21.15.47:0/1014634026' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-14T15:27:41.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:41 smithi110 bash[22161]: cluster 2024-04-14T15:27:39.919450+0000 mgr.a (mgr.14152) 164 : cluster [DBG] pgmap v104: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:41.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:41 smithi110 bash[22161]: audit 2024-04-14T15:27:40.959234+0000 mon.a (mon.0) 487 : audit [DBG] from='client.? 172.21.15.47:0/1014634026' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-14T15:27:41.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:41 smithi047 bash[21449]: cluster 2024-04-14T15:27:39.919450+0000 mgr.a (mgr.14152) 164 : cluster [DBG] pgmap v104: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:41.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:41 smithi047 bash[21449]: audit 2024-04-14T15:27:40.959234+0000 mon.a (mon.0) 487 : audit [DBG] from='client.? 172.21.15.47:0/1014634026' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-14T15:27:43.691 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:43 smithi047 bash[21449]: cluster 2024-04-14T15:27:41.919824+0000 mgr.a (mgr.14152) 165 : cluster [DBG] pgmap v106: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:43.692 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:43 smithi047 bash[21449]: audit 2024-04-14T15:27:43.016137+0000 mon.a (mon.0) 488 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:43.692 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:43 smithi047 bash[21449]: audit 2024-04-14T15:27:43.023126+0000 mon.a (mon.0) 489 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:43.692 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:43 smithi047 bash[21449]: audit 2024-04-14T15:27:43.032108+0000 mon.a (mon.0) 490 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:43.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:43 smithi138 bash[22282]: cluster 2024-04-14T15:27:41.919824+0000 mgr.a (mgr.14152) 165 : cluster [DBG] pgmap v106: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:43.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:43 smithi138 bash[22282]: audit 2024-04-14T15:27:43.016137+0000 mon.a (mon.0) 488 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:43.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:43 smithi138 bash[22282]: audit 2024-04-14T15:27:43.023126+0000 mon.a (mon.0) 489 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:43.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:43 smithi138 bash[22282]: audit 2024-04-14T15:27:43.032108+0000 mon.a (mon.0) 490 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:43.893 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:43 smithi110 bash[22161]: cluster 2024-04-14T15:27:41.919824+0000 mgr.a (mgr.14152) 165 : cluster [DBG] pgmap v106: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:43.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:43 smithi110 bash[22161]: audit 2024-04-14T15:27:43.016137+0000 mon.a (mon.0) 488 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:43.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:43 smithi110 bash[22161]: audit 2024-04-14T15:27:43.023126+0000 mon.a (mon.0) 489 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:43.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:43 smithi110 bash[22161]: audit 2024-04-14T15:27:43.032108+0000 mon.a (mon.0) 490 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:45.774 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:45 smithi110 bash[22161]: cluster 2024-04-14T15:27:43.920271+0000 mgr.a (mgr.14152) 166 : cluster [DBG] pgmap v107: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:45.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:45 smithi138 bash[22282]: cluster 2024-04-14T15:27:43.920271+0000 mgr.a (mgr.14152) 166 : cluster [DBG] pgmap v107: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:45.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:45 smithi047 bash[21449]: cluster 2024-04-14T15:27:43.920271+0000 mgr.a (mgr.14152) 166 : cluster [DBG] pgmap v107: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:47.773 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:47 smithi047 bash[21449]: cluster 2024-04-14T15:27:45.920632+0000 mgr.a (mgr.14152) 167 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:47.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:47 smithi138 bash[22282]: cluster 2024-04-14T15:27:45.920632+0000 mgr.a (mgr.14152) 167 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:47.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:47 smithi110 bash[22161]: cluster 2024-04-14T15:27:45.920632+0000 mgr.a (mgr.14152) 167 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:49.813 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:49 smithi138 bash[22282]: cluster 2024-04-14T15:27:47.921070+0000 mgr.a (mgr.14152) 168 : cluster [DBG] pgmap v109: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:49.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:49 smithi110 bash[22161]: cluster 2024-04-14T15:27:47.921070+0000 mgr.a (mgr.14152) 168 : cluster [DBG] pgmap v109: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:49.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:49 smithi047 bash[21449]: cluster 2024-04-14T15:27:47.921070+0000 mgr.a (mgr.14152) 168 : cluster [DBG] pgmap v109: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:51.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:51 smithi047 bash[21449]: cluster 2024-04-14T15:27:49.921523+0000 mgr.a (mgr.14152) 169 : cluster [DBG] pgmap v110: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:51.462 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:51 smithi047 bash[21449]: audit 2024-04-14T15:27:50.199908+0000 mon.a (mon.0) 491 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:51.462 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:51 smithi047 bash[21449]: audit 2024-04-14T15:27:50.208723+0000 mon.a (mon.0) 492 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:51.462 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:51 smithi047 bash[21449]: audit 2024-04-14T15:27:50.218848+0000 mon.a (mon.0) 493 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:51.560 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:51 smithi138 bash[22282]: cluster 2024-04-14T15:27:49.921523+0000 mgr.a (mgr.14152) 169 : cluster [DBG] pgmap v110: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:51.561 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:51 smithi138 bash[22282]: audit 2024-04-14T15:27:50.199908+0000 mon.a (mon.0) 491 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:51.561 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:51 smithi138 bash[22282]: audit 2024-04-14T15:27:50.208723+0000 mon.a (mon.0) 492 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:51.561 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:51 smithi138 bash[22282]: audit 2024-04-14T15:27:50.218848+0000 mon.a (mon.0) 493 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:51.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:51 smithi110 bash[22161]: cluster 2024-04-14T15:27:49.921523+0000 mgr.a (mgr.14152) 169 : cluster [DBG] pgmap v110: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:51.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:51 smithi110 bash[22161]: audit 2024-04-14T15:27:50.199908+0000 mon.a (mon.0) 491 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:51.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:51 smithi110 bash[22161]: audit 2024-04-14T15:27:50.208723+0000 mon.a (mon.0) 492 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:51.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:51 smithi110 bash[22161]: audit 2024-04-14T15:27:50.218848+0000 mon.a (mon.0) 493 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:53.459 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:53 smithi047 bash[21449]: cluster 2024-04-14T15:27:51.922015+0000 mgr.a (mgr.14152) 170 : cluster [DBG] pgmap v111: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:53.560 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:53 smithi138 bash[22282]: cluster 2024-04-14T15:27:51.922015+0000 mgr.a (mgr.14152) 170 : cluster [DBG] pgmap v111: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:53.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:53 smithi110 bash[22161]: cluster 2024-04-14T15:27:51.922015+0000 mgr.a (mgr.14152) 170 : cluster [DBG] pgmap v111: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:54.360 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:54 smithi138 bash[22282]: audit 2024-04-14T15:27:53.272911+0000 mon.a (mon.0) 494 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-04-14T15:27:54.360 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:54 smithi138 bash[22282]: audit 2024-04-14T15:27:53.274704+0000 mon.a (mon.0) 495 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:27:54.360 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:54 smithi138 bash[22282]: cephadm 2024-04-14T15:27:53.276274+0000 mgr.a (mgr.14152) 171 : cephadm [INF] Deploying daemon osd.1 on smithi047 2024-04-14T15:27:54.459 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:54 smithi047 bash[21449]: audit 2024-04-14T15:27:53.272911+0000 mon.a (mon.0) 494 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-04-14T15:27:54.459 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:54 smithi047 bash[21449]: audit 2024-04-14T15:27:53.274704+0000 mon.a (mon.0) 495 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:27:54.459 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:54 smithi047 bash[21449]: cephadm 2024-04-14T15:27:53.276274+0000 mgr.a (mgr.14152) 171 : cephadm [INF] Deploying daemon osd.1 on smithi047 2024-04-14T15:27:54.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:54 smithi110 bash[22161]: audit 2024-04-14T15:27:53.272911+0000 mon.a (mon.0) 494 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-04-14T15:27:54.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:54 smithi110 bash[22161]: audit 2024-04-14T15:27:53.274704+0000 mon.a (mon.0) 495 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:27:54.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:54 smithi110 bash[22161]: cephadm 2024-04-14T15:27:53.276274+0000 mgr.a (mgr.14152) 171 : cephadm [INF] Deploying daemon osd.1 on smithi047 2024-04-14T15:27:55.460 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:55 smithi047 bash[21449]: cluster 2024-04-14T15:27:53.922455+0000 mgr.a (mgr.14152) 172 : cluster [DBG] pgmap v112: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:55.460 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:55 smithi047 bash[21449]: audit 2024-04-14T15:27:54.628058+0000 mon.a (mon.0) 496 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:55.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:55 smithi047 bash[21449]: audit 2024-04-14T15:27:54.632872+0000 mon.a (mon.0) 497 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:55.461 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:55 smithi047 bash[21449]: audit 2024-04-14T15:27:54.639529+0000 mon.a (mon.0) 498 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:55.472 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:55 smithi138 bash[22282]: cluster 2024-04-14T15:27:53.922455+0000 mgr.a (mgr.14152) 172 : cluster [DBG] pgmap v112: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:55.472 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:55 smithi138 bash[22282]: audit 2024-04-14T15:27:54.628058+0000 mon.a (mon.0) 496 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:55.472 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:55 smithi138 bash[22282]: audit 2024-04-14T15:27:54.632872+0000 mon.a (mon.0) 497 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:55.472 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:55 smithi138 bash[22282]: audit 2024-04-14T15:27:54.639529+0000 mon.a (mon.0) 498 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:55.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:55 smithi110 bash[22161]: cluster 2024-04-14T15:27:53.922455+0000 mgr.a (mgr.14152) 172 : cluster [DBG] pgmap v112: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:55.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:55 smithi110 bash[22161]: audit 2024-04-14T15:27:54.628058+0000 mon.a (mon.0) 496 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:55.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:55 smithi110 bash[22161]: audit 2024-04-14T15:27:54.632872+0000 mon.a (mon.0) 497 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:55.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:55 smithi110 bash[22161]: audit 2024-04-14T15:27:54.639529+0000 mon.a (mon.0) 498 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:56.545 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:56 smithi047 bash[21449]: cephadm 2024-04-14T15:27:54.634196+0000 mgr.a (mgr.14152) 173 : cephadm [INF] Detected new or changed devices on smithi047 2024-04-14T15:27:56.560 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:56 smithi138 bash[22282]: cephadm 2024-04-14T15:27:54.634196+0000 mgr.a (mgr.14152) 173 : cephadm [INF] Detected new or changed devices on smithi047 2024-04-14T15:27:56.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:56 smithi110 bash[22161]: cephadm 2024-04-14T15:27:54.634196+0000 mgr.a (mgr.14152) 173 : cephadm [INF] Detected new or changed devices on smithi047 2024-04-14T15:27:57.528 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:57 smithi047 bash[21449]: cluster 2024-04-14T15:27:55.922900+0000 mgr.a (mgr.14152) 174 : cluster [DBG] pgmap v113: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:57.560 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:57 smithi138 bash[22282]: cluster 2024-04-14T15:27:55.922900+0000 mgr.a (mgr.14152) 174 : cluster [DBG] pgmap v113: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:57.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:57 smithi110 bash[22161]: cluster 2024-04-14T15:27:55.922900+0000 mgr.a (mgr.14152) 174 : cluster [DBG] pgmap v113: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:57.851 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:57 smithi047 systemd[1]: /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-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-14T15:27:57.852 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:57 smithi047 systemd[1]: /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-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-14T15:27:57.852 INFO:journalctl@ceph.osd.0.smithi047.stdout:Apr 14 15:27:57 smithi047 systemd[1]: /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-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-14T15:27:57.852 INFO:journalctl@ceph.osd.0.smithi047.stdout:Apr 14 15:27:57 smithi047 systemd[1]: /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-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-14T15:27:57.852 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:27:57 smithi047 systemd[1]: /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-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-14T15:27:57.852 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:27:57 smithi047 systemd[1]: /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-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-14T15:27:59.209 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:58 smithi047 bash[21449]: audit 2024-04-14T15:27:57.897882+0000 mon.a (mon.0) 499 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:59.209 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:58 smithi047 bash[21449]: audit 2024-04-14T15:27:57.902234+0000 mon.a (mon.0) 500 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:59.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:58 smithi047 bash[21449]: cluster 2024-04-14T15:27:57.923215+0000 mgr.a (mgr.14152) 175 : cluster [DBG] pgmap v114: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:59.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:58 smithi047 bash[21449]: audit 2024-04-14T15:27:57.923983+0000 mon.a (mon.0) 501 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:27:59.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:58 smithi047 bash[21449]: audit 2024-04-14T15:27:57.926057+0000 mon.a (mon.0) 502 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:27:59.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:58 smithi047 bash[21449]: audit 2024-04-14T15:27:57.926668+0000 mon.a (mon.0) 503 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:27:59.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:27:58 smithi047 bash[21449]: audit 2024-04-14T15:27:57.932335+0000 mon.a (mon.0) 504 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:59.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:58 smithi138 bash[22282]: audit 2024-04-14T15:27:57.897882+0000 mon.a (mon.0) 499 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:59.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:58 smithi138 bash[22282]: audit 2024-04-14T15:27:57.902234+0000 mon.a (mon.0) 500 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:59.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:58 smithi138 bash[22282]: cluster 2024-04-14T15:27:57.923215+0000 mgr.a (mgr.14152) 175 : cluster [DBG] pgmap v114: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:59.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:58 smithi138 bash[22282]: audit 2024-04-14T15:27:57.923983+0000 mon.a (mon.0) 501 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:27:59.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:58 smithi138 bash[22282]: audit 2024-04-14T15:27:57.926057+0000 mon.a (mon.0) 502 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:27:59.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:58 smithi138 bash[22282]: audit 2024-04-14T15:27:57.926668+0000 mon.a (mon.0) 503 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:27:59.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:27:58 smithi138 bash[22282]: audit 2024-04-14T15:27:57.932335+0000 mon.a (mon.0) 504 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:59.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:58 smithi110 bash[22161]: audit 2024-04-14T15:27:57.897882+0000 mon.a (mon.0) 499 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:59.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:58 smithi110 bash[22161]: audit 2024-04-14T15:27:57.902234+0000 mon.a (mon.0) 500 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:27:59.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:58 smithi110 bash[22161]: cluster 2024-04-14T15:27:57.923215+0000 mgr.a (mgr.14152) 175 : cluster [DBG] pgmap v114: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:27:59.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:58 smithi110 bash[22161]: audit 2024-04-14T15:27:57.923983+0000 mon.a (mon.0) 501 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:27:59.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:58 smithi110 bash[22161]: audit 2024-04-14T15:27:57.926057+0000 mon.a (mon.0) 502 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:27:59.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:58 smithi110 bash[22161]: audit 2024-04-14T15:27:57.926668+0000 mon.a (mon.0) 503 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:27:59.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:27:58 smithi110 bash[22161]: audit 2024-04-14T15:27:57.932335+0000 mon.a (mon.0) 504 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:01.209 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:00 smithi047 bash[21449]: cluster 2024-04-14T15:27:59.923634+0000 mgr.a (mgr.14152) 176 : cluster [DBG] pgmap v115: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:28:01.310 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:00 smithi138 bash[22282]: cluster 2024-04-14T15:27:59.923634+0000 mgr.a (mgr.14152) 176 : cluster [DBG] pgmap v115: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:28:01.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:00 smithi110 bash[22161]: cluster 2024-04-14T15:27:59.923634+0000 mgr.a (mgr.14152) 176 : cluster [DBG] pgmap v115: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:28:03.209 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:02 smithi047 bash[21449]: cluster 2024-04-14T15:28:01.924110+0000 mgr.a (mgr.14152) 177 : cluster [DBG] pgmap v116: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:28:03.252 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:02 smithi138 bash[22282]: cluster 2024-04-14T15:28:01.924110+0000 mgr.a (mgr.14152) 177 : cluster [DBG] pgmap v116: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:28:03.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:02 smithi110 bash[22161]: cluster 2024-04-14T15:28:01.924110+0000 mgr.a (mgr.14152) 177 : cluster [DBG] pgmap v116: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:28:04.446 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:04 smithi047 bash[21449]: audit 2024-04-14T15:28:03.238381+0000 mon.a (mon.0) 505 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:04.446 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:04 smithi047 bash[21449]: audit 2024-04-14T15:28:03.245136+0000 mon.a (mon.0) 506 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:04.446 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:04 smithi047 bash[21449]: audit 2024-04-14T15:28:03.252544+0000 mon.a (mon.0) 507 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:04.556 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:04 smithi110 bash[22161]: audit 2024-04-14T15:28:03.238381+0000 mon.a (mon.0) 505 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:04.556 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:04 smithi110 bash[22161]: audit 2024-04-14T15:28:03.245136+0000 mon.a (mon.0) 506 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:04.556 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:04 smithi110 bash[22161]: audit 2024-04-14T15:28:03.252544+0000 mon.a (mon.0) 507 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:04.560 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:04 smithi138 bash[22282]: audit 2024-04-14T15:28:03.238381+0000 mon.a (mon.0) 505 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:04.560 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:04 smithi138 bash[22282]: audit 2024-04-14T15:28:03.245136+0000 mon.a (mon.0) 506 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:04.560 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:04 smithi138 bash[22282]: audit 2024-04-14T15:28:03.252544+0000 mon.a (mon.0) 507 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:05.459 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:05 smithi047 bash[21449]: cluster 2024-04-14T15:28:03.924433+0000 mgr.a (mgr.14152) 178 : cluster [DBG] pgmap v117: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:28:05.459 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:05 smithi047 bash[21449]: audit 2024-04-14T15:28:04.452072+0000 mon.a (mon.0) 508 : audit [INF] from='osd.1 [v2:172.21.15.47:6810/3221488786,v1:172.21.15.47:6811/3221488786]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-04-14T15:28:05.560 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:05 smithi138 bash[22282]: cluster 2024-04-14T15:28:03.924433+0000 mgr.a (mgr.14152) 178 : cluster [DBG] pgmap v117: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:28:05.560 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:05 smithi138 bash[22282]: audit 2024-04-14T15:28:04.452072+0000 mon.a (mon.0) 508 : audit [INF] from='osd.1 [v2:172.21.15.47:6810/3221488786,v1:172.21.15.47:6811/3221488786]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-04-14T15:28:05.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:05 smithi110 bash[22161]: cluster 2024-04-14T15:28:03.924433+0000 mgr.a (mgr.14152) 178 : cluster [DBG] pgmap v117: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:28:05.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:05 smithi110 bash[22161]: audit 2024-04-14T15:28:04.452072+0000 mon.a (mon.0) 508 : audit [INF] from='osd.1 [v2:172.21.15.47:6810/3221488786,v1:172.21.15.47:6811/3221488786]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-04-14T15:28:06.560 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:06 smithi110 bash[22161]: audit 2024-04-14T15:28:05.260687+0000 mon.a (mon.0) 509 : audit [INF] from='osd.1 [v2:172.21.15.47:6810/3221488786,v1:172.21.15.47:6811/3221488786]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-04-14T15:28:06.560 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:06 smithi110 bash[22161]: cluster 2024-04-14T15:28:05.265477+0000 mon.a (mon.0) 510 : cluster [DBG] osdmap e11: 2 total, 1 up, 2 in 2024-04-14T15:28:06.560 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:06 smithi110 bash[22161]: audit 2024-04-14T15:28:05.266026+0000 mon.a (mon.0) 511 : audit [INF] from='osd.1 [v2:172.21.15.47:6810/3221488786,v1:172.21.15.47:6811/3221488786]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi047", "root=default"]}]: dispatch 2024-04-14T15:28:06.561 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:06 smithi110 bash[22161]: audit 2024-04-14T15:28:05.266663+0000 mon.a (mon.0) 512 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-14T15:28:06.561 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:06 smithi138 bash[22282]: audit 2024-04-14T15:28:05.260687+0000 mon.a (mon.0) 509 : audit [INF] from='osd.1 [v2:172.21.15.47:6810/3221488786,v1:172.21.15.47:6811/3221488786]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-04-14T15:28:06.561 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:06 smithi138 bash[22282]: cluster 2024-04-14T15:28:05.265477+0000 mon.a (mon.0) 510 : cluster [DBG] osdmap e11: 2 total, 1 up, 2 in 2024-04-14T15:28:06.561 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:06 smithi138 bash[22282]: audit 2024-04-14T15:28:05.266026+0000 mon.a (mon.0) 511 : audit [INF] from='osd.1 [v2:172.21.15.47:6810/3221488786,v1:172.21.15.47:6811/3221488786]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi047", "root=default"]}]: dispatch 2024-04-14T15:28:06.561 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:06 smithi138 bash[22282]: audit 2024-04-14T15:28:05.266663+0000 mon.a (mon.0) 512 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-14T15:28:06.709 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:06 smithi047 bash[21449]: audit 2024-04-14T15:28:05.260687+0000 mon.a (mon.0) 509 : audit [INF] from='osd.1 [v2:172.21.15.47:6810/3221488786,v1:172.21.15.47:6811/3221488786]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-04-14T15:28:06.709 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:06 smithi047 bash[21449]: cluster 2024-04-14T15:28:05.265477+0000 mon.a (mon.0) 510 : cluster [DBG] osdmap e11: 2 total, 1 up, 2 in 2024-04-14T15:28:06.709 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:06 smithi047 bash[21449]: audit 2024-04-14T15:28:05.266026+0000 mon.a (mon.0) 511 : audit [INF] from='osd.1 [v2:172.21.15.47:6810/3221488786,v1:172.21.15.47:6811/3221488786]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi047", "root=default"]}]: dispatch 2024-04-14T15:28:06.709 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:06 smithi047 bash[21449]: audit 2024-04-14T15:28:05.266663+0000 mon.a (mon.0) 512 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-14T15:28:07.527 INFO:teuthology.orchestra.run.smithi047.stdout:Created osd(s) 1 on host 'smithi047' 2024-04-14T15:28:07.544 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:07 smithi047 bash[21449]: cluster 2024-04-14T15:28:05.924772+0000 mgr.a (mgr.14152) 179 : cluster [DBG] pgmap v119: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:28:07.544 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:07 smithi047 bash[21449]: audit 2024-04-14T15:28:06.266817+0000 mon.a (mon.0) 513 : audit [INF] from='osd.1 [v2:172.21.15.47:6810/3221488786,v1:172.21.15.47:6811/3221488786]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi047", "root=default"]}]': finished 2024-04-14T15:28:07.544 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:07 smithi047 bash[21449]: cluster 2024-04-14T15:28:06.270905+0000 mon.a (mon.0) 514 : cluster [DBG] osdmap e12: 2 total, 1 up, 2 in 2024-04-14T15:28:07.544 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:07 smithi047 bash[21449]: audit 2024-04-14T15:28:06.271754+0000 mon.a (mon.0) 515 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-14T15:28:07.544 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:07 smithi047 bash[21449]: audit 2024-04-14T15:28:06.275019+0000 mon.a (mon.0) 516 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-14T15:28:07.560 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:07 smithi138 bash[22282]: cluster 2024-04-14T15:28:05.924772+0000 mgr.a (mgr.14152) 179 : cluster [DBG] pgmap v119: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:28:07.560 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:07 smithi138 bash[22282]: audit 2024-04-14T15:28:06.266817+0000 mon.a (mon.0) 513 : audit [INF] from='osd.1 [v2:172.21.15.47:6810/3221488786,v1:172.21.15.47:6811/3221488786]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi047", "root=default"]}]': finished 2024-04-14T15:28:07.560 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:07 smithi138 bash[22282]: cluster 2024-04-14T15:28:06.270905+0000 mon.a (mon.0) 514 : cluster [DBG] osdmap e12: 2 total, 1 up, 2 in 2024-04-14T15:28:07.561 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:07 smithi138 bash[22282]: audit 2024-04-14T15:28:06.271754+0000 mon.a (mon.0) 515 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-14T15:28:07.561 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:07 smithi138 bash[22282]: audit 2024-04-14T15:28:06.275019+0000 mon.a (mon.0) 516 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-14T15:28:07.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:07 smithi110 bash[22161]: cluster 2024-04-14T15:28:05.924772+0000 mgr.a (mgr.14152) 179 : cluster [DBG] pgmap v119: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:28:07.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:07 smithi110 bash[22161]: audit 2024-04-14T15:28:06.266817+0000 mon.a (mon.0) 513 : audit [INF] from='osd.1 [v2:172.21.15.47:6810/3221488786,v1:172.21.15.47:6811/3221488786]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi047", "root=default"]}]': finished 2024-04-14T15:28:07.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:07 smithi110 bash[22161]: cluster 2024-04-14T15:28:06.270905+0000 mon.a (mon.0) 514 : cluster [DBG] osdmap e12: 2 total, 1 up, 2 in 2024-04-14T15:28:07.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:07 smithi110 bash[22161]: audit 2024-04-14T15:28:06.271754+0000 mon.a (mon.0) 515 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-14T15:28:07.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:07 smithi110 bash[22161]: audit 2024-04-14T15:28:06.275019+0000 mon.a (mon.0) 516 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-14T15:28:08.561 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:08 smithi138 bash[22282]: cluster 2024-04-14T15:28:05.487442+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-04-14T15:28:08.561 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:08 smithi138 bash[22282]: cluster 2024-04-14T15:28:05.487550+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-04-14T15:28:08.561 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:08 smithi138 bash[22282]: cluster 2024-04-14T15:28:07.274461+0000 mon.a (mon.0) 517 : cluster [INF] osd.1 [v2:172.21.15.47:6810/3221488786,v1:172.21.15.47:6811/3221488786] boot 2024-04-14T15:28:08.561 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:08 smithi138 bash[22282]: cluster 2024-04-14T15:28:07.274539+0000 mon.a (mon.0) 518 : cluster [DBG] osdmap e13: 2 total, 2 up, 2 in 2024-04-14T15:28:08.561 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:08 smithi138 bash[22282]: audit 2024-04-14T15:28:07.275388+0000 mon.a (mon.0) 519 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-14T15:28:08.561 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:08 smithi138 bash[22282]: audit 2024-04-14T15:28:07.475218+0000 mon.a (mon.0) 520 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:08.561 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:08 smithi138 bash[22282]: audit 2024-04-14T15:28:07.480768+0000 mon.a (mon.0) 521 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:08.561 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:08 smithi138 bash[22282]: audit 2024-04-14T15:28:07.501864+0000 mon.a (mon.0) 522 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:28:08.561 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:08 smithi138 bash[22282]: audit 2024-04-14T15:28:07.505572+0000 mon.a (mon.0) 523 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-04-14T15:28:08.561 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:08 smithi138 bash[22282]: audit 2024-04-14T15:28:07.506737+0000 mon.a (mon.0) 524 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-04-14T15:28:08.562 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:08 smithi138 bash[22282]: cephadm 2024-04-14T15:28:07.507562+0000 mgr.a (mgr.14152) 180 : cephadm [INF] Adjusting osd_memory_target on smithi047 to 8122M 2024-04-14T15:28:08.562 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:08 smithi138 bash[22282]: audit 2024-04-14T15:28:07.512322+0000 mon.a (mon.0) 525 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:08.562 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:08 smithi138 bash[22282]: audit 2024-04-14T15:28:07.514866+0000 mon.a (mon.0) 526 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:28:08.562 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:08 smithi138 bash[22282]: audit 2024-04-14T15:28:07.515792+0000 mon.a (mon.0) 527 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:28:08.562 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:08 smithi138 bash[22282]: audit 2024-04-14T15:28:07.521737+0000 mon.a (mon.0) 528 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:08.641 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:08 smithi047 bash[21449]: cluster 2024-04-14T15:28:05.487442+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-04-14T15:28:08.641 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:08 smithi047 bash[21449]: cluster 2024-04-14T15:28:05.487550+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-04-14T15:28:08.641 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:08 smithi047 bash[21449]: cluster 2024-04-14T15:28:07.274461+0000 mon.a (mon.0) 517 : cluster [INF] osd.1 [v2:172.21.15.47:6810/3221488786,v1:172.21.15.47:6811/3221488786] boot 2024-04-14T15:28:08.641 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:08 smithi047 bash[21449]: cluster 2024-04-14T15:28:07.274539+0000 mon.a (mon.0) 518 : cluster [DBG] osdmap e13: 2 total, 2 up, 2 in 2024-04-14T15:28:08.641 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:08 smithi047 bash[21449]: audit 2024-04-14T15:28:07.275388+0000 mon.a (mon.0) 519 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-14T15:28:08.641 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:08 smithi047 bash[21449]: audit 2024-04-14T15:28:07.475218+0000 mon.a (mon.0) 520 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:08.641 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:08 smithi047 bash[21449]: audit 2024-04-14T15:28:07.480768+0000 mon.a (mon.0) 521 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:08.641 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:08 smithi047 bash[21449]: audit 2024-04-14T15:28:07.501864+0000 mon.a (mon.0) 522 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:28:08.642 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:08 smithi047 bash[21449]: audit 2024-04-14T15:28:07.505572+0000 mon.a (mon.0) 523 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-04-14T15:28:08.642 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:08 smithi047 bash[21449]: audit 2024-04-14T15:28:07.506737+0000 mon.a (mon.0) 524 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-04-14T15:28:08.642 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:08 smithi047 bash[21449]: cephadm 2024-04-14T15:28:07.507562+0000 mgr.a (mgr.14152) 180 : cephadm [INF] Adjusting osd_memory_target on smithi047 to 8122M 2024-04-14T15:28:08.642 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:08 smithi047 bash[21449]: audit 2024-04-14T15:28:07.512322+0000 mon.a (mon.0) 525 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:08.642 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:08 smithi047 bash[21449]: audit 2024-04-14T15:28:07.514866+0000 mon.a (mon.0) 526 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:28:08.642 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:08 smithi047 bash[21449]: audit 2024-04-14T15:28:07.515792+0000 mon.a (mon.0) 527 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:28:08.642 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:08 smithi047 bash[21449]: audit 2024-04-14T15:28:07.521737+0000 mon.a (mon.0) 528 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:08.644 DEBUG:teuthology.orchestra.run.smithi047:osd.1> sudo journalctl -f -n 0 -u ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@osd.1.service 2024-04-14T15:28:08.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:08 smithi110 bash[22161]: cluster 2024-04-14T15:28:05.487442+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-04-14T15:28:08.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:08 smithi110 bash[22161]: cluster 2024-04-14T15:28:05.487550+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-04-14T15:28:08.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:08 smithi110 bash[22161]: cluster 2024-04-14T15:28:07.274461+0000 mon.a (mon.0) 517 : cluster [INF] osd.1 [v2:172.21.15.47:6810/3221488786,v1:172.21.15.47:6811/3221488786] boot 2024-04-14T15:28:08.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:08 smithi110 bash[22161]: cluster 2024-04-14T15:28:07.274539+0000 mon.a (mon.0) 518 : cluster [DBG] osdmap e13: 2 total, 2 up, 2 in 2024-04-14T15:28:08.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:08 smithi110 bash[22161]: audit 2024-04-14T15:28:07.275388+0000 mon.a (mon.0) 519 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-14T15:28:08.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:08 smithi110 bash[22161]: audit 2024-04-14T15:28:07.475218+0000 mon.a (mon.0) 520 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:08.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:08 smithi110 bash[22161]: audit 2024-04-14T15:28:07.480768+0000 mon.a (mon.0) 521 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:08.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:08 smithi110 bash[22161]: audit 2024-04-14T15:28:07.501864+0000 mon.a (mon.0) 522 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:28:08.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:08 smithi110 bash[22161]: audit 2024-04-14T15:28:07.505572+0000 mon.a (mon.0) 523 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-04-14T15:28:08.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:08 smithi110 bash[22161]: audit 2024-04-14T15:28:07.506737+0000 mon.a (mon.0) 524 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-04-14T15:28:08.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:08 smithi110 bash[22161]: cephadm 2024-04-14T15:28:07.507562+0000 mgr.a (mgr.14152) 180 : cephadm [INF] Adjusting osd_memory_target on smithi047 to 8122M 2024-04-14T15:28:08.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:08 smithi110 bash[22161]: audit 2024-04-14T15:28:07.512322+0000 mon.a (mon.0) 525 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:08.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:08 smithi110 bash[22161]: audit 2024-04-14T15:28:07.514866+0000 mon.a (mon.0) 526 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:28:08.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:08 smithi110 bash[22161]: audit 2024-04-14T15:28:07.515792+0000 mon.a (mon.0) 527 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:28:08.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:08 smithi110 bash[22161]: audit 2024-04-14T15:28:07.521737+0000 mon.a (mon.0) 528 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:08.647 INFO:tasks.cephadm:Deploying osd.2 on smithi110 with /dev/vg_nvme/lv_4... 2024-04-14T15:28:08.648 DEBUG:teuthology.orchestra.run.smithi110:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_4 2024-04-14T15:28:09.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:09 smithi110 bash[22161]: cluster 2024-04-14T15:28:07.925168+0000 mgr.a (mgr.14152) 181 : cluster [DBG] pgmap v122: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:28:09.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:09 smithi110 bash[22161]: cluster 2024-04-14T15:28:08.283912+0000 mon.a (mon.0) 529 : cluster [DBG] osdmap e14: 2 total, 2 up, 2 in 2024-04-14T15:28:09.560 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:09 smithi138 bash[22282]: cluster 2024-04-14T15:28:07.925168+0000 mgr.a (mgr.14152) 181 : cluster [DBG] pgmap v122: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:28:09.560 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:09 smithi138 bash[22282]: cluster 2024-04-14T15:28:08.283912+0000 mon.a (mon.0) 529 : cluster [DBG] osdmap e14: 2 total, 2 up, 2 in 2024-04-14T15:28:09.709 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:09 smithi047 bash[21449]: cluster 2024-04-14T15:28:07.925168+0000 mgr.a (mgr.14152) 181 : cluster [DBG] pgmap v122: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T15:28:09.709 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:09 smithi047 bash[21449]: cluster 2024-04-14T15:28:08.283912+0000 mon.a (mon.0) 529 : cluster [DBG] osdmap e14: 2 total, 2 up, 2 in 2024-04-14T15:28:11.709 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:11 smithi047 bash[21449]: cluster 2024-04-14T15:28:09.925614+0000 mgr.a (mgr.14152) 182 : cluster [DBG] pgmap v124: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:11.709 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:11 smithi047 bash[21449]: audit 2024-04-14T15:28:10.437483+0000 mon.a (mon.0) 530 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:11.709 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:11 smithi047 bash[21449]: audit 2024-04-14T15:28:10.445387+0000 mon.a (mon.0) 531 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:11.709 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:11 smithi047 bash[21449]: audit 2024-04-14T15:28:10.455622+0000 mon.a (mon.0) 532 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:11.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:11 smithi138 bash[22282]: cluster 2024-04-14T15:28:09.925614+0000 mgr.a (mgr.14152) 182 : cluster [DBG] pgmap v124: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:11.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:11 smithi138 bash[22282]: audit 2024-04-14T15:28:10.437483+0000 mon.a (mon.0) 530 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:11.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:11 smithi138 bash[22282]: audit 2024-04-14T15:28:10.445387+0000 mon.a (mon.0) 531 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:11.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:11 smithi138 bash[22282]: audit 2024-04-14T15:28:10.455622+0000 mon.a (mon.0) 532 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:11.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:11 smithi110 bash[22161]: cluster 2024-04-14T15:28:09.925614+0000 mgr.a (mgr.14152) 182 : cluster [DBG] pgmap v124: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:11.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:11 smithi110 bash[22161]: audit 2024-04-14T15:28:10.437483+0000 mon.a (mon.0) 530 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:11.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:11 smithi110 bash[22161]: audit 2024-04-14T15:28:10.445387+0000 mon.a (mon.0) 531 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:11.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:11 smithi110 bash[22161]: audit 2024-04-14T15:28:10.455622+0000 mon.a (mon.0) 532 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:13.041 INFO:teuthology.orchestra.run.smithi110.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.b/config 2024-04-14T15:28:13.709 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:13 smithi047 bash[21449]: cluster 2024-04-14T15:28:11.926057+0000 mgr.a (mgr.14152) 183 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:13.719 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:13 smithi110 bash[22161]: cluster 2024-04-14T15:28:11.926057+0000 mgr.a (mgr.14152) 183 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:13.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:13 smithi138 bash[22282]: cluster 2024-04-14T15:28:11.926057+0000 mgr.a (mgr.14152) 183 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:15.652 INFO:teuthology.orchestra.run.smithi110.stderr:--> Zapping: /dev/vg_nvme/lv_4 2024-04-14T15:28:15.652 INFO:teuthology.orchestra.run.smithi110.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_4 bs=1M count=10 conv=fsync 2024-04-14T15:28:15.652 INFO:teuthology.orchestra.run.smithi110.stderr: stderr: 10+0 records in 2024-04-14T15:28:15.652 INFO:teuthology.orchestra.run.smithi110.stderr:10+0 records out 2024-04-14T15:28:15.652 INFO:teuthology.orchestra.run.smithi110.stderr:10485760 bytes (10 MB, 10 MiB) copied, 0.00995436 s, 1.1 GB/s 2024-04-14T15:28:15.652 INFO:teuthology.orchestra.run.smithi110.stderr:--> Zapping successful for: 2024-04-14T15:28:15.698 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:15 smithi110 bash[22161]: cluster 2024-04-14T15:28:13.926530+0000 mgr.a (mgr.14152) 184 : cluster [DBG] pgmap v126: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:15.699 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:15 smithi110 bash[22161]: audit 2024-04-14T15:28:14.842065+0000 mon.a (mon.0) 533 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:15.699 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:15 smithi110 bash[22161]: audit 2024-04-14T15:28:14.848451+0000 mon.a (mon.0) 534 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:15.699 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:15 smithi110 bash[22161]: audit 2024-04-14T15:28:14.856664+0000 mon.a (mon.0) 535 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:15.699 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:15 smithi110 bash[22161]: audit 2024-04-14T15:28:14.857490+0000 mon.a (mon.0) 536 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:28:15.699 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:15 smithi110 bash[22161]: audit 2024-04-14T15:28:14.862480+0000 mon.a (mon.0) 537 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:28:15.699 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:15 smithi110 bash[22161]: audit 2024-04-14T15:28:14.864120+0000 mon.a (mon.0) 538 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:28:15.699 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:15 smithi110 bash[22161]: audit 2024-04-14T15:28:14.874849+0000 mon.a (mon.0) 539 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:15.709 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:15 smithi047 bash[21449]: cluster 2024-04-14T15:28:13.926530+0000 mgr.a (mgr.14152) 184 : cluster [DBG] pgmap v126: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:15.709 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:15 smithi047 bash[21449]: audit 2024-04-14T15:28:14.842065+0000 mon.a (mon.0) 533 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:15.709 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:15 smithi047 bash[21449]: audit 2024-04-14T15:28:14.848451+0000 mon.a (mon.0) 534 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:15.709 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:15 smithi047 bash[21449]: audit 2024-04-14T15:28:14.856664+0000 mon.a (mon.0) 535 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:15.709 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:15 smithi047 bash[21449]: audit 2024-04-14T15:28:14.857490+0000 mon.a (mon.0) 536 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:28:15.709 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:15 smithi047 bash[21449]: audit 2024-04-14T15:28:14.862480+0000 mon.a (mon.0) 537 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:28:15.710 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:15 smithi047 bash[21449]: audit 2024-04-14T15:28:14.864120+0000 mon.a (mon.0) 538 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:28:15.710 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:15 smithi047 bash[21449]: audit 2024-04-14T15:28:14.874849+0000 mon.a (mon.0) 539 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:15.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:15 smithi138 bash[22282]: cluster 2024-04-14T15:28:13.926530+0000 mgr.a (mgr.14152) 184 : cluster [DBG] pgmap v126: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:15.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:15 smithi138 bash[22282]: audit 2024-04-14T15:28:14.842065+0000 mon.a (mon.0) 533 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:15.812 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:15 smithi138 bash[22282]: audit 2024-04-14T15:28:14.848451+0000 mon.a (mon.0) 534 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:15.812 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:15 smithi138 bash[22282]: audit 2024-04-14T15:28:14.856664+0000 mon.a (mon.0) 535 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:15.812 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:15 smithi138 bash[22282]: audit 2024-04-14T15:28:14.857490+0000 mon.a (mon.0) 536 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:28:15.812 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:15 smithi138 bash[22282]: audit 2024-04-14T15:28:14.862480+0000 mon.a (mon.0) 537 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:28:15.812 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:15 smithi138 bash[22282]: audit 2024-04-14T15:28:14.864120+0000 mon.a (mon.0) 538 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:28:15.812 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:15 smithi138 bash[22282]: audit 2024-04-14T15:28:14.874849+0000 mon.a (mon.0) 539 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:16.294 DEBUG:teuthology.orchestra.run.smithi110:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph orch daemon add osd smithi110:vg_nvme/lv_4 2024-04-14T15:28:16.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:16 smithi110 bash[22161]: cluster 2024-04-14T15:28:14.867845+0000 mgr.a (mgr.14152) 185 : cluster [DBG] pgmap v127: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:16.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:16 smithi110 bash[22161]: cluster 2024-04-14T15:28:15.853448+0000 mon.a (mon.0) 540 : cluster [WRN] Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-04-14T15:28:16.709 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:16 smithi047 bash[21449]: cluster 2024-04-14T15:28:14.867845+0000 mgr.a (mgr.14152) 185 : cluster [DBG] pgmap v127: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:16.709 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:16 smithi047 bash[21449]: cluster 2024-04-14T15:28:15.853448+0000 mon.a (mon.0) 540 : cluster [WRN] Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-04-14T15:28:16.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:16 smithi138 bash[22282]: cluster 2024-04-14T15:28:14.867845+0000 mgr.a (mgr.14152) 185 : cluster [DBG] pgmap v127: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:16.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:16 smithi138 bash[22282]: cluster 2024-04-14T15:28:15.853448+0000 mon.a (mon.0) 540 : cluster [WRN] Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-04-14T15:28:17.709 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:17 smithi047 bash[21449]: audit 2024-04-14T15:28:16.457682+0000 mon.a (mon.0) 541 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:17.709 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:17 smithi047 bash[21449]: audit 2024-04-14T15:28:16.462653+0000 mon.a (mon.0) 542 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:17.709 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:17 smithi047 bash[21449]: audit 2024-04-14T15:28:16.467822+0000 mon.a (mon.0) 543 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:17.709 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:17 smithi047 bash[21449]: audit 2024-04-14T15:28:16.497401+0000 mon.a (mon.0) 544 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:28:17.709 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:17 smithi047 bash[21449]: audit 2024-04-14T15:28:16.501808+0000 mon.a (mon.0) 545 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:28:17.709 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:17 smithi047 bash[21449]: audit 2024-04-14T15:28:16.503200+0000 mon.a (mon.0) 546 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:28:17.710 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:17 smithi047 bash[21449]: cluster 2024-04-14T15:28:16.506227+0000 mgr.a (mgr.14152) 186 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:17.710 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:17 smithi047 bash[21449]: audit 2024-04-14T15:28:16.512473+0000 mon.a (mon.0) 547 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:17.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:17 smithi138 bash[22282]: audit 2024-04-14T15:28:16.457682+0000 mon.a (mon.0) 541 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:17.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:17 smithi138 bash[22282]: audit 2024-04-14T15:28:16.462653+0000 mon.a (mon.0) 542 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:17.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:17 smithi138 bash[22282]: audit 2024-04-14T15:28:16.467822+0000 mon.a (mon.0) 543 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:17.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:17 smithi138 bash[22282]: audit 2024-04-14T15:28:16.497401+0000 mon.a (mon.0) 544 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:28:17.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:17 smithi138 bash[22282]: audit 2024-04-14T15:28:16.501808+0000 mon.a (mon.0) 545 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:28:17.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:17 smithi138 bash[22282]: audit 2024-04-14T15:28:16.503200+0000 mon.a (mon.0) 546 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:28:17.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:17 smithi138 bash[22282]: cluster 2024-04-14T15:28:16.506227+0000 mgr.a (mgr.14152) 186 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:17.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:17 smithi138 bash[22282]: audit 2024-04-14T15:28:16.512473+0000 mon.a (mon.0) 547 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:17.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:17 smithi110 bash[22161]: audit 2024-04-14T15:28:16.457682+0000 mon.a (mon.0) 541 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:17.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:17 smithi110 bash[22161]: audit 2024-04-14T15:28:16.462653+0000 mon.a (mon.0) 542 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:17.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:17 smithi110 bash[22161]: audit 2024-04-14T15:28:16.467822+0000 mon.a (mon.0) 543 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:17.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:17 smithi110 bash[22161]: audit 2024-04-14T15:28:16.497401+0000 mon.a (mon.0) 544 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:28:17.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:17 smithi110 bash[22161]: audit 2024-04-14T15:28:16.501808+0000 mon.a (mon.0) 545 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:28:17.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:17 smithi110 bash[22161]: audit 2024-04-14T15:28:16.503200+0000 mon.a (mon.0) 546 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:28:17.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:17 smithi110 bash[22161]: cluster 2024-04-14T15:28:16.506227+0000 mgr.a (mgr.14152) 186 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:17.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:17 smithi110 bash[22161]: audit 2024-04-14T15:28:16.512473+0000 mon.a (mon.0) 547 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:18.710 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:18 smithi047 bash[21449]: cluster 2024-04-14T15:28:17.466137+0000 mon.a (mon.0) 548 : cluster [INF] Health check cleared: CEPHADM_STRAY_DAEMON (was: 1 stray daemon(s) not managed by cephadm) 2024-04-14T15:28:18.710 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:18 smithi047 bash[21449]: cluster 2024-04-14T15:28:17.466196+0000 mon.a (mon.0) 549 : cluster [INF] Cluster is now healthy 2024-04-14T15:28:18.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:18 smithi138 bash[22282]: cluster 2024-04-14T15:28:17.466137+0000 mon.a (mon.0) 548 : cluster [INF] Health check cleared: CEPHADM_STRAY_DAEMON (was: 1 stray daemon(s) not managed by cephadm) 2024-04-14T15:28:18.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:18 smithi138 bash[22282]: cluster 2024-04-14T15:28:17.466196+0000 mon.a (mon.0) 549 : cluster [INF] Cluster is now healthy 2024-04-14T15:28:18.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:18 smithi110 bash[22161]: cluster 2024-04-14T15:28:17.466137+0000 mon.a (mon.0) 548 : cluster [INF] Health check cleared: CEPHADM_STRAY_DAEMON (was: 1 stray daemon(s) not managed by cephadm) 2024-04-14T15:28:18.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:18 smithi110 bash[22161]: cluster 2024-04-14T15:28:17.466196+0000 mon.a (mon.0) 549 : cluster [INF] Cluster is now healthy 2024-04-14T15:28:19.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:19 smithi138 bash[22282]: cluster 2024-04-14T15:28:18.506646+0000 mgr.a (mgr.14152) 187 : cluster [DBG] pgmap v129: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:19.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:19 smithi110 bash[22161]: cluster 2024-04-14T15:28:18.506646+0000 mgr.a (mgr.14152) 187 : cluster [DBG] pgmap v129: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:19.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:19 smithi047 bash[21449]: cluster 2024-04-14T15:28:18.506646+0000 mgr.a (mgr.14152) 187 : cluster [DBG] pgmap v129: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:20.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:20 smithi138 bash[22282]: cluster 2024-04-14T15:28:20.507053+0000 mgr.a (mgr.14152) 188 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:20.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:20 smithi110 bash[22161]: cluster 2024-04-14T15:28:20.507053+0000 mgr.a (mgr.14152) 188 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:20.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:20 smithi047 bash[21449]: cluster 2024-04-14T15:28:20.507053+0000 mgr.a (mgr.14152) 188 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:21.007 INFO:teuthology.orchestra.run.smithi110.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.b/config 2024-04-14T15:28:22.847 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:22 smithi110 bash[22161]: cluster 2024-04-14T15:28:22.507562+0000 mgr.a (mgr.14152) 189 : cluster [DBG] pgmap v131: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:22.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:22 smithi047 bash[21449]: cluster 2024-04-14T15:28:22.507562+0000 mgr.a (mgr.14152) 189 : cluster [DBG] pgmap v131: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:23.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:22 smithi138 bash[22282]: cluster 2024-04-14T15:28:22.507562+0000 mgr.a (mgr.14152) 189 : cluster [DBG] pgmap v131: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:23.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:23 smithi138 bash[22282]: audit 2024-04-14T15:28:23.211846+0000 mgr.a (mgr.14152) 190 : audit [DBG] from='client.24146 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi110:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:28:23.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:23 smithi138 bash[22282]: audit 2024-04-14T15:28:23.219519+0000 mon.a (mon.0) 550 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-14T15:28:23.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:23 smithi138 bash[22282]: audit 2024-04-14T15:28:23.226322+0000 mon.a (mon.0) 551 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-14T15:28:23.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:23 smithi138 bash[22282]: audit 2024-04-14T15:28:23.228293+0000 mon.a (mon.0) 552 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:28:23.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:23 smithi138 bash[22282]: audit 2024-04-14T15:28:23.461033+0000 mon.a (mon.0) 553 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:23.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:23 smithi138 bash[22282]: audit 2024-04-14T15:28:23.469194+0000 mon.a (mon.0) 554 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:23.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:23 smithi138 bash[22282]: audit 2024-04-14T15:28:23.479235+0000 mon.a (mon.0) 555 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:23.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:23 smithi110 bash[22161]: audit 2024-04-14T15:28:23.211846+0000 mgr.a (mgr.14152) 190 : audit [DBG] from='client.24146 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi110:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:28:23.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:23 smithi110 bash[22161]: audit 2024-04-14T15:28:23.219519+0000 mon.a (mon.0) 550 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-14T15:28:23.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:23 smithi110 bash[22161]: audit 2024-04-14T15:28:23.226322+0000 mon.a (mon.0) 551 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-14T15:28:23.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:23 smithi110 bash[22161]: audit 2024-04-14T15:28:23.228293+0000 mon.a (mon.0) 552 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:28:23.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:23 smithi110 bash[22161]: audit 2024-04-14T15:28:23.461033+0000 mon.a (mon.0) 553 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:23.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:23 smithi110 bash[22161]: audit 2024-04-14T15:28:23.469194+0000 mon.a (mon.0) 554 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:23.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:23 smithi110 bash[22161]: audit 2024-04-14T15:28:23.479235+0000 mon.a (mon.0) 555 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:23.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:23 smithi047 bash[21449]: audit 2024-04-14T15:28:23.211846+0000 mgr.a (mgr.14152) 190 : audit [DBG] from='client.24146 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi110:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:28:23.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:23 smithi047 bash[21449]: audit 2024-04-14T15:28:23.219519+0000 mon.a (mon.0) 550 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-14T15:28:23.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:23 smithi047 bash[21449]: audit 2024-04-14T15:28:23.226322+0000 mon.a (mon.0) 551 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-14T15:28:23.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:23 smithi047 bash[21449]: audit 2024-04-14T15:28:23.228293+0000 mon.a (mon.0) 552 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:28:23.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:23 smithi047 bash[21449]: audit 2024-04-14T15:28:23.461033+0000 mon.a (mon.0) 553 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:23.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:23 smithi047 bash[21449]: audit 2024-04-14T15:28:23.469194+0000 mon.a (mon.0) 554 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:23.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:23 smithi047 bash[21449]: audit 2024-04-14T15:28:23.479235+0000 mon.a (mon.0) 555 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:24.871 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:24 smithi110 bash[22161]: cluster 2024-04-14T15:28:24.508084+0000 mgr.a (mgr.14152) 191 : cluster [DBG] pgmap v132: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:24.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:24 smithi047 bash[21449]: cluster 2024-04-14T15:28:24.508084+0000 mgr.a (mgr.14152) 191 : cluster [DBG] pgmap v132: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:25.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:24 smithi138 bash[22282]: cluster 2024-04-14T15:28:24.508084+0000 mgr.a (mgr.14152) 191 : cluster [DBG] pgmap v132: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:26.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:26 smithi110 bash[22161]: cluster 2024-04-14T15:28:26.508409+0000 mgr.a (mgr.14152) 192 : cluster [DBG] pgmap v133: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:26.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:26 smithi047 bash[21449]: cluster 2024-04-14T15:28:26.508409+0000 mgr.a (mgr.14152) 192 : cluster [DBG] pgmap v133: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:27.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:26 smithi138 bash[22282]: cluster 2024-04-14T15:28:26.508409+0000 mgr.a (mgr.14152) 192 : cluster [DBG] pgmap v133: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:28.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:28 smithi110 bash[22161]: cluster 2024-04-14T15:28:28.508884+0000 mgr.a (mgr.14152) 193 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:28.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:28 smithi047 bash[21449]: cluster 2024-04-14T15:28:28.508884+0000 mgr.a (mgr.14152) 193 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:29.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:28 smithi138 bash[22282]: cluster 2024-04-14T15:28:28.508884+0000 mgr.a (mgr.14152) 193 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:30.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:30 smithi110 bash[22161]: cluster 2024-04-14T15:28:30.509235+0000 mgr.a (mgr.14152) 194 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:30.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:30 smithi110 bash[22161]: audit 2024-04-14T15:28:30.594308+0000 mon.a (mon.0) 556 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:30.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:30 smithi047 bash[21449]: cluster 2024-04-14T15:28:30.509235+0000 mgr.a (mgr.14152) 194 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:30.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:30 smithi047 bash[21449]: audit 2024-04-14T15:28:30.594308+0000 mon.a (mon.0) 556 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:31.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:30 smithi138 bash[22282]: cluster 2024-04-14T15:28:30.509235+0000 mgr.a (mgr.14152) 194 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:31.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:30 smithi138 bash[22282]: audit 2024-04-14T15:28:30.594308+0000 mon.a (mon.0) 556 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:31.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:31 smithi110 bash[22161]: audit 2024-04-14T15:28:30.602964+0000 mon.a (mon.0) 557 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:31.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:31 smithi110 bash[22161]: audit 2024-04-14T15:28:30.616205+0000 mon.a (mon.0) 558 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:31.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:31 smithi110 bash[22161]: audit 2024-04-14T15:28:31.019723+0000 mon.b (mon.2) 7 : audit [INF] from='client.? 172.21.15.110:0/1558085278' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "8851bf2c-76e0-41fc-b5b8-59e071666826"}]: dispatch 2024-04-14T15:28:31.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:31 smithi110 bash[22161]: audit 2024-04-14T15:28:31.025571+0000 mon.a (mon.0) 559 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "8851bf2c-76e0-41fc-b5b8-59e071666826"}]: dispatch 2024-04-14T15:28:31.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:31 smithi110 bash[22161]: audit 2024-04-14T15:28:31.028853+0000 mon.a (mon.0) 560 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "8851bf2c-76e0-41fc-b5b8-59e071666826"}]': finished 2024-04-14T15:28:31.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:31 smithi110 bash[22161]: cluster 2024-04-14T15:28:31.033962+0000 mon.a (mon.0) 561 : cluster [DBG] osdmap e15: 3 total, 2 up, 3 in 2024-04-14T15:28:31.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:31 smithi110 bash[22161]: audit 2024-04-14T15:28:31.034627+0000 mon.a (mon.0) 562 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-14T15:28:31.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:31 smithi047 bash[21449]: audit 2024-04-14T15:28:30.602964+0000 mon.a (mon.0) 557 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:31.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:31 smithi047 bash[21449]: audit 2024-04-14T15:28:30.616205+0000 mon.a (mon.0) 558 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:31.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:31 smithi047 bash[21449]: audit 2024-04-14T15:28:31.019723+0000 mon.b (mon.2) 7 : audit [INF] from='client.? 172.21.15.110:0/1558085278' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "8851bf2c-76e0-41fc-b5b8-59e071666826"}]: dispatch 2024-04-14T15:28:31.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:31 smithi047 bash[21449]: audit 2024-04-14T15:28:31.025571+0000 mon.a (mon.0) 559 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "8851bf2c-76e0-41fc-b5b8-59e071666826"}]: dispatch 2024-04-14T15:28:31.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:31 smithi047 bash[21449]: audit 2024-04-14T15:28:31.028853+0000 mon.a (mon.0) 560 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "8851bf2c-76e0-41fc-b5b8-59e071666826"}]': finished 2024-04-14T15:28:31.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:31 smithi047 bash[21449]: cluster 2024-04-14T15:28:31.033962+0000 mon.a (mon.0) 561 : cluster [DBG] osdmap e15: 3 total, 2 up, 3 in 2024-04-14T15:28:31.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:31 smithi047 bash[21449]: audit 2024-04-14T15:28:31.034627+0000 mon.a (mon.0) 562 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-14T15:28:32.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:31 smithi138 bash[22282]: audit 2024-04-14T15:28:30.602964+0000 mon.a (mon.0) 557 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:32.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:31 smithi138 bash[22282]: audit 2024-04-14T15:28:30.616205+0000 mon.a (mon.0) 558 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:32.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:31 smithi138 bash[22282]: audit 2024-04-14T15:28:31.019723+0000 mon.b (mon.2) 7 : audit [INF] from='client.? 172.21.15.110:0/1558085278' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "8851bf2c-76e0-41fc-b5b8-59e071666826"}]: dispatch 2024-04-14T15:28:32.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:31 smithi138 bash[22282]: audit 2024-04-14T15:28:31.025571+0000 mon.a (mon.0) 559 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "8851bf2c-76e0-41fc-b5b8-59e071666826"}]: dispatch 2024-04-14T15:28:32.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:31 smithi138 bash[22282]: audit 2024-04-14T15:28:31.028853+0000 mon.a (mon.0) 560 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "8851bf2c-76e0-41fc-b5b8-59e071666826"}]': finished 2024-04-14T15:28:32.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:31 smithi138 bash[22282]: cluster 2024-04-14T15:28:31.033962+0000 mon.a (mon.0) 561 : cluster [DBG] osdmap e15: 3 total, 2 up, 3 in 2024-04-14T15:28:32.061 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:31 smithi138 bash[22282]: audit 2024-04-14T15:28:31.034627+0000 mon.a (mon.0) 562 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-14T15:28:32.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:32 smithi110 bash[22161]: audit 2024-04-14T15:28:31.666602+0000 mon.b (mon.2) 8 : audit [DBG] from='client.? 172.21.15.110:0/806558551' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-14T15:28:32.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:32 smithi110 bash[22161]: cluster 2024-04-14T15:28:32.509675+0000 mgr.a (mgr.14152) 195 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:32.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:32 smithi047 bash[21449]: audit 2024-04-14T15:28:31.666602+0000 mon.b (mon.2) 8 : audit [DBG] from='client.? 172.21.15.110:0/806558551' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-14T15:28:32.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:32 smithi047 bash[21449]: cluster 2024-04-14T15:28:32.509675+0000 mgr.a (mgr.14152) 195 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:33.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:32 smithi138 bash[22282]: audit 2024-04-14T15:28:31.666602+0000 mon.b (mon.2) 8 : audit [DBG] from='client.? 172.21.15.110:0/806558551' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-14T15:28:33.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:32 smithi138 bash[22282]: cluster 2024-04-14T15:28:32.509675+0000 mgr.a (mgr.14152) 195 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:34.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:34 smithi138 bash[22282]: cluster 2024-04-14T15:28:34.510260+0000 mgr.a (mgr.14152) 196 : cluster [DBG] pgmap v138: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:34.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:34 smithi110 bash[22161]: cluster 2024-04-14T15:28:34.510260+0000 mgr.a (mgr.14152) 196 : cluster [DBG] pgmap v138: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:34.945 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:34 smithi047 bash[21449]: cluster 2024-04-14T15:28:34.510260+0000 mgr.a (mgr.14152) 196 : cluster [DBG] pgmap v138: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:36.310 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:36 smithi138 bash[22282]: audit 2024-04-14T15:28:35.117181+0000 mon.a (mon.0) 563 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:36.310 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:36 smithi138 bash[22282]: audit 2024-04-14T15:28:35.126161+0000 mon.a (mon.0) 564 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:36.310 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:36 smithi138 bash[22282]: audit 2024-04-14T15:28:35.136163+0000 mon.a (mon.0) 565 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:36.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:36 smithi110 bash[22161]: audit 2024-04-14T15:28:35.117181+0000 mon.a (mon.0) 563 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:36.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:36 smithi110 bash[22161]: audit 2024-04-14T15:28:35.126161+0000 mon.a (mon.0) 564 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:36.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:36 smithi110 bash[22161]: audit 2024-04-14T15:28:35.136163+0000 mon.a (mon.0) 565 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:36.458 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:36 smithi047 bash[21449]: audit 2024-04-14T15:28:35.117181+0000 mon.a (mon.0) 563 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:36.459 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:36 smithi047 bash[21449]: audit 2024-04-14T15:28:35.126161+0000 mon.a (mon.0) 564 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:36.459 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:36 smithi047 bash[21449]: audit 2024-04-14T15:28:35.136163+0000 mon.a (mon.0) 565 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:37.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:37 smithi110 bash[22161]: cluster 2024-04-14T15:28:36.510771+0000 mgr.a (mgr.14152) 197 : cluster [DBG] pgmap v139: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:37.458 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:37 smithi047 bash[21449]: cluster 2024-04-14T15:28:36.510771+0000 mgr.a (mgr.14152) 197 : cluster [DBG] pgmap v139: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:37.506 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:37 smithi138 bash[22282]: cluster 2024-04-14T15:28:36.510771+0000 mgr.a (mgr.14152) 197 : cluster [DBG] pgmap v139: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:38.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:38 smithi110 bash[22161]: cluster 2024-04-14T15:28:38.511349+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-14T15:28:38.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:38 smithi047 bash[21449]: cluster 2024-04-14T15:28:38.511349+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-14T15:28:39.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:38 smithi138 bash[22282]: cluster 2024-04-14T15:28:38.511349+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-14T15:28:40.809 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:40 smithi110 bash[22161]: cluster 2024-04-14T15:28:40.511966+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-14T15:28:40.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:40 smithi047 bash[21449]: cluster 2024-04-14T15:28:40.511966+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-14T15:28:40.992 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:40 smithi138 bash[22282]: cluster 2024-04-14T15:28:40.511966+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-14T15:28:42.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:42 smithi110 bash[22161]: cluster 2024-04-14T15:28:42.512496+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-14T15:28:42.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:42 smithi047 bash[21449]: cluster 2024-04-14T15:28:42.512496+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-14T15:28:43.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:42 smithi138 bash[22282]: cluster 2024-04-14T15:28:42.512496+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-14T15:28:43.875 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:43 smithi110 bash[22161]: audit 2024-04-14T15:28:42.725687+0000 mon.a (mon.0) 566 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-04-14T15:28:43.875 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:43 smithi110 bash[22161]: audit 2024-04-14T15:28:42.727455+0000 mon.a (mon.0) 567 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:28:43.875 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:43 smithi110 bash[22161]: cephadm 2024-04-14T15:28:42.729068+0000 mgr.a (mgr.14152) 201 : cephadm [INF] Deploying daemon osd.2 on smithi110 2024-04-14T15:28:43.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:43 smithi047 bash[21449]: audit 2024-04-14T15:28:42.725687+0000 mon.a (mon.0) 566 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-04-14T15:28:43.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:43 smithi047 bash[21449]: audit 2024-04-14T15:28:42.727455+0000 mon.a (mon.0) 567 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:28:43.961 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:43 smithi047 bash[21449]: cephadm 2024-04-14T15:28:42.729068+0000 mgr.a (mgr.14152) 201 : cephadm [INF] Deploying daemon osd.2 on smithi110 2024-04-14T15:28:44.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:43 smithi138 bash[22282]: audit 2024-04-14T15:28:42.725687+0000 mon.a (mon.0) 566 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-04-14T15:28:44.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:43 smithi138 bash[22282]: audit 2024-04-14T15:28:42.727455+0000 mon.a (mon.0) 567 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:28:44.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:43 smithi138 bash[22282]: cephadm 2024-04-14T15:28:42.729068+0000 mgr.a (mgr.14152) 201 : cephadm [INF] Deploying daemon osd.2 on smithi110 2024-04-14T15:28:44.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:44 smithi047 bash[21449]: audit 2024-04-14T15:28:43.686931+0000 mon.a (mon.0) 568 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:44.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:44 smithi047 bash[21449]: audit 2024-04-14T15:28:43.695478+0000 mon.a (mon.0) 569 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:44.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:44 smithi047 bash[21449]: audit 2024-04-14T15:28:43.705892+0000 mon.a (mon.0) 570 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:44.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:44 smithi047 bash[21449]: cluster 2024-04-14T15:28:44.513101+0000 mgr.a (mgr.14152) 202 : cluster [DBG] pgmap v143: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:45.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:44 smithi138 bash[22282]: audit 2024-04-14T15:28:43.686931+0000 mon.a (mon.0) 568 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:45.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:44 smithi138 bash[22282]: audit 2024-04-14T15:28:43.695478+0000 mon.a (mon.0) 569 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:45.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:44 smithi138 bash[22282]: audit 2024-04-14T15:28:43.705892+0000 mon.a (mon.0) 570 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:45.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:44 smithi138 bash[22282]: cluster 2024-04-14T15:28:44.513101+0000 mgr.a (mgr.14152) 202 : cluster [DBG] pgmap v143: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:45.144 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:44 smithi110 bash[22161]: audit 2024-04-14T15:28:43.686931+0000 mon.a (mon.0) 568 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:45.144 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:44 smithi110 bash[22161]: audit 2024-04-14T15:28:43.695478+0000 mon.a (mon.0) 569 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:45.144 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:44 smithi110 bash[22161]: audit 2024-04-14T15:28:43.705892+0000 mon.a (mon.0) 570 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:45.144 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:44 smithi110 bash[22161]: cluster 2024-04-14T15:28:44.513101+0000 mgr.a (mgr.14152) 202 : cluster [DBG] pgmap v143: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:46.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:46 smithi110 bash[22161]: cluster 2024-04-14T15:28:46.513599+0000 mgr.a (mgr.14152) 203 : cluster [DBG] pgmap v144: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:46.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:46 smithi047 bash[21449]: cluster 2024-04-14T15:28:46.513599+0000 mgr.a (mgr.14152) 203 : cluster [DBG] pgmap v144: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:47.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:46 smithi138 bash[22282]: cluster 2024-04-14T15:28:46.513599+0000 mgr.a (mgr.14152) 203 : cluster [DBG] pgmap v144: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:47.304 INFO:journalctl@ceph.mgr.b.smithi110.stdout:Apr 14 15:28:46 smithi110 systemd[1]: /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-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-14T15:28:47.305 INFO:journalctl@ceph.mgr.b.smithi110.stdout:Apr 14 15:28:47 smithi110 systemd[1]: /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-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-14T15:28:47.305 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:46 smithi110 systemd[1]: /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-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-14T15:28:47.305 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:47 smithi110 systemd[1]: /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-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-14T15:28:48.458 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:48 smithi047 bash[21449]: audit 2024-04-14T15:28:47.351760+0000 mon.a (mon.0) 571 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:48.459 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:48 smithi047 bash[21449]: audit 2024-04-14T15:28:47.355951+0000 mon.a (mon.0) 572 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:48.459 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:48 smithi047 bash[21449]: audit 2024-04-14T15:28:47.368561+0000 mon.a (mon.0) 573 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:28:48.459 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:48 smithi047 bash[21449]: audit 2024-04-14T15:28:47.373515+0000 mon.a (mon.0) 574 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:28:48.459 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:48 smithi047 bash[21449]: audit 2024-04-14T15:28:47.375209+0000 mon.a (mon.0) 575 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:28:48.459 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:48 smithi047 bash[21449]: audit 2024-04-14T15:28:47.382364+0000 mon.a (mon.0) 576 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:48.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:48 smithi110 bash[22161]: audit 2024-04-14T15:28:47.351760+0000 mon.a (mon.0) 571 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:48.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:48 smithi110 bash[22161]: audit 2024-04-14T15:28:47.355951+0000 mon.a (mon.0) 572 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:48.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:48 smithi110 bash[22161]: audit 2024-04-14T15:28:47.368561+0000 mon.a (mon.0) 573 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:28:48.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:48 smithi110 bash[22161]: audit 2024-04-14T15:28:47.373515+0000 mon.a (mon.0) 574 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:28:48.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:48 smithi110 bash[22161]: audit 2024-04-14T15:28:47.375209+0000 mon.a (mon.0) 575 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:28:48.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:48 smithi110 bash[22161]: audit 2024-04-14T15:28:47.382364+0000 mon.a (mon.0) 576 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:48.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:48 smithi138 bash[22282]: audit 2024-04-14T15:28:47.351760+0000 mon.a (mon.0) 571 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:48.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:48 smithi138 bash[22282]: audit 2024-04-14T15:28:47.355951+0000 mon.a (mon.0) 572 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:48.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:48 smithi138 bash[22282]: audit 2024-04-14T15:28:47.368561+0000 mon.a (mon.0) 573 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:28:48.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:48 smithi138 bash[22282]: audit 2024-04-14T15:28:47.373515+0000 mon.a (mon.0) 574 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:28:48.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:48 smithi138 bash[22282]: audit 2024-04-14T15:28:47.375209+0000 mon.a (mon.0) 575 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:28:48.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:48 smithi138 bash[22282]: audit 2024-04-14T15:28:47.382364+0000 mon.a (mon.0) 576 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:49.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:49 smithi110 bash[22161]: cluster 2024-04-14T15:28:48.514174+0000 mgr.a (mgr.14152) 204 : cluster [DBG] pgmap v145: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:49.694 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:49 smithi047 bash[21449]: cluster 2024-04-14T15:28:48.514174+0000 mgr.a (mgr.14152) 204 : cluster [DBG] pgmap v145: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:49.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:49 smithi138 bash[22282]: cluster 2024-04-14T15:28:48.514174+0000 mgr.a (mgr.14152) 204 : cluster [DBG] pgmap v145: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:50.874 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:50 smithi110 bash[22161]: cluster 2024-04-14T15:28:50.514680+0000 mgr.a (mgr.14152) 205 : cluster [DBG] pgmap v146: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:50.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:50 smithi047 bash[21449]: cluster 2024-04-14T15:28:50.514680+0000 mgr.a (mgr.14152) 205 : cluster [DBG] pgmap v146: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:51.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:50 smithi138 bash[22282]: cluster 2024-04-14T15:28:50.514680+0000 mgr.a (mgr.14152) 205 : cluster [DBG] pgmap v146: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:52.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:51 smithi138 bash[22282]: audit 2024-04-14T15:28:50.809056+0000 mon.a (mon.0) 577 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:52.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:51 smithi138 bash[22282]: audit 2024-04-14T15:28:50.818051+0000 mon.a (mon.0) 578 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:52.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:51 smithi138 bash[22282]: cephadm 2024-04-14T15:28:50.821312+0000 mgr.a (mgr.14152) 206 : cephadm [INF] Detected new or changed devices on smithi110 2024-04-14T15:28:52.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:51 smithi138 bash[22282]: audit 2024-04-14T15:28:50.828650+0000 mon.a (mon.0) 579 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:52.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:51 smithi138 bash[22282]: audit 2024-04-14T15:28:50.841070+0000 mon.a (mon.0) 580 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:28:52.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:51 smithi138 bash[22282]: audit 2024-04-14T15:28:50.846960+0000 mon.a (mon.0) 581 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:28:52.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:51 smithi138 bash[22282]: audit 2024-04-14T15:28:50.848931+0000 mon.a (mon.0) 582 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:28:52.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:51 smithi138 bash[22282]: audit 2024-04-14T15:28:50.859206+0000 mon.a (mon.0) 583 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:52.144 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:51 smithi110 bash[22161]: audit 2024-04-14T15:28:50.809056+0000 mon.a (mon.0) 577 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:52.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:51 smithi110 bash[22161]: audit 2024-04-14T15:28:50.818051+0000 mon.a (mon.0) 578 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:52.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:51 smithi110 bash[22161]: cephadm 2024-04-14T15:28:50.821312+0000 mgr.a (mgr.14152) 206 : cephadm [INF] Detected new or changed devices on smithi110 2024-04-14T15:28:52.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:51 smithi110 bash[22161]: audit 2024-04-14T15:28:50.828650+0000 mon.a (mon.0) 579 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:52.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:51 smithi110 bash[22161]: audit 2024-04-14T15:28:50.841070+0000 mon.a (mon.0) 580 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:28:52.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:51 smithi110 bash[22161]: audit 2024-04-14T15:28:50.846960+0000 mon.a (mon.0) 581 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:28:52.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:51 smithi110 bash[22161]: audit 2024-04-14T15:28:50.848931+0000 mon.a (mon.0) 582 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:28:52.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:51 smithi110 bash[22161]: audit 2024-04-14T15:28:50.859206+0000 mon.a (mon.0) 583 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:52.208 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:51 smithi047 bash[21449]: audit 2024-04-14T15:28:50.809056+0000 mon.a (mon.0) 577 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:52.208 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:51 smithi047 bash[21449]: audit 2024-04-14T15:28:50.818051+0000 mon.a (mon.0) 578 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:52.209 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:51 smithi047 bash[21449]: cephadm 2024-04-14T15:28:50.821312+0000 mgr.a (mgr.14152) 206 : cephadm [INF] Detected new or changed devices on smithi110 2024-04-14T15:28:52.209 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:51 smithi047 bash[21449]: audit 2024-04-14T15:28:50.828650+0000 mon.a (mon.0) 579 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:52.209 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:51 smithi047 bash[21449]: audit 2024-04-14T15:28:50.841070+0000 mon.a (mon.0) 580 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:28:52.209 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:51 smithi047 bash[21449]: audit 2024-04-14T15:28:50.846960+0000 mon.a (mon.0) 581 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:28:52.209 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:51 smithi047 bash[21449]: audit 2024-04-14T15:28:50.848931+0000 mon.a (mon.0) 582 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:28:52.209 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:51 smithi047 bash[21449]: audit 2024-04-14T15:28:50.859206+0000 mon.a (mon.0) 583 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:53.144 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:52 smithi110 bash[22161]: cluster 2024-04-14T15:28:52.515141+0000 mgr.a (mgr.14152) 207 : cluster [DBG] pgmap v147: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:53.208 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:52 smithi047 bash[21449]: cluster 2024-04-14T15:28:52.515141+0000 mgr.a (mgr.14152) 207 : cluster [DBG] pgmap v147: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:53.310 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:52 smithi138 bash[22282]: cluster 2024-04-14T15:28:52.515141+0000 mgr.a (mgr.14152) 207 : cluster [DBG] pgmap v147: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:54.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:54 smithi110 bash[22161]: audit 2024-04-14T15:28:54.375894+0000 mon.b (mon.2) 9 : audit [INF] from='osd.2 [v2:172.21.15.110:6800/1340287589,v1:172.21.15.110:6801/1340287589]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-04-14T15:28:54.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:54 smithi110 bash[22161]: audit 2024-04-14T15:28:54.382115+0000 mon.a (mon.0) 584 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-04-14T15:28:54.708 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:54 smithi047 bash[21449]: audit 2024-04-14T15:28:54.375894+0000 mon.b (mon.2) 9 : audit [INF] from='osd.2 [v2:172.21.15.110:6800/1340287589,v1:172.21.15.110:6801/1340287589]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-04-14T15:28:54.708 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:54 smithi047 bash[21449]: audit 2024-04-14T15:28:54.382115+0000 mon.a (mon.0) 584 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-04-14T15:28:54.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:54 smithi138 bash[22282]: audit 2024-04-14T15:28:54.375894+0000 mon.b (mon.2) 9 : audit [INF] from='osd.2 [v2:172.21.15.110:6800/1340287589,v1:172.21.15.110:6801/1340287589]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-04-14T15:28:54.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:54 smithi138 bash[22282]: audit 2024-04-14T15:28:54.382115+0000 mon.a (mon.0) 584 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-04-14T15:28:55.709 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:55 smithi047 bash[21449]: audit 2024-04-14T15:28:54.433773+0000 mon.b (mon.2) 10 : audit [INF] from='osd.2 [v2:172.21.15.110:6800/1340287589,v1:172.21.15.110:6801/1340287589]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi110", "root=default"]}]: dispatch 2024-04-14T15:28:55.709 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:55 smithi047 bash[21449]: audit 2024-04-14T15:28:54.435062+0000 mon.a (mon.0) 585 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-04-14T15:28:55.709 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:55 smithi047 bash[21449]: cluster 2024-04-14T15:28:54.440496+0000 mon.a (mon.0) 586 : cluster [DBG] osdmap e16: 3 total, 2 up, 3 in 2024-04-14T15:28:55.709 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:55 smithi047 bash[21449]: audit 2024-04-14T15:28:54.441511+0000 mon.a (mon.0) 587 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-14T15:28:55.709 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:55 smithi047 bash[21449]: audit 2024-04-14T15:28:54.442096+0000 mon.a (mon.0) 588 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi110", "root=default"]}]: dispatch 2024-04-14T15:28:55.709 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:55 smithi047 bash[21449]: cluster 2024-04-14T15:28:54.515563+0000 mgr.a (mgr.14152) 208 : cluster [DBG] pgmap v149: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:55.709 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:55 smithi047 bash[21449]: audit 2024-04-14T15:28:55.178699+0000 mon.a (mon.0) 589 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:55.710 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:55 smithi047 bash[21449]: audit 2024-04-14T15:28:55.186736+0000 mon.a (mon.0) 590 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:55.710 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:55 smithi047 bash[21449]: audit 2024-04-14T15:28:55.195403+0000 mon.a (mon.0) 591 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:55.710 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:55 smithi047 bash[21449]: audit 2024-04-14T15:28:55.196187+0000 mon.a (mon.0) 592 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:28:55.710 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:55 smithi047 bash[21449]: audit 2024-04-14T15:28:55.200674+0000 mon.a (mon.0) 593 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:28:55.710 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:55 smithi047 bash[21449]: audit 2024-04-14T15:28:55.202110+0000 mon.a (mon.0) 594 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:28:55.710 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:55 smithi047 bash[21449]: audit 2024-04-14T15:28:55.211213+0000 mon.a (mon.0) 595 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:55.710 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:55 smithi047 bash[21449]: audit 2024-04-14T15:28:55.349754+0000 mon.a (mon.0) 596 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:55.710 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:55 smithi047 bash[21449]: audit 2024-04-14T15:28:55.358179+0000 mon.a (mon.0) 597 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:55.710 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:55 smithi047 bash[21449]: audit 2024-04-14T15:28:55.366607+0000 mon.a (mon.0) 598 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:55.710 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:55 smithi047 bash[21449]: audit 2024-04-14T15:28:55.437021+0000 mon.a (mon.0) 599 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi110", "root=default"]}]': finished 2024-04-14T15:28:55.710 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:55 smithi047 bash[21449]: cluster 2024-04-14T15:28:55.442067+0000 mon.a (mon.0) 600 : cluster [DBG] osdmap e17: 3 total, 2 up, 3 in 2024-04-14T15:28:55.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:55 smithi138 bash[22282]: audit 2024-04-14T15:28:54.433773+0000 mon.b (mon.2) 10 : audit [INF] from='osd.2 [v2:172.21.15.110:6800/1340287589,v1:172.21.15.110:6801/1340287589]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi110", "root=default"]}]: dispatch 2024-04-14T15:28:55.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:55 smithi138 bash[22282]: audit 2024-04-14T15:28:54.435062+0000 mon.a (mon.0) 585 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-04-14T15:28:55.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:55 smithi138 bash[22282]: cluster 2024-04-14T15:28:54.440496+0000 mon.a (mon.0) 586 : cluster [DBG] osdmap e16: 3 total, 2 up, 3 in 2024-04-14T15:28:55.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:55 smithi138 bash[22282]: audit 2024-04-14T15:28:54.441511+0000 mon.a (mon.0) 587 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-14T15:28:55.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:55 smithi138 bash[22282]: audit 2024-04-14T15:28:54.442096+0000 mon.a (mon.0) 588 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi110", "root=default"]}]: dispatch 2024-04-14T15:28:55.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:55 smithi138 bash[22282]: cluster 2024-04-14T15:28:54.515563+0000 mgr.a (mgr.14152) 208 : cluster [DBG] pgmap v149: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:55.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:55 smithi138 bash[22282]: audit 2024-04-14T15:28:55.178699+0000 mon.a (mon.0) 589 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:55.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:55 smithi138 bash[22282]: audit 2024-04-14T15:28:55.186736+0000 mon.a (mon.0) 590 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:55.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:55 smithi138 bash[22282]: audit 2024-04-14T15:28:55.195403+0000 mon.a (mon.0) 591 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:55.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:55 smithi138 bash[22282]: audit 2024-04-14T15:28:55.196187+0000 mon.a (mon.0) 592 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:28:55.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:55 smithi138 bash[22282]: audit 2024-04-14T15:28:55.200674+0000 mon.a (mon.0) 593 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:28:55.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:55 smithi138 bash[22282]: audit 2024-04-14T15:28:55.202110+0000 mon.a (mon.0) 594 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:28:55.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:55 smithi138 bash[22282]: audit 2024-04-14T15:28:55.211213+0000 mon.a (mon.0) 595 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:55.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:55 smithi138 bash[22282]: audit 2024-04-14T15:28:55.349754+0000 mon.a (mon.0) 596 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:55.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:55 smithi138 bash[22282]: audit 2024-04-14T15:28:55.358179+0000 mon.a (mon.0) 597 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:55.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:55 smithi138 bash[22282]: audit 2024-04-14T15:28:55.366607+0000 mon.a (mon.0) 598 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:55.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:55 smithi138 bash[22282]: audit 2024-04-14T15:28:55.437021+0000 mon.a (mon.0) 599 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi110", "root=default"]}]': finished 2024-04-14T15:28:55.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:55 smithi138 bash[22282]: cluster 2024-04-14T15:28:55.442067+0000 mon.a (mon.0) 600 : cluster [DBG] osdmap e17: 3 total, 2 up, 3 in 2024-04-14T15:28:55.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:55 smithi110 bash[22161]: audit 2024-04-14T15:28:54.433773+0000 mon.b (mon.2) 10 : audit [INF] from='osd.2 [v2:172.21.15.110:6800/1340287589,v1:172.21.15.110:6801/1340287589]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi110", "root=default"]}]: dispatch 2024-04-14T15:28:55.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:55 smithi110 bash[22161]: audit 2024-04-14T15:28:54.435062+0000 mon.a (mon.0) 585 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-04-14T15:28:55.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:55 smithi110 bash[22161]: cluster 2024-04-14T15:28:54.440496+0000 mon.a (mon.0) 586 : cluster [DBG] osdmap e16: 3 total, 2 up, 3 in 2024-04-14T15:28:55.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:55 smithi110 bash[22161]: audit 2024-04-14T15:28:54.441511+0000 mon.a (mon.0) 587 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-14T15:28:55.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:55 smithi110 bash[22161]: audit 2024-04-14T15:28:54.442096+0000 mon.a (mon.0) 588 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi110", "root=default"]}]: dispatch 2024-04-14T15:28:55.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:55 smithi110 bash[22161]: cluster 2024-04-14T15:28:54.515563+0000 mgr.a (mgr.14152) 208 : cluster [DBG] pgmap v149: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:55.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:55 smithi110 bash[22161]: audit 2024-04-14T15:28:55.178699+0000 mon.a (mon.0) 589 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:55.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:55 smithi110 bash[22161]: audit 2024-04-14T15:28:55.186736+0000 mon.a (mon.0) 590 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:55.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:55 smithi110 bash[22161]: audit 2024-04-14T15:28:55.195403+0000 mon.a (mon.0) 591 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:55.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:55 smithi110 bash[22161]: audit 2024-04-14T15:28:55.196187+0000 mon.a (mon.0) 592 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:28:55.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:55 smithi110 bash[22161]: audit 2024-04-14T15:28:55.200674+0000 mon.a (mon.0) 593 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:28:55.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:55 smithi110 bash[22161]: audit 2024-04-14T15:28:55.202110+0000 mon.a (mon.0) 594 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:28:55.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:55 smithi110 bash[22161]: audit 2024-04-14T15:28:55.211213+0000 mon.a (mon.0) 595 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:55.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:55 smithi110 bash[22161]: audit 2024-04-14T15:28:55.349754+0000 mon.a (mon.0) 596 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:55.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:55 smithi110 bash[22161]: audit 2024-04-14T15:28:55.358179+0000 mon.a (mon.0) 597 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:55.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:55 smithi110 bash[22161]: audit 2024-04-14T15:28:55.366607+0000 mon.a (mon.0) 598 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:55.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:55 smithi110 bash[22161]: audit 2024-04-14T15:28:55.437021+0000 mon.a (mon.0) 599 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi110", "root=default"]}]': finished 2024-04-14T15:28:55.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:55 smithi110 bash[22161]: cluster 2024-04-14T15:28:55.442067+0000 mon.a (mon.0) 600 : cluster [DBG] osdmap e17: 3 total, 2 up, 3 in 2024-04-14T15:28:55.974 INFO:teuthology.orchestra.run.smithi110.stdout:Created osd(s) 2 on host 'smithi110' 2024-04-14T15:28:56.531 DEBUG:teuthology.orchestra.run.smithi110:osd.2> sudo journalctl -f -n 0 -u ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@osd.2.service 2024-04-14T15:28:56.533 INFO:tasks.cephadm:Deploying osd.3 on smithi110 with /dev/vg_nvme/lv_3... 2024-04-14T15:28:56.534 DEBUG:teuthology.orchestra.run.smithi110:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_3 2024-04-14T15:28:56.560 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:56 smithi138 bash[22282]: audit 2024-04-14T15:28:55.442632+0000 mon.a (mon.0) 601 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-14T15:28:56.560 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:56 smithi138 bash[22282]: audit 2024-04-14T15:28:55.444093+0000 mon.a (mon.0) 602 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-14T15:28:56.560 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:56 smithi138 bash[22282]: audit 2024-04-14T15:28:55.947299+0000 mon.a (mon.0) 603 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:56.560 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:56 smithi138 bash[22282]: audit 2024-04-14T15:28:55.956854+0000 mon.a (mon.0) 604 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:56.560 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:56 smithi138 bash[22282]: audit 2024-04-14T15:28:55.978267+0000 mon.a (mon.0) 605 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:28:56.561 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:56 smithi138 bash[22282]: audit 2024-04-14T15:28:55.984417+0000 mon.a (mon.0) 606 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-04-14T15:28:56.561 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:56 smithi138 bash[22282]: audit 2024-04-14T15:28:55.992464+0000 mon.a (mon.0) 607 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:56.561 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:56 smithi138 bash[22282]: audit 2024-04-14T15:28:55.996873+0000 mon.a (mon.0) 608 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:28:56.561 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:56 smithi138 bash[22282]: audit 2024-04-14T15:28:55.998626+0000 mon.a (mon.0) 609 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:28:56.561 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:56 smithi138 bash[22282]: audit 2024-04-14T15:28:56.008380+0000 mon.a (mon.0) 610 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:56.561 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:56 smithi138 bash[22282]: audit 2024-04-14T15:28:56.444600+0000 mon.a (mon.0) 611 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-14T15:28:56.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:56 smithi110 bash[22161]: audit 2024-04-14T15:28:55.442632+0000 mon.a (mon.0) 601 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-14T15:28:56.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:56 smithi110 bash[22161]: audit 2024-04-14T15:28:55.444093+0000 mon.a (mon.0) 602 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-14T15:28:56.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:56 smithi110 bash[22161]: audit 2024-04-14T15:28:55.947299+0000 mon.a (mon.0) 603 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:56.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:56 smithi110 bash[22161]: audit 2024-04-14T15:28:55.956854+0000 mon.a (mon.0) 604 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:56.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:56 smithi110 bash[22161]: audit 2024-04-14T15:28:55.978267+0000 mon.a (mon.0) 605 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:28:56.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:56 smithi110 bash[22161]: audit 2024-04-14T15:28:55.984417+0000 mon.a (mon.0) 606 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-04-14T15:28:56.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:56 smithi110 bash[22161]: audit 2024-04-14T15:28:55.992464+0000 mon.a (mon.0) 607 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:56.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:56 smithi110 bash[22161]: audit 2024-04-14T15:28:55.996873+0000 mon.a (mon.0) 608 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:28:56.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:56 smithi110 bash[22161]: audit 2024-04-14T15:28:55.998626+0000 mon.a (mon.0) 609 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:28:56.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:56 smithi110 bash[22161]: audit 2024-04-14T15:28:56.008380+0000 mon.a (mon.0) 610 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:56.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:56 smithi110 bash[22161]: audit 2024-04-14T15:28:56.444600+0000 mon.a (mon.0) 611 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-14T15:28:56.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:56 smithi047 bash[21449]: audit 2024-04-14T15:28:55.442632+0000 mon.a (mon.0) 601 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-14T15:28:56.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:56 smithi047 bash[21449]: audit 2024-04-14T15:28:55.444093+0000 mon.a (mon.0) 602 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-14T15:28:56.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:56 smithi047 bash[21449]: audit 2024-04-14T15:28:55.947299+0000 mon.a (mon.0) 603 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:56.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:56 smithi047 bash[21449]: audit 2024-04-14T15:28:55.956854+0000 mon.a (mon.0) 604 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:56.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:56 smithi047 bash[21449]: audit 2024-04-14T15:28:55.978267+0000 mon.a (mon.0) 605 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:28:56.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:56 smithi047 bash[21449]: audit 2024-04-14T15:28:55.984417+0000 mon.a (mon.0) 606 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-04-14T15:28:56.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:56 smithi047 bash[21449]: audit 2024-04-14T15:28:55.992464+0000 mon.a (mon.0) 607 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:56.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:56 smithi047 bash[21449]: audit 2024-04-14T15:28:55.996873+0000 mon.a (mon.0) 608 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:28:56.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:56 smithi047 bash[21449]: audit 2024-04-14T15:28:55.998626+0000 mon.a (mon.0) 609 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:28:56.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:56 smithi047 bash[21449]: audit 2024-04-14T15:28:56.008380+0000 mon.a (mon.0) 610 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:28:56.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:56 smithi047 bash[21449]: audit 2024-04-14T15:28:56.444600+0000 mon.a (mon.0) 611 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-14T15:28:57.809 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:57 smithi138 bash[22282]: cluster 2024-04-14T15:28:55.382742+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-04-14T15:28:57.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:57 smithi138 bash[22282]: cluster 2024-04-14T15:28:55.382787+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-04-14T15:28:57.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:57 smithi138 bash[22282]: cephadm 2024-04-14T15:28:55.985897+0000 mgr.a (mgr.14152) 209 : cephadm [INF] Adjusting osd_memory_target on smithi110 to 16241M 2024-04-14T15:28:57.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:57 smithi138 bash[22282]: cluster 2024-04-14T15:28:56.459443+0000 mon.a (mon.0) 612 : cluster [INF] osd.2 [v2:172.21.15.110:6800/1340287589,v1:172.21.15.110:6801/1340287589] boot 2024-04-14T15:28:57.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:57 smithi138 bash[22282]: cluster 2024-04-14T15:28:56.459570+0000 mon.a (mon.0) 613 : cluster [DBG] osdmap e18: 3 total, 3 up, 3 in 2024-04-14T15:28:57.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:57 smithi138 bash[22282]: audit 2024-04-14T15:28:56.460243+0000 mon.a (mon.0) 614 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-14T15:28:57.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:57 smithi138 bash[22282]: cluster 2024-04-14T15:28:56.516068+0000 mgr.a (mgr.14152) 210 : cluster [DBG] pgmap v152: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:57.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:57 smithi110 bash[22161]: cluster 2024-04-14T15:28:55.382742+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-04-14T15:28:57.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:57 smithi110 bash[22161]: cluster 2024-04-14T15:28:55.382787+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-04-14T15:28:57.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:57 smithi110 bash[22161]: cephadm 2024-04-14T15:28:55.985897+0000 mgr.a (mgr.14152) 209 : cephadm [INF] Adjusting osd_memory_target on smithi110 to 16241M 2024-04-14T15:28:57.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:57 smithi110 bash[22161]: cluster 2024-04-14T15:28:56.459443+0000 mon.a (mon.0) 612 : cluster [INF] osd.2 [v2:172.21.15.110:6800/1340287589,v1:172.21.15.110:6801/1340287589] boot 2024-04-14T15:28:57.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:57 smithi110 bash[22161]: cluster 2024-04-14T15:28:56.459570+0000 mon.a (mon.0) 613 : cluster [DBG] osdmap e18: 3 total, 3 up, 3 in 2024-04-14T15:28:57.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:57 smithi110 bash[22161]: audit 2024-04-14T15:28:56.460243+0000 mon.a (mon.0) 614 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-14T15:28:57.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:57 smithi110 bash[22161]: cluster 2024-04-14T15:28:56.516068+0000 mgr.a (mgr.14152) 210 : cluster [DBG] pgmap v152: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:57.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:57 smithi047 bash[21449]: cluster 2024-04-14T15:28:55.382742+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-04-14T15:28:57.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:57 smithi047 bash[21449]: cluster 2024-04-14T15:28:55.382787+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-04-14T15:28:57.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:57 smithi047 bash[21449]: cephadm 2024-04-14T15:28:55.985897+0000 mgr.a (mgr.14152) 209 : cephadm [INF] Adjusting osd_memory_target on smithi110 to 16241M 2024-04-14T15:28:57.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:57 smithi047 bash[21449]: cluster 2024-04-14T15:28:56.459443+0000 mon.a (mon.0) 612 : cluster [INF] osd.2 [v2:172.21.15.110:6800/1340287589,v1:172.21.15.110:6801/1340287589] boot 2024-04-14T15:28:57.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:57 smithi047 bash[21449]: cluster 2024-04-14T15:28:56.459570+0000 mon.a (mon.0) 613 : cluster [DBG] osdmap e18: 3 total, 3 up, 3 in 2024-04-14T15:28:57.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:57 smithi047 bash[21449]: audit 2024-04-14T15:28:56.460243+0000 mon.a (mon.0) 614 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-14T15:28:57.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:57 smithi047 bash[21449]: cluster 2024-04-14T15:28:56.516068+0000 mgr.a (mgr.14152) 210 : cluster [DBG] pgmap v152: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-14T15:28:58.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:58 smithi138 bash[22282]: cluster 2024-04-14T15:28:57.476387+0000 mon.a (mon.0) 615 : cluster [DBG] osdmap e19: 3 total, 3 up, 3 in 2024-04-14T15:28:58.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:58 smithi138 bash[22282]: audit 2024-04-14T15:28:58.051635+0000 mon.a (mon.0) 616 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' 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-14T15:28:58.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:58 smithi110 bash[22161]: cluster 2024-04-14T15:28:57.476387+0000 mon.a (mon.0) 615 : cluster [DBG] osdmap e19: 3 total, 3 up, 3 in 2024-04-14T15:28:58.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:58 smithi110 bash[22161]: audit 2024-04-14T15:28:58.051635+0000 mon.a (mon.0) 616 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' 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-14T15:28:58.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:58 smithi047 bash[21449]: cluster 2024-04-14T15:28:57.476387+0000 mon.a (mon.0) 615 : cluster [DBG] osdmap e19: 3 total, 3 up, 3 in 2024-04-14T15:28:58.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:58 smithi047 bash[21449]: audit 2024-04-14T15:28:58.051635+0000 mon.a (mon.0) 616 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' 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-14T15:28:59.809 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:59 smithi138 bash[22282]: audit 2024-04-14T15:28:58.480195+0000 mon.a (mon.0) 617 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' 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-14T15:28:59.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:59 smithi138 bash[22282]: cluster 2024-04-14T15:28:58.484906+0000 mon.a (mon.0) 618 : cluster [DBG] osdmap e20: 3 total, 3 up, 3 in 2024-04-14T15:28:59.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:59 smithi138 bash[22282]: audit 2024-04-14T15:28:58.487033+0000 mon.a (mon.0) 619 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-04-14T15:28:59.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:28:59 smithi138 bash[22282]: cluster 2024-04-14T15:28:58.516571+0000 mgr.a (mgr.14152) 211 : cluster [DBG] pgmap v155: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:28:59.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:59 smithi110 bash[22161]: audit 2024-04-14T15:28:58.480195+0000 mon.a (mon.0) 617 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' 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-14T15:28:59.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:59 smithi110 bash[22161]: cluster 2024-04-14T15:28:58.484906+0000 mon.a (mon.0) 618 : cluster [DBG] osdmap e20: 3 total, 3 up, 3 in 2024-04-14T15:28:59.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:59 smithi110 bash[22161]: audit 2024-04-14T15:28:58.487033+0000 mon.a (mon.0) 619 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-04-14T15:28:59.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:28:59 smithi110 bash[22161]: cluster 2024-04-14T15:28:58.516571+0000 mgr.a (mgr.14152) 211 : cluster [DBG] pgmap v155: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:28:59.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:59 smithi047 bash[21449]: audit 2024-04-14T15:28:58.480195+0000 mon.a (mon.0) 617 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' 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-14T15:28:59.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:59 smithi047 bash[21449]: cluster 2024-04-14T15:28:58.484906+0000 mon.a (mon.0) 618 : cluster [DBG] osdmap e20: 3 total, 3 up, 3 in 2024-04-14T15:28:59.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:59 smithi047 bash[21449]: audit 2024-04-14T15:28:58.487033+0000 mon.a (mon.0) 619 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-04-14T15:28:59.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:28:59 smithi047 bash[21449]: cluster 2024-04-14T15:28:58.516571+0000 mgr.a (mgr.14152) 211 : cluster [DBG] pgmap v155: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:00.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:00 smithi138 bash[22282]: cluster 2024-04-14T15:28:59.480178+0000 mon.a (mon.0) 620 : cluster [WRN] Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-04-14T15:29:00.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:00 smithi138 bash[22282]: audit 2024-04-14T15:28:59.489123+0000 mon.a (mon.0) 621 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-04-14T15:29:00.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:00 smithi138 bash[22282]: cluster 2024-04-14T15:28:59.496215+0000 mon.a (mon.0) 622 : cluster [DBG] osdmap e21: 3 total, 3 up, 3 in 2024-04-14T15:29:00.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:00 smithi138 bash[22282]: audit 2024-04-14T15:28:59.807702+0000 mon.a (mon.0) 623 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:00.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:00 smithi138 bash[22282]: audit 2024-04-14T15:28:59.948215+0000 mon.a (mon.0) 624 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:00.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:00 smithi138 bash[22282]: audit 2024-04-14T15:28:59.951084+0000 mon.a (mon.0) 625 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-14T15:29:00.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:00 smithi138 bash[22282]: audit 2024-04-14T15:29:00.005984+0000 mon.a (mon.0) 626 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-14T15:29:00.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:00 smithi138 bash[22282]: audit 2024-04-14T15:29:00.006654+0000 mon.a (mon.0) 627 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-14T15:29:00.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:00 smithi138 bash[22282]: audit 2024-04-14T15:29:00.006978+0000 mon.a (mon.0) 628 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:29:00.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:00 smithi138 bash[22282]: audit 2024-04-14T15:29:00.007227+0000 mon.a (mon.0) 629 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T15:29:00.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:00 smithi138 bash[22282]: audit 2024-04-14T15:29:00.008911+0000 mon.c (mon.1) 4 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-14T15:29:00.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:00 smithi138 bash[22282]: audit 2024-04-14T15:29:00.009859+0000 mon.a (mon.0) 630 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-14T15:29:00.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:00 smithi138 bash[22282]: audit 2024-04-14T15:29:00.010208+0000 mon.a (mon.0) 631 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:29:00.811 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:00 smithi138 bash[22282]: audit 2024-04-14T15:29:00.010548+0000 mon.a (mon.0) 632 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T15:29:00.812 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:00 smithi138 bash[22282]: audit 2024-04-14T15:29:00.052458+0000 mon.c (mon.1) 5 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-14T15:29:00.812 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:00 smithi138 bash[22282]: audit 2024-04-14T15:29:00.096429+0000 mon.b (mon.2) 11 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-14T15:29:00.812 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:00 smithi138 bash[22282]: audit 2024-04-14T15:29:00.099719+0000 mon.a (mon.0) 633 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:00.812 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:00 smithi138 bash[22282]: audit 2024-04-14T15:29:00.102432+0000 mon.a (mon.0) 634 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-14T15:29:00.812 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:00 smithi138 bash[22282]: audit 2024-04-14T15:29:00.102813+0000 mon.a (mon.0) 635 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:29:00.812 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:00 smithi138 bash[22282]: audit 2024-04-14T15:29:00.103258+0000 mon.a (mon.0) 636 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T15:29:00.812 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:00 smithi138 bash[22282]: audit 2024-04-14T15:29:00.148639+0000 mon.b (mon.2) 12 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-14T15:29:00.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:00 smithi110 bash[22161]: cluster 2024-04-14T15:28:59.480178+0000 mon.a (mon.0) 620 : cluster [WRN] Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-04-14T15:29:00.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:00 smithi110 bash[22161]: audit 2024-04-14T15:28:59.489123+0000 mon.a (mon.0) 621 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-04-14T15:29:00.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:00 smithi110 bash[22161]: cluster 2024-04-14T15:28:59.496215+0000 mon.a (mon.0) 622 : cluster [DBG] osdmap e21: 3 total, 3 up, 3 in 2024-04-14T15:29:00.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:00 smithi110 bash[22161]: audit 2024-04-14T15:28:59.807702+0000 mon.a (mon.0) 623 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:00.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:00 smithi110 bash[22161]: audit 2024-04-14T15:28:59.948215+0000 mon.a (mon.0) 624 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:00.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:00 smithi110 bash[22161]: audit 2024-04-14T15:28:59.951084+0000 mon.a (mon.0) 625 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-14T15:29:00.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:00 smithi110 bash[22161]: audit 2024-04-14T15:29:00.005984+0000 mon.a (mon.0) 626 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-14T15:29:00.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:00 smithi110 bash[22161]: audit 2024-04-14T15:29:00.006654+0000 mon.a (mon.0) 627 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-14T15:29:00.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:00 smithi110 bash[22161]: audit 2024-04-14T15:29:00.006978+0000 mon.a (mon.0) 628 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:29:00.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:00 smithi110 bash[22161]: audit 2024-04-14T15:29:00.007227+0000 mon.a (mon.0) 629 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T15:29:00.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:00 smithi110 bash[22161]: audit 2024-04-14T15:29:00.008911+0000 mon.c (mon.1) 4 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-14T15:29:00.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:00 smithi110 bash[22161]: audit 2024-04-14T15:29:00.009859+0000 mon.a (mon.0) 630 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-14T15:29:00.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:00 smithi110 bash[22161]: audit 2024-04-14T15:29:00.010208+0000 mon.a (mon.0) 631 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:29:00.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:00 smithi110 bash[22161]: audit 2024-04-14T15:29:00.010548+0000 mon.a (mon.0) 632 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T15:29:00.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:00 smithi110 bash[22161]: audit 2024-04-14T15:29:00.052458+0000 mon.c (mon.1) 5 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-14T15:29:00.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:00 smithi110 bash[22161]: audit 2024-04-14T15:29:00.096429+0000 mon.b (mon.2) 11 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-14T15:29:00.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:00 smithi110 bash[22161]: audit 2024-04-14T15:29:00.099719+0000 mon.a (mon.0) 633 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:00.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:00 smithi110 bash[22161]: audit 2024-04-14T15:29:00.102432+0000 mon.a (mon.0) 634 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-14T15:29:00.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:00 smithi110 bash[22161]: audit 2024-04-14T15:29:00.102813+0000 mon.a (mon.0) 635 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:29:00.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:00 smithi110 bash[22161]: audit 2024-04-14T15:29:00.103258+0000 mon.a (mon.0) 636 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T15:29:00.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:00 smithi110 bash[22161]: audit 2024-04-14T15:29:00.148639+0000 mon.b (mon.2) 12 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-14T15:29:00.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:00 smithi047 bash[21449]: cluster 2024-04-14T15:28:59.480178+0000 mon.a (mon.0) 620 : cluster [WRN] Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-04-14T15:29:00.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:00 smithi047 bash[21449]: audit 2024-04-14T15:28:59.489123+0000 mon.a (mon.0) 621 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-04-14T15:29:00.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:00 smithi047 bash[21449]: cluster 2024-04-14T15:28:59.496215+0000 mon.a (mon.0) 622 : cluster [DBG] osdmap e21: 3 total, 3 up, 3 in 2024-04-14T15:29:00.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:00 smithi047 bash[21449]: audit 2024-04-14T15:28:59.807702+0000 mon.a (mon.0) 623 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:00.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:00 smithi047 bash[21449]: audit 2024-04-14T15:28:59.948215+0000 mon.a (mon.0) 624 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:00.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:00 smithi047 bash[21449]: audit 2024-04-14T15:28:59.951084+0000 mon.a (mon.0) 625 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-14T15:29:00.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:00 smithi047 bash[21449]: audit 2024-04-14T15:29:00.005984+0000 mon.a (mon.0) 626 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-14T15:29:00.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:00 smithi047 bash[21449]: audit 2024-04-14T15:29:00.006654+0000 mon.a (mon.0) 627 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-14T15:29:00.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:00 smithi047 bash[21449]: audit 2024-04-14T15:29:00.006978+0000 mon.a (mon.0) 628 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:29:00.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:00 smithi047 bash[21449]: audit 2024-04-14T15:29:00.007227+0000 mon.a (mon.0) 629 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T15:29:00.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:00 smithi047 bash[21449]: audit 2024-04-14T15:29:00.008911+0000 mon.c (mon.1) 4 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-14T15:29:00.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:00 smithi047 bash[21449]: audit 2024-04-14T15:29:00.009859+0000 mon.a (mon.0) 630 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-14T15:29:00.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:00 smithi047 bash[21449]: audit 2024-04-14T15:29:00.010208+0000 mon.a (mon.0) 631 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:29:00.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:00 smithi047 bash[21449]: audit 2024-04-14T15:29:00.010548+0000 mon.a (mon.0) 632 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T15:29:00.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:00 smithi047 bash[21449]: audit 2024-04-14T15:29:00.052458+0000 mon.c (mon.1) 5 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-14T15:29:00.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:00 smithi047 bash[21449]: audit 2024-04-14T15:29:00.096429+0000 mon.b (mon.2) 11 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-14T15:29:00.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:00 smithi047 bash[21449]: audit 2024-04-14T15:29:00.099719+0000 mon.a (mon.0) 633 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:00.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:00 smithi047 bash[21449]: audit 2024-04-14T15:29:00.102432+0000 mon.a (mon.0) 634 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-14T15:29:00.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:00 smithi047 bash[21449]: audit 2024-04-14T15:29:00.102813+0000 mon.a (mon.0) 635 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:29:00.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:00 smithi047 bash[21449]: audit 2024-04-14T15:29:00.103258+0000 mon.a (mon.0) 636 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T15:29:00.960 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:00 smithi047 bash[21449]: audit 2024-04-14T15:29:00.148639+0000 mon.b (mon.2) 12 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-14T15:29:01.306 INFO:teuthology.orchestra.run.smithi110.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.b/config 2024-04-14T15:29:01.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:01 smithi110 bash[22161]: cluster 2024-04-14T15:29:00.505605+0000 mon.a (mon.0) 637 : cluster [DBG] osdmap e22: 3 total, 3 up, 3 in 2024-04-14T15:29:01.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:01 smithi110 bash[22161]: cluster 2024-04-14T15:29:00.517077+0000 mgr.a (mgr.14152) 212 : cluster [DBG] pgmap v158: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:01.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:01 smithi110 bash[22161]: cluster 2024-04-14T15:29:01.112439+0000 mon.a (mon.0) 638 : cluster [DBG] mgrmap e15: a(active, since 4m), standbys: b 2024-04-14T15:29:01.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:01 smithi138 bash[22282]: cluster 2024-04-14T15:29:00.505605+0000 mon.a (mon.0) 637 : cluster [DBG] osdmap e22: 3 total, 3 up, 3 in 2024-04-14T15:29:01.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:01 smithi138 bash[22282]: cluster 2024-04-14T15:29:00.517077+0000 mgr.a (mgr.14152) 212 : cluster [DBG] pgmap v158: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:01.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:01 smithi138 bash[22282]: cluster 2024-04-14T15:29:01.112439+0000 mon.a (mon.0) 638 : cluster [DBG] mgrmap e15: a(active, since 4m), standbys: b 2024-04-14T15:29:01.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:01 smithi047 bash[21449]: cluster 2024-04-14T15:29:00.505605+0000 mon.a (mon.0) 637 : cluster [DBG] osdmap e22: 3 total, 3 up, 3 in 2024-04-14T15:29:01.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:01 smithi047 bash[21449]: cluster 2024-04-14T15:29:00.517077+0000 mgr.a (mgr.14152) 212 : cluster [DBG] pgmap v158: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:01.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:01 smithi047 bash[21449]: cluster 2024-04-14T15:29:01.112439+0000 mon.a (mon.0) 638 : cluster [DBG] mgrmap e15: a(active, since 4m), standbys: b 2024-04-14T15:29:02.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:02 smithi138 bash[22282]: cluster 2024-04-14T15:29:01.500914+0000 mon.a (mon.0) 639 : cluster [INF] Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-04-14T15:29:02.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:02 smithi138 bash[22282]: cluster 2024-04-14T15:29:01.500970+0000 mon.a (mon.0) 640 : cluster [INF] Cluster is now healthy 2024-04-14T15:29:02.824 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:02 smithi110 bash[22161]: cluster 2024-04-14T15:29:01.500914+0000 mon.a (mon.0) 639 : cluster [INF] Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-04-14T15:29:02.824 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:02 smithi110 bash[22161]: cluster 2024-04-14T15:29:01.500970+0000 mon.a (mon.0) 640 : cluster [INF] Cluster is now healthy 2024-04-14T15:29:02.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:02 smithi047 bash[21449]: cluster 2024-04-14T15:29:01.500914+0000 mon.a (mon.0) 639 : cluster [INF] Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-04-14T15:29:02.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:02 smithi047 bash[21449]: cluster 2024-04-14T15:29:01.500970+0000 mon.a (mon.0) 640 : cluster [INF] Cluster is now healthy 2024-04-14T15:29:03.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:03 smithi138 bash[22282]: cluster 2024-04-14T15:29:02.517688+0000 mgr.a (mgr.14152) 213 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:03.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:03 smithi110 bash[22161]: cluster 2024-04-14T15:29:02.517688+0000 mgr.a (mgr.14152) 213 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:03.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:03 smithi047 bash[21449]: cluster 2024-04-14T15:29:02.517688+0000 mgr.a (mgr.14152) 213 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:04.082 INFO:teuthology.orchestra.run.smithi110.stderr:--> Zapping: /dev/vg_nvme/lv_3 2024-04-14T15:29:04.082 INFO:teuthology.orchestra.run.smithi110.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_3 bs=1M count=10 conv=fsync 2024-04-14T15:29:04.082 INFO:teuthology.orchestra.run.smithi110.stderr: stderr: 10+0 records in 2024-04-14T15:29:04.083 INFO:teuthology.orchestra.run.smithi110.stderr:10+0 records out 2024-04-14T15:29:04.083 INFO:teuthology.orchestra.run.smithi110.stderr:10485760 bytes (10 MB, 10 MiB) copied, 0.0128307 s, 817 MB/s 2024-04-14T15:29:04.083 INFO:teuthology.orchestra.run.smithi110.stderr:--> Zapping successful for: 2024-04-14T15:29:04.711 DEBUG:teuthology.orchestra.run.smithi110:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph orch daemon add osd smithi110:vg_nvme/lv_3 2024-04-14T15:29:05.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:04 smithi110 bash[22161]: audit 2024-04-14T15:29:03.912408+0000 mon.a (mon.0) 641 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:05.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:04 smithi110 bash[22161]: audit 2024-04-14T15:29:03.920725+0000 mon.a (mon.0) 642 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:05.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:04 smithi110 bash[22161]: audit 2024-04-14T15:29:03.931221+0000 mon.a (mon.0) 643 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:05.146 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:04 smithi110 bash[22161]: cluster 2024-04-14T15:29:04.518246+0000 mgr.a (mgr.14152) 214 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:05.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:04 smithi047 bash[21449]: audit 2024-04-14T15:29:03.912408+0000 mon.a (mon.0) 641 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:05.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:04 smithi047 bash[21449]: audit 2024-04-14T15:29:03.920725+0000 mon.a (mon.0) 642 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:05.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:04 smithi047 bash[21449]: audit 2024-04-14T15:29:03.931221+0000 mon.a (mon.0) 643 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:05.211 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:04 smithi047 bash[21449]: cluster 2024-04-14T15:29:04.518246+0000 mgr.a (mgr.14152) 214 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:05.310 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:04 smithi138 bash[22282]: audit 2024-04-14T15:29:03.912408+0000 mon.a (mon.0) 641 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:05.310 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:04 smithi138 bash[22282]: audit 2024-04-14T15:29:03.920725+0000 mon.a (mon.0) 642 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:05.310 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:04 smithi138 bash[22282]: audit 2024-04-14T15:29:03.931221+0000 mon.a (mon.0) 643 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:05.310 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:04 smithi138 bash[22282]: cluster 2024-04-14T15:29:04.518246+0000 mgr.a (mgr.14152) 214 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:06.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:06 smithi110 bash[22161]: cluster 2024-04-14T15:29:06.518767+0000 mgr.a (mgr.14152) 215 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:06.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:06 smithi047 bash[21449]: cluster 2024-04-14T15:29:06.518767+0000 mgr.a (mgr.14152) 215 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:07.059 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:06 smithi138 bash[22282]: cluster 2024-04-14T15:29:06.518767+0000 mgr.a (mgr.14152) 215 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:08.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:08 smithi110 bash[22161]: cluster 2024-04-14T15:29:08.519360+0000 mgr.a (mgr.14152) 216 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:08.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:08 smithi047 bash[21449]: cluster 2024-04-14T15:29:08.519360+0000 mgr.a (mgr.14152) 216 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:09.059 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:08 smithi138 bash[22282]: cluster 2024-04-14T15:29:08.519360+0000 mgr.a (mgr.14152) 216 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:10.049 INFO:teuthology.orchestra.run.smithi110.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.b/config 2024-04-14T15:29:10.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:10 smithi110 bash[22161]: cluster 2024-04-14T15:29:10.519879+0000 mgr.a (mgr.14152) 217 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:10.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:10 smithi047 bash[21449]: cluster 2024-04-14T15:29:10.519879+0000 mgr.a (mgr.14152) 217 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:11.059 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:10 smithi138 bash[22282]: cluster 2024-04-14T15:29:10.519879+0000 mgr.a (mgr.14152) 217 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:12.458 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:12 smithi047 bash[21449]: audit 2024-04-14T15:29:12.300846+0000 mon.a (mon.0) 644 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-14T15:29:12.458 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:12 smithi047 bash[21449]: audit 2024-04-14T15:29:12.307244+0000 mon.a (mon.0) 645 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-14T15:29:12.458 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:12 smithi047 bash[21449]: audit 2024-04-14T15:29:12.308950+0000 mon.a (mon.0) 646 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:29:12.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:12 smithi110 bash[22161]: audit 2024-04-14T15:29:12.300846+0000 mon.a (mon.0) 644 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-14T15:29:12.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:12 smithi110 bash[22161]: audit 2024-04-14T15:29:12.307244+0000 mon.a (mon.0) 645 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-14T15:29:12.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:12 smithi110 bash[22161]: audit 2024-04-14T15:29:12.308950+0000 mon.a (mon.0) 646 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:29:12.809 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:12 smithi138 bash[22282]: audit 2024-04-14T15:29:12.300846+0000 mon.a (mon.0) 644 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-14T15:29:12.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:12 smithi138 bash[22282]: audit 2024-04-14T15:29:12.307244+0000 mon.a (mon.0) 645 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-14T15:29:12.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:12 smithi138 bash[22282]: audit 2024-04-14T15:29:12.308950+0000 mon.a (mon.0) 646 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:29:13.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:13 smithi110 bash[22161]: audit 2024-04-14T15:29:12.293714+0000 mgr.a (mgr.14152) 218 : audit [DBG] from='client.24182 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi110:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:29:13.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:13 smithi110 bash[22161]: cluster 2024-04-14T15:29:12.520422+0000 mgr.a (mgr.14152) 219 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:13.708 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:13 smithi047 bash[21449]: audit 2024-04-14T15:29:12.293714+0000 mgr.a (mgr.14152) 218 : audit [DBG] from='client.24182 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi110:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:29:13.708 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:13 smithi047 bash[21449]: cluster 2024-04-14T15:29:12.520422+0000 mgr.a (mgr.14152) 219 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:13.809 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:13 smithi138 bash[22282]: audit 2024-04-14T15:29:12.293714+0000 mgr.a (mgr.14152) 218 : audit [DBG] from='client.24182 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi110:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:29:13.809 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:13 smithi138 bash[22282]: cluster 2024-04-14T15:29:12.520422+0000 mgr.a (mgr.14152) 219 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:15.059 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:14 smithi138 bash[22282]: audit 2024-04-14T15:29:13.776201+0000 mon.a (mon.0) 647 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:15.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:14 smithi138 bash[22282]: audit 2024-04-14T15:29:13.785537+0000 mon.a (mon.0) 648 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:15.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:14 smithi138 bash[22282]: audit 2024-04-14T15:29:13.795702+0000 mon.a (mon.0) 649 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:15.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:14 smithi138 bash[22282]: cluster 2024-04-14T15:29:14.520888+0000 mgr.a (mgr.14152) 220 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:15.144 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:14 smithi110 bash[22161]: audit 2024-04-14T15:29:13.776201+0000 mon.a (mon.0) 647 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:15.144 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:14 smithi110 bash[22161]: audit 2024-04-14T15:29:13.785537+0000 mon.a (mon.0) 648 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:15.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:14 smithi110 bash[22161]: audit 2024-04-14T15:29:13.795702+0000 mon.a (mon.0) 649 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:15.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:14 smithi110 bash[22161]: cluster 2024-04-14T15:29:14.520888+0000 mgr.a (mgr.14152) 220 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:15.208 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:14 smithi047 bash[21449]: audit 2024-04-14T15:29:13.776201+0000 mon.a (mon.0) 647 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:15.208 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:14 smithi047 bash[21449]: audit 2024-04-14T15:29:13.785537+0000 mon.a (mon.0) 648 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:15.208 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:14 smithi047 bash[21449]: audit 2024-04-14T15:29:13.795702+0000 mon.a (mon.0) 649 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:15.208 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:14 smithi047 bash[21449]: cluster 2024-04-14T15:29:14.520888+0000 mgr.a (mgr.14152) 220 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:16.869 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:16 smithi138 bash[22282]: audit 2024-04-14T15:29:15.579476+0000 mon.a (mon.0) 650 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:16.869 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:16 smithi138 bash[22282]: audit 2024-04-14T15:29:15.589013+0000 mon.a (mon.0) 651 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:16.869 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:16 smithi138 bash[22282]: audit 2024-04-14T15:29:15.599539+0000 mon.a (mon.0) 652 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:16.870 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:16 smithi138 bash[22282]: cluster 2024-04-14T15:29:16.521410+0000 mgr.a (mgr.14152) 221 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:16.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:16 smithi110 bash[22161]: audit 2024-04-14T15:29:15.579476+0000 mon.a (mon.0) 650 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:16.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:16 smithi110 bash[22161]: audit 2024-04-14T15:29:15.589013+0000 mon.a (mon.0) 651 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:16.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:16 smithi110 bash[22161]: audit 2024-04-14T15:29:15.599539+0000 mon.a (mon.0) 652 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:16.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:16 smithi110 bash[22161]: cluster 2024-04-14T15:29:16.521410+0000 mgr.a (mgr.14152) 221 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:16.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:16 smithi047 bash[21449]: audit 2024-04-14T15:29:15.579476+0000 mon.a (mon.0) 650 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:16.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:16 smithi047 bash[21449]: audit 2024-04-14T15:29:15.589013+0000 mon.a (mon.0) 651 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:16.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:16 smithi047 bash[21449]: audit 2024-04-14T15:29:15.599539+0000 mon.a (mon.0) 652 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:16.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:16 smithi047 bash[21449]: cluster 2024-04-14T15:29:16.521410+0000 mgr.a (mgr.14152) 221 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:18.865 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:18 smithi138 bash[22282]: cluster 2024-04-14T15:29:18.521966+0000 mgr.a (mgr.14152) 222 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:18.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:18 smithi110 bash[22161]: cluster 2024-04-14T15:29:18.521966+0000 mgr.a (mgr.14152) 222 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:18.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:18 smithi047 bash[21449]: cluster 2024-04-14T15:29:18.521966+0000 mgr.a (mgr.14152) 222 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:19.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:19 smithi110 bash[22161]: audit 2024-04-14T15:29:19.472562+0000 mon.b (mon.2) 13 : audit [INF] from='client.? 172.21.15.110:0/540800470' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "80847129-718e-4332-bbe1-5681f0ef9cf7"}]: dispatch 2024-04-14T15:29:19.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:19 smithi110 bash[22161]: audit 2024-04-14T15:29:19.479484+0000 mon.a (mon.0) 653 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "80847129-718e-4332-bbe1-5681f0ef9cf7"}]: dispatch 2024-04-14T15:29:19.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:19 smithi110 bash[22161]: audit 2024-04-14T15:29:19.482987+0000 mon.a (mon.0) 654 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "80847129-718e-4332-bbe1-5681f0ef9cf7"}]': finished 2024-04-14T15:29:19.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:19 smithi110 bash[22161]: cluster 2024-04-14T15:29:19.488325+0000 mon.a (mon.0) 655 : cluster [DBG] osdmap e23: 4 total, 3 up, 4 in 2024-04-14T15:29:19.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:19 smithi110 bash[22161]: audit 2024-04-14T15:29:19.488884+0000 mon.a (mon.0) 656 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-14T15:29:19.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:19 smithi047 bash[21449]: audit 2024-04-14T15:29:19.472562+0000 mon.b (mon.2) 13 : audit [INF] from='client.? 172.21.15.110:0/540800470' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "80847129-718e-4332-bbe1-5681f0ef9cf7"}]: dispatch 2024-04-14T15:29:19.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:19 smithi047 bash[21449]: audit 2024-04-14T15:29:19.479484+0000 mon.a (mon.0) 653 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "80847129-718e-4332-bbe1-5681f0ef9cf7"}]: dispatch 2024-04-14T15:29:19.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:19 smithi047 bash[21449]: audit 2024-04-14T15:29:19.482987+0000 mon.a (mon.0) 654 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "80847129-718e-4332-bbe1-5681f0ef9cf7"}]': finished 2024-04-14T15:29:19.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:19 smithi047 bash[21449]: cluster 2024-04-14T15:29:19.488325+0000 mon.a (mon.0) 655 : cluster [DBG] osdmap e23: 4 total, 3 up, 4 in 2024-04-14T15:29:19.959 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:19 smithi047 bash[21449]: audit 2024-04-14T15:29:19.488884+0000 mon.a (mon.0) 656 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-14T15:29:20.059 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:19 smithi138 bash[22282]: audit 2024-04-14T15:29:19.472562+0000 mon.b (mon.2) 13 : audit [INF] from='client.? 172.21.15.110:0/540800470' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "80847129-718e-4332-bbe1-5681f0ef9cf7"}]: dispatch 2024-04-14T15:29:20.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:19 smithi138 bash[22282]: audit 2024-04-14T15:29:19.479484+0000 mon.a (mon.0) 653 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "80847129-718e-4332-bbe1-5681f0ef9cf7"}]: dispatch 2024-04-14T15:29:20.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:19 smithi138 bash[22282]: audit 2024-04-14T15:29:19.482987+0000 mon.a (mon.0) 654 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "80847129-718e-4332-bbe1-5681f0ef9cf7"}]': finished 2024-04-14T15:29:20.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:19 smithi138 bash[22282]: cluster 2024-04-14T15:29:19.488325+0000 mon.a (mon.0) 655 : cluster [DBG] osdmap e23: 4 total, 3 up, 4 in 2024-04-14T15:29:20.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:19 smithi138 bash[22282]: audit 2024-04-14T15:29:19.488884+0000 mon.a (mon.0) 656 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-14T15:29:20.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:20 smithi110 bash[22161]: audit 2024-04-14T15:29:20.210376+0000 mon.b (mon.2) 14 : audit [DBG] from='client.? 172.21.15.110:0/1543804664' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-14T15:29:20.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:20 smithi110 bash[22161]: cluster 2024-04-14T15:29:20.522484+0000 mgr.a (mgr.14152) 223 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:20.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:20 smithi047 bash[21449]: audit 2024-04-14T15:29:20.210376+0000 mon.b (mon.2) 14 : audit [DBG] from='client.? 172.21.15.110:0/1543804664' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-14T15:29:20.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:20 smithi047 bash[21449]: cluster 2024-04-14T15:29:20.522484+0000 mgr.a (mgr.14152) 223 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:21.059 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:20 smithi138 bash[22282]: audit 2024-04-14T15:29:20.210376+0000 mon.b (mon.2) 14 : audit [DBG] from='client.? 172.21.15.110:0/1543804664' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-14T15:29:21.059 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:20 smithi138 bash[22282]: cluster 2024-04-14T15:29:20.522484+0000 mgr.a (mgr.14152) 223 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:22.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:22 smithi110 bash[22161]: cluster 2024-04-14T15:29:22.523001+0000 mgr.a (mgr.14152) 224 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:22.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:22 smithi047 bash[21449]: cluster 2024-04-14T15:29:22.523001+0000 mgr.a (mgr.14152) 224 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:23.059 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:22 smithi138 bash[22282]: cluster 2024-04-14T15:29:22.523001+0000 mgr.a (mgr.14152) 224 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:25.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:25 smithi110 bash[22161]: audit 2024-04-14T15:29:24.136287+0000 mon.a (mon.0) 657 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:25.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:25 smithi110 bash[22161]: audit 2024-04-14T15:29:24.144362+0000 mon.a (mon.0) 658 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:25.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:25 smithi110 bash[22161]: audit 2024-04-14T15:29:24.154312+0000 mon.a (mon.0) 659 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:25.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:25 smithi110 bash[22161]: cluster 2024-04-14T15:29:24.523535+0000 mgr.a (mgr.14152) 225 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:25.458 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:25 smithi047 bash[21449]: audit 2024-04-14T15:29:24.136287+0000 mon.a (mon.0) 657 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:25.458 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:25 smithi047 bash[21449]: audit 2024-04-14T15:29:24.144362+0000 mon.a (mon.0) 658 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:25.458 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:25 smithi047 bash[21449]: audit 2024-04-14T15:29:24.154312+0000 mon.a (mon.0) 659 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:25.458 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:25 smithi047 bash[21449]: cluster 2024-04-14T15:29:24.523535+0000 mgr.a (mgr.14152) 225 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:25.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:25 smithi138 bash[22282]: audit 2024-04-14T15:29:24.136287+0000 mon.a (mon.0) 657 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:25.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:25 smithi138 bash[22282]: audit 2024-04-14T15:29:24.144362+0000 mon.a (mon.0) 658 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:25.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:25 smithi138 bash[22282]: audit 2024-04-14T15:29:24.154312+0000 mon.a (mon.0) 659 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:25.560 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:25 smithi138 bash[22282]: cluster 2024-04-14T15:29:24.523535+0000 mgr.a (mgr.14152) 225 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:26.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:26 smithi110 bash[22161]: cluster 2024-04-14T15:29:26.524077+0000 mgr.a (mgr.14152) 226 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:26.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:26 smithi047 bash[21449]: cluster 2024-04-14T15:29:26.524077+0000 mgr.a (mgr.14152) 226 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:27.059 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:26 smithi138 bash[22282]: cluster 2024-04-14T15:29:26.524077+0000 mgr.a (mgr.14152) 226 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:28.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:28 smithi110 bash[22161]: cluster 2024-04-14T15:29:28.524690+0000 mgr.a (mgr.14152) 227 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:28.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:28 smithi047 bash[21449]: cluster 2024-04-14T15:29:28.524690+0000 mgr.a (mgr.14152) 227 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:29.059 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:28 smithi138 bash[22282]: cluster 2024-04-14T15:29:28.524690+0000 mgr.a (mgr.14152) 227 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:30.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:30 smithi110 bash[22161]: cluster 2024-04-14T15:29:30.525183+0000 mgr.a (mgr.14152) 228 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:30.927 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:30 smithi047 bash[21449]: cluster 2024-04-14T15:29:30.525183+0000 mgr.a (mgr.14152) 228 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:31.059 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:30 smithi138 bash[22282]: cluster 2024-04-14T15:29:30.525183+0000 mgr.a (mgr.14152) 228 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:32.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:32 smithi138 bash[22282]: audit 2024-04-14T15:29:32.210888+0000 mon.a (mon.0) 660 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-04-14T15:29:32.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:32 smithi138 bash[22282]: audit 2024-04-14T15:29:32.212957+0000 mon.a (mon.0) 661 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:29:32.612 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:32 smithi110 bash[22161]: audit 2024-04-14T15:29:32.210888+0000 mon.a (mon.0) 660 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-04-14T15:29:32.612 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:32 smithi110 bash[22161]: audit 2024-04-14T15:29:32.212957+0000 mon.a (mon.0) 661 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:29:32.708 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:32 smithi047 bash[21449]: audit 2024-04-14T15:29:32.210888+0000 mon.a (mon.0) 660 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-04-14T15:29:32.708 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:32 smithi047 bash[21449]: audit 2024-04-14T15:29:32.212957+0000 mon.a (mon.0) 661 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:29:33.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:33 smithi138 bash[22282]: cephadm 2024-04-14T15:29:32.214691+0000 mgr.a (mgr.14152) 229 : cephadm [INF] Deploying daemon osd.3 on smithi110 2024-04-14T15:29:33.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:33 smithi138 bash[22282]: cluster 2024-04-14T15:29:32.525822+0000 mgr.a (mgr.14152) 230 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:33.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:33 smithi110 bash[22161]: cephadm 2024-04-14T15:29:32.214691+0000 mgr.a (mgr.14152) 229 : cephadm [INF] Deploying daemon osd.3 on smithi110 2024-04-14T15:29:33.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:33 smithi110 bash[22161]: cluster 2024-04-14T15:29:32.525822+0000 mgr.a (mgr.14152) 230 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:33.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:33 smithi047 bash[21449]: cephadm 2024-04-14T15:29:32.214691+0000 mgr.a (mgr.14152) 229 : cephadm [INF] Deploying daemon osd.3 on smithi110 2024-04-14T15:29:33.708 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:33 smithi047 bash[21449]: cluster 2024-04-14T15:29:32.525822+0000 mgr.a (mgr.14152) 230 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:35.309 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:34 smithi138 bash[22282]: audit 2024-04-14T15:29:33.998438+0000 mon.a (mon.0) 662 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:35.309 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:34 smithi138 bash[22282]: audit 2024-04-14T15:29:34.007264+0000 mon.a (mon.0) 663 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:35.309 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:34 smithi138 bash[22282]: cephadm 2024-04-14T15:29:34.010565+0000 mgr.a (mgr.14152) 231 : cephadm [INF] Detected new or changed devices on smithi110 2024-04-14T15:29:35.310 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:34 smithi138 bash[22282]: audit 2024-04-14T15:29:34.017750+0000 mon.a (mon.0) 664 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:35.310 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:34 smithi138 bash[22282]: cluster 2024-04-14T15:29:34.526495+0000 mgr.a (mgr.14152) 232 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:35.394 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:34 smithi110 bash[22161]: audit 2024-04-14T15:29:33.998438+0000 mon.a (mon.0) 662 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:35.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:34 smithi110 bash[22161]: audit 2024-04-14T15:29:34.007264+0000 mon.a (mon.0) 663 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:35.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:34 smithi110 bash[22161]: cephadm 2024-04-14T15:29:34.010565+0000 mgr.a (mgr.14152) 231 : cephadm [INF] Detected new or changed devices on smithi110 2024-04-14T15:29:35.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:34 smithi110 bash[22161]: audit 2024-04-14T15:29:34.017750+0000 mon.a (mon.0) 664 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:35.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:34 smithi110 bash[22161]: cluster 2024-04-14T15:29:34.526495+0000 mgr.a (mgr.14152) 232 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:35.458 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:34 smithi047 bash[21449]: audit 2024-04-14T15:29:33.998438+0000 mon.a (mon.0) 662 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:35.458 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:34 smithi047 bash[21449]: audit 2024-04-14T15:29:34.007264+0000 mon.a (mon.0) 663 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:35.458 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:34 smithi047 bash[21449]: cephadm 2024-04-14T15:29:34.010565+0000 mgr.a (mgr.14152) 231 : cephadm [INF] Detected new or changed devices on smithi110 2024-04-14T15:29:35.458 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:34 smithi047 bash[21449]: audit 2024-04-14T15:29:34.017750+0000 mon.a (mon.0) 664 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:35.458 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:34 smithi047 bash[21449]: cluster 2024-04-14T15:29:34.526495+0000 mgr.a (mgr.14152) 232 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:36.040 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:35 smithi110 systemd[1]: /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-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-14T15:29:36.040 INFO:journalctl@ceph.mgr.b.smithi110.stdout:Apr 14 15:29:35 smithi110 systemd[1]: /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-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-14T15:29:36.040 INFO:journalctl@ceph.osd.2.smithi110.stdout:Apr 14 15:29:35 smithi110 systemd[1]: /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-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-14T15:29:36.320 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:36 smithi110 systemd[1]: /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-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-14T15:29:36.320 INFO:journalctl@ceph.mgr.b.smithi110.stdout:Apr 14 15:29:36 smithi110 systemd[1]: /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-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-14T15:29:36.321 INFO:journalctl@ceph.osd.2.smithi110.stdout:Apr 14 15:29:36 smithi110 systemd[1]: /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-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-14T15:29:37.059 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:36 smithi138 bash[22282]: audit 2024-04-14T15:29:35.803946+0000 mon.a (mon.0) 665 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:37.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:36 smithi138 bash[22282]: audit 2024-04-14T15:29:35.812921+0000 mon.a (mon.0) 666 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:37.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:36 smithi138 bash[22282]: audit 2024-04-14T15:29:35.823465+0000 mon.a (mon.0) 667 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:37.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:36 smithi138 bash[22282]: audit 2024-04-14T15:29:36.332407+0000 mon.a (mon.0) 668 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:37.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:36 smithi138 bash[22282]: audit 2024-04-14T15:29:36.341787+0000 mon.a (mon.0) 669 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:37.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:36 smithi138 bash[22282]: audit 2024-04-14T15:29:36.350103+0000 mon.a (mon.0) 670 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:29:37.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:36 smithi138 bash[22282]: audit 2024-04-14T15:29:36.361145+0000 mon.a (mon.0) 671 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:29:37.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:36 smithi138 bash[22282]: audit 2024-04-14T15:29:36.364120+0000 mon.a (mon.0) 672 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:29:37.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:36 smithi138 bash[22282]: audit 2024-04-14T15:29:36.377340+0000 mon.a (mon.0) 673 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:37.060 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:36 smithi138 bash[22282]: cluster 2024-04-14T15:29:36.527031+0000 mgr.a (mgr.14152) 233 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:37.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:36 smithi110 bash[22161]: audit 2024-04-14T15:29:35.803946+0000 mon.a (mon.0) 665 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:37.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:36 smithi110 bash[22161]: audit 2024-04-14T15:29:35.812921+0000 mon.a (mon.0) 666 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:37.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:36 smithi110 bash[22161]: audit 2024-04-14T15:29:35.823465+0000 mon.a (mon.0) 667 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:37.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:36 smithi110 bash[22161]: audit 2024-04-14T15:29:36.332407+0000 mon.a (mon.0) 668 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:37.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:36 smithi110 bash[22161]: audit 2024-04-14T15:29:36.341787+0000 mon.a (mon.0) 669 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:37.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:36 smithi110 bash[22161]: audit 2024-04-14T15:29:36.350103+0000 mon.a (mon.0) 670 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:29:37.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:36 smithi110 bash[22161]: audit 2024-04-14T15:29:36.361145+0000 mon.a (mon.0) 671 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:29:37.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:36 smithi110 bash[22161]: audit 2024-04-14T15:29:36.364120+0000 mon.a (mon.0) 672 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:29:37.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:36 smithi110 bash[22161]: audit 2024-04-14T15:29:36.377340+0000 mon.a (mon.0) 673 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:37.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:36 smithi110 bash[22161]: cluster 2024-04-14T15:29:36.527031+0000 mgr.a (mgr.14152) 233 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:37.208 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:36 smithi047 bash[21449]: audit 2024-04-14T15:29:35.803946+0000 mon.a (mon.0) 665 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:37.208 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:36 smithi047 bash[21449]: audit 2024-04-14T15:29:35.812921+0000 mon.a (mon.0) 666 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:37.208 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:36 smithi047 bash[21449]: audit 2024-04-14T15:29:35.823465+0000 mon.a (mon.0) 667 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:37.208 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:36 smithi047 bash[21449]: audit 2024-04-14T15:29:36.332407+0000 mon.a (mon.0) 668 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:37.208 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:36 smithi047 bash[21449]: audit 2024-04-14T15:29:36.341787+0000 mon.a (mon.0) 669 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:37.208 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:36 smithi047 bash[21449]: audit 2024-04-14T15:29:36.350103+0000 mon.a (mon.0) 670 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:29:37.208 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:36 smithi047 bash[21449]: audit 2024-04-14T15:29:36.361145+0000 mon.a (mon.0) 671 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:29:37.208 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:36 smithi047 bash[21449]: audit 2024-04-14T15:29:36.364120+0000 mon.a (mon.0) 672 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:29:37.209 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:36 smithi047 bash[21449]: audit 2024-04-14T15:29:36.377340+0000 mon.a (mon.0) 673 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:37.209 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:36 smithi047 bash[21449]: cluster 2024-04-14T15:29:36.527031+0000 mgr.a (mgr.14152) 233 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:38.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:38 smithi110 bash[22161]: cluster 2024-04-14T15:29:38.527562+0000 mgr.a (mgr.14152) 234 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:38.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:38 smithi047 bash[21449]: cluster 2024-04-14T15:29:38.527562+0000 mgr.a (mgr.14152) 234 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:39.059 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:38 smithi138 bash[22282]: cluster 2024-04-14T15:29:38.527562+0000 mgr.a (mgr.14152) 234 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:40.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:40 smithi110 bash[22161]: cluster 2024-04-14T15:29:40.528136+0000 mgr.a (mgr.14152) 235 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:40.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:40 smithi047 bash[21449]: cluster 2024-04-14T15:29:40.528136+0000 mgr.a (mgr.14152) 235 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:41.059 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:40 smithi138 bash[22282]: cluster 2024-04-14T15:29:40.528136+0000 mgr.a (mgr.14152) 235 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:42.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:42 smithi110 bash[22161]: audit 2024-04-14T15:29:42.264029+0000 mon.b (mon.2) 15 : audit [INF] from='osd.3 [v2:172.21.15.110:6808/1571586325,v1:172.21.15.110:6809/1571586325]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-04-14T15:29:42.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:42 smithi110 bash[22161]: audit 2024-04-14T15:29:42.271436+0000 mon.a (mon.0) 674 : audit [INF] from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-04-14T15:29:42.698 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:42 smithi138 bash[22282]: audit 2024-04-14T15:29:42.264029+0000 mon.b (mon.2) 15 : audit [INF] from='osd.3 [v2:172.21.15.110:6808/1571586325,v1:172.21.15.110:6809/1571586325]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-04-14T15:29:42.698 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:42 smithi138 bash[22282]: audit 2024-04-14T15:29:42.271436+0000 mon.a (mon.0) 674 : audit [INF] from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-04-14T15:29:42.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:42 smithi047 bash[21449]: audit 2024-04-14T15:29:42.264029+0000 mon.b (mon.2) 15 : audit [INF] from='osd.3 [v2:172.21.15.110:6808/1571586325,v1:172.21.15.110:6809/1571586325]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-04-14T15:29:42.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:42 smithi047 bash[21449]: audit 2024-04-14T15:29:42.271436+0000 mon.a (mon.0) 674 : audit [INF] from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-04-14T15:29:43.604 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:43 smithi110 bash[22161]: audit 2024-04-14T15:29:42.324412+0000 mon.b (mon.2) 16 : audit [INF] from='osd.3 [v2:172.21.15.110:6808/1571586325,v1:172.21.15.110:6809/1571586325]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi110", "root=default"]}]: dispatch 2024-04-14T15:29:43.604 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:43 smithi110 bash[22161]: audit 2024-04-14T15:29:42.324894+0000 mon.a (mon.0) 675 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-04-14T15:29:43.605 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:43 smithi110 bash[22161]: cluster 2024-04-14T15:29:42.329975+0000 mon.a (mon.0) 676 : cluster [DBG] osdmap e24: 4 total, 3 up, 4 in 2024-04-14T15:29:43.605 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:43 smithi110 bash[22161]: audit 2024-04-14T15:29:42.331029+0000 mon.a (mon.0) 677 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-14T15:29:43.605 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:43 smithi110 bash[22161]: audit 2024-04-14T15:29:42.339068+0000 mon.a (mon.0) 678 : audit [INF] from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi110", "root=default"]}]: dispatch 2024-04-14T15:29:43.605 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:43 smithi110 bash[22161]: cluster 2024-04-14T15:29:42.528671+0000 mgr.a (mgr.14152) 236 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:43.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:43 smithi047 bash[21449]: audit 2024-04-14T15:29:42.324412+0000 mon.b (mon.2) 16 : audit [INF] from='osd.3 [v2:172.21.15.110:6808/1571586325,v1:172.21.15.110:6809/1571586325]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi110", "root=default"]}]: dispatch 2024-04-14T15:29:43.708 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:43 smithi047 bash[21449]: audit 2024-04-14T15:29:42.324894+0000 mon.a (mon.0) 675 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-04-14T15:29:43.708 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:43 smithi047 bash[21449]: cluster 2024-04-14T15:29:42.329975+0000 mon.a (mon.0) 676 : cluster [DBG] osdmap e24: 4 total, 3 up, 4 in 2024-04-14T15:29:43.708 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:43 smithi047 bash[21449]: audit 2024-04-14T15:29:42.331029+0000 mon.a (mon.0) 677 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-14T15:29:43.708 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:43 smithi047 bash[21449]: audit 2024-04-14T15:29:42.339068+0000 mon.a (mon.0) 678 : audit [INF] from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi110", "root=default"]}]: dispatch 2024-04-14T15:29:43.708 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:43 smithi047 bash[21449]: cluster 2024-04-14T15:29:42.528671+0000 mgr.a (mgr.14152) 236 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:43.809 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:43 smithi138 bash[22282]: audit 2024-04-14T15:29:42.324412+0000 mon.b (mon.2) 16 : audit [INF] from='osd.3 [v2:172.21.15.110:6808/1571586325,v1:172.21.15.110:6809/1571586325]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi110", "root=default"]}]: dispatch 2024-04-14T15:29:43.809 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:43 smithi138 bash[22282]: audit 2024-04-14T15:29:42.324894+0000 mon.a (mon.0) 675 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-04-14T15:29:43.809 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:43 smithi138 bash[22282]: cluster 2024-04-14T15:29:42.329975+0000 mon.a (mon.0) 676 : cluster [DBG] osdmap e24: 4 total, 3 up, 4 in 2024-04-14T15:29:43.809 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:43 smithi138 bash[22282]: audit 2024-04-14T15:29:42.331029+0000 mon.a (mon.0) 677 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-14T15:29:43.809 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:43 smithi138 bash[22282]: audit 2024-04-14T15:29:42.339068+0000 mon.a (mon.0) 678 : audit [INF] from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi110", "root=default"]}]: dispatch 2024-04-14T15:29:43.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:43 smithi138 bash[22282]: cluster 2024-04-14T15:29:42.528671+0000 mgr.a (mgr.14152) 236 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-04-14T15:29:44.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:44 smithi110 bash[22161]: audit 2024-04-14T15:29:43.335589+0000 mon.a (mon.0) 679 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi110", "root=default"]}]': finished 2024-04-14T15:29:44.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:44 smithi110 bash[22161]: cluster 2024-04-14T15:29:43.340977+0000 mon.a (mon.0) 680 : cluster [DBG] osdmap e25: 4 total, 3 up, 4 in 2024-04-14T15:29:44.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:44 smithi110 bash[22161]: audit 2024-04-14T15:29:43.342092+0000 mon.a (mon.0) 681 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-14T15:29:44.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:44 smithi110 bash[22161]: audit 2024-04-14T15:29:43.351004+0000 mon.a (mon.0) 682 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-14T15:29:44.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:44 smithi110 bash[22161]: audit 2024-04-14T15:29:43.632319+0000 mon.a (mon.0) 683 : audit [INF] from='osd.3 ' entity='osd.3' 2024-04-14T15:29:44.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:44 smithi110 bash[22161]: cluster 2024-04-14T15:29:43.820091+0000 mon.a (mon.0) 684 : cluster [INF] osd.3 [v2:172.21.15.110:6808/1571586325,v1:172.21.15.110:6809/1571586325] boot 2024-04-14T15:29:44.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:44 smithi110 bash[22161]: cluster 2024-04-14T15:29:43.820211+0000 mon.a (mon.0) 685 : cluster [DBG] osdmap e26: 4 total, 4 up, 4 in 2024-04-14T15:29:44.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:44 smithi110 bash[22161]: audit 2024-04-14T15:29:43.820566+0000 mon.a (mon.0) 686 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-14T15:29:44.708 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:44 smithi047 bash[21449]: audit 2024-04-14T15:29:43.335589+0000 mon.a (mon.0) 679 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi110", "root=default"]}]': finished 2024-04-14T15:29:44.708 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:44 smithi047 bash[21449]: cluster 2024-04-14T15:29:43.340977+0000 mon.a (mon.0) 680 : cluster [DBG] osdmap e25: 4 total, 3 up, 4 in 2024-04-14T15:29:44.708 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:44 smithi047 bash[21449]: audit 2024-04-14T15:29:43.342092+0000 mon.a (mon.0) 681 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-14T15:29:44.708 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:44 smithi047 bash[21449]: audit 2024-04-14T15:29:43.351004+0000 mon.a (mon.0) 682 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-14T15:29:44.708 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:44 smithi047 bash[21449]: audit 2024-04-14T15:29:43.632319+0000 mon.a (mon.0) 683 : audit [INF] from='osd.3 ' entity='osd.3' 2024-04-14T15:29:44.708 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:44 smithi047 bash[21449]: cluster 2024-04-14T15:29:43.820091+0000 mon.a (mon.0) 684 : cluster [INF] osd.3 [v2:172.21.15.110:6808/1571586325,v1:172.21.15.110:6809/1571586325] boot 2024-04-14T15:29:44.708 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:44 smithi047 bash[21449]: cluster 2024-04-14T15:29:43.820211+0000 mon.a (mon.0) 685 : cluster [DBG] osdmap e26: 4 total, 4 up, 4 in 2024-04-14T15:29:44.708 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:44 smithi047 bash[21449]: audit 2024-04-14T15:29:43.820566+0000 mon.a (mon.0) 686 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-14T15:29:44.809 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:44 smithi138 bash[22282]: audit 2024-04-14T15:29:43.335589+0000 mon.a (mon.0) 679 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi110", "root=default"]}]': finished 2024-04-14T15:29:44.809 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:44 smithi138 bash[22282]: cluster 2024-04-14T15:29:43.340977+0000 mon.a (mon.0) 680 : cluster [DBG] osdmap e25: 4 total, 3 up, 4 in 2024-04-14T15:29:44.809 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:44 smithi138 bash[22282]: audit 2024-04-14T15:29:43.342092+0000 mon.a (mon.0) 681 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-14T15:29:44.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:44 smithi138 bash[22282]: audit 2024-04-14T15:29:43.351004+0000 mon.a (mon.0) 682 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-14T15:29:44.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:44 smithi138 bash[22282]: audit 2024-04-14T15:29:43.632319+0000 mon.a (mon.0) 683 : audit [INF] from='osd.3 ' entity='osd.3' 2024-04-14T15:29:44.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:44 smithi138 bash[22282]: cluster 2024-04-14T15:29:43.820091+0000 mon.a (mon.0) 684 : cluster [INF] osd.3 [v2:172.21.15.110:6808/1571586325,v1:172.21.15.110:6809/1571586325] boot 2024-04-14T15:29:44.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:44 smithi138 bash[22282]: cluster 2024-04-14T15:29:43.820211+0000 mon.a (mon.0) 685 : cluster [DBG] osdmap e26: 4 total, 4 up, 4 in 2024-04-14T15:29:44.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:44 smithi138 bash[22282]: audit 2024-04-14T15:29:43.820566+0000 mon.a (mon.0) 686 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-14T15:29:45.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:45 smithi110 bash[22161]: cluster 2024-04-14T15:29:43.228098+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-04-14T15:29:45.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:45 smithi110 bash[22161]: cluster 2024-04-14T15:29:43.228227+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-04-14T15:29:45.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:45 smithi110 bash[22161]: audit 2024-04-14T15:29:44.362639+0000 mon.a (mon.0) 687 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:45.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:45 smithi110 bash[22161]: audit 2024-04-14T15:29:44.371314+0000 mon.a (mon.0) 688 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:45.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:45 smithi110 bash[22161]: audit 2024-04-14T15:29:44.381299+0000 mon.a (mon.0) 689 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:45.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:45 smithi110 bash[22161]: cluster 2024-04-14T15:29:44.529187+0000 mgr.a (mgr.14152) 237 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:29:45.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:45 smithi110 bash[22161]: cluster 2024-04-14T15:29:44.822122+0000 mon.a (mon.0) 690 : cluster [DBG] osdmap e27: 4 total, 4 up, 4 in 2024-04-14T15:29:45.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:45 smithi047 bash[21449]: cluster 2024-04-14T15:29:43.228098+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-04-14T15:29:45.708 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:45 smithi047 bash[21449]: cluster 2024-04-14T15:29:43.228227+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-04-14T15:29:45.708 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:45 smithi047 bash[21449]: audit 2024-04-14T15:29:44.362639+0000 mon.a (mon.0) 687 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:45.708 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:45 smithi047 bash[21449]: audit 2024-04-14T15:29:44.371314+0000 mon.a (mon.0) 688 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:45.708 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:45 smithi047 bash[21449]: audit 2024-04-14T15:29:44.381299+0000 mon.a (mon.0) 689 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:45.708 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:45 smithi047 bash[21449]: cluster 2024-04-14T15:29:44.529187+0000 mgr.a (mgr.14152) 237 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:29:45.708 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:45 smithi047 bash[21449]: cluster 2024-04-14T15:29:44.822122+0000 mon.a (mon.0) 690 : cluster [DBG] osdmap e27: 4 total, 4 up, 4 in 2024-04-14T15:29:45.809 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:45 smithi138 bash[22282]: cluster 2024-04-14T15:29:43.228098+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-04-14T15:29:45.809 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:45 smithi138 bash[22282]: cluster 2024-04-14T15:29:43.228227+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-04-14T15:29:45.809 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:45 smithi138 bash[22282]: audit 2024-04-14T15:29:44.362639+0000 mon.a (mon.0) 687 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:45.809 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:45 smithi138 bash[22282]: audit 2024-04-14T15:29:44.371314+0000 mon.a (mon.0) 688 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:45.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:45 smithi138 bash[22282]: audit 2024-04-14T15:29:44.381299+0000 mon.a (mon.0) 689 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:45.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:45 smithi138 bash[22282]: cluster 2024-04-14T15:29:44.529187+0000 mgr.a (mgr.14152) 237 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:29:45.810 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:45 smithi138 bash[22282]: cluster 2024-04-14T15:29:44.822122+0000 mon.a (mon.0) 690 : cluster [DBG] osdmap e27: 4 total, 4 up, 4 in 2024-04-14T15:29:46.561 INFO:teuthology.orchestra.run.smithi110.stdout:Created osd(s) 3 on host 'smithi110' 2024-04-14T15:29:46.900 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:46 smithi110 bash[22161]: cluster 2024-04-14T15:29:45.823791+0000 mon.a (mon.0) 691 : cluster [DBG] osdmap e28: 4 total, 4 up, 4 in 2024-04-14T15:29:46.900 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:46 smithi110 bash[22161]: cluster 2024-04-14T15:29:46.529738+0000 mgr.a (mgr.14152) 238 : cluster [DBG] pgmap v187: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-04-14T15:29:46.900 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:46 smithi110 bash[22161]: audit 2024-04-14T15:29:46.536474+0000 mon.a (mon.0) 692 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:46.900 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:46 smithi110 bash[22161]: audit 2024-04-14T15:29:46.545485+0000 mon.a (mon.0) 693 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:46.900 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:46 smithi110 bash[22161]: audit 2024-04-14T15:29:46.561971+0000 mon.a (mon.0) 694 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:29:46.900 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:46 smithi110 bash[22161]: audit 2024-04-14T15:29:46.568443+0000 mon.a (mon.0) 695 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-04-14T15:29:46.900 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:46 smithi110 bash[22161]: audit 2024-04-14T15:29:46.570307+0000 mon.a (mon.0) 696 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-04-14T15:29:46.900 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:46 smithi110 bash[22161]: audit 2024-04-14T15:29:46.578177+0000 mon.a (mon.0) 697 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:46.900 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:46 smithi110 bash[22161]: audit 2024-04-14T15:29:46.582195+0000 mon.a (mon.0) 698 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:29:46.900 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:46 smithi110 bash[22161]: audit 2024-04-14T15:29:46.584062+0000 mon.a (mon.0) 699 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:29:46.900 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:46 smithi110 bash[22161]: audit 2024-04-14T15:29:46.594243+0000 mon.a (mon.0) 700 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:47.208 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:46 smithi047 bash[21449]: cluster 2024-04-14T15:29:45.823791+0000 mon.a (mon.0) 691 : cluster [DBG] osdmap e28: 4 total, 4 up, 4 in 2024-04-14T15:29:47.208 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:46 smithi047 bash[21449]: cluster 2024-04-14T15:29:46.529738+0000 mgr.a (mgr.14152) 238 : cluster [DBG] pgmap v187: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-04-14T15:29:47.208 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:46 smithi047 bash[21449]: audit 2024-04-14T15:29:46.536474+0000 mon.a (mon.0) 692 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:47.208 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:46 smithi047 bash[21449]: audit 2024-04-14T15:29:46.545485+0000 mon.a (mon.0) 693 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:47.208 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:46 smithi047 bash[21449]: audit 2024-04-14T15:29:46.561971+0000 mon.a (mon.0) 694 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:29:47.208 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:46 smithi047 bash[21449]: audit 2024-04-14T15:29:46.568443+0000 mon.a (mon.0) 695 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-04-14T15:29:47.208 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:46 smithi047 bash[21449]: audit 2024-04-14T15:29:46.570307+0000 mon.a (mon.0) 696 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-04-14T15:29:47.208 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:46 smithi047 bash[21449]: audit 2024-04-14T15:29:46.578177+0000 mon.a (mon.0) 697 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:47.208 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:46 smithi047 bash[21449]: audit 2024-04-14T15:29:46.582195+0000 mon.a (mon.0) 698 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:29:47.208 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:46 smithi047 bash[21449]: audit 2024-04-14T15:29:46.584062+0000 mon.a (mon.0) 699 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:29:47.208 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:46 smithi047 bash[21449]: audit 2024-04-14T15:29:46.594243+0000 mon.a (mon.0) 700 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:47.309 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:46 smithi138 bash[22282]: cluster 2024-04-14T15:29:45.823791+0000 mon.a (mon.0) 691 : cluster [DBG] osdmap e28: 4 total, 4 up, 4 in 2024-04-14T15:29:47.309 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:46 smithi138 bash[22282]: cluster 2024-04-14T15:29:46.529738+0000 mgr.a (mgr.14152) 238 : cluster [DBG] pgmap v187: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-04-14T15:29:47.309 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:46 smithi138 bash[22282]: audit 2024-04-14T15:29:46.536474+0000 mon.a (mon.0) 692 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:47.310 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:46 smithi138 bash[22282]: audit 2024-04-14T15:29:46.545485+0000 mon.a (mon.0) 693 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:47.310 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:46 smithi138 bash[22282]: audit 2024-04-14T15:29:46.561971+0000 mon.a (mon.0) 694 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:29:47.310 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:46 smithi138 bash[22282]: audit 2024-04-14T15:29:46.568443+0000 mon.a (mon.0) 695 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-04-14T15:29:47.310 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:46 smithi138 bash[22282]: audit 2024-04-14T15:29:46.570307+0000 mon.a (mon.0) 696 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-04-14T15:29:47.310 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:46 smithi138 bash[22282]: audit 2024-04-14T15:29:46.578177+0000 mon.a (mon.0) 697 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:47.310 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:46 smithi138 bash[22282]: audit 2024-04-14T15:29:46.582195+0000 mon.a (mon.0) 698 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:29:47.310 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:46 smithi138 bash[22282]: audit 2024-04-14T15:29:46.584062+0000 mon.a (mon.0) 699 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:29:47.310 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:46 smithi138 bash[22282]: audit 2024-04-14T15:29:46.594243+0000 mon.a (mon.0) 700 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:47.576 DEBUG:teuthology.orchestra.run.smithi110:osd.3> sudo journalctl -f -n 0 -u ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@osd.3.service 2024-04-14T15:29:47.578 INFO:tasks.cephadm:Deploying osd.4 on smithi138 with /dev/vg_nvme/lv_4... 2024-04-14T15:29:47.579 DEBUG:teuthology.orchestra.run.smithi138:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_4 2024-04-14T15:29:47.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:47 smithi110 bash[22161]: cephadm 2024-04-14T15:29:46.571791+0000 mgr.a (mgr.14152) 239 : cephadm [INF] Adjusting osd_memory_target on smithi110 to 8120M 2024-04-14T15:29:47.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:47 smithi110 bash[22161]: cluster 2024-04-14T15:29:46.840716+0000 mon.a (mon.0) 701 : cluster [DBG] osdmap e29: 4 total, 4 up, 4 in 2024-04-14T15:29:48.207 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:47 smithi047 bash[21449]: cephadm 2024-04-14T15:29:46.571791+0000 mgr.a (mgr.14152) 239 : cephadm [INF] Adjusting osd_memory_target on smithi110 to 8120M 2024-04-14T15:29:48.207 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:47 smithi047 bash[21449]: cluster 2024-04-14T15:29:46.840716+0000 mon.a (mon.0) 701 : cluster [DBG] osdmap e29: 4 total, 4 up, 4 in 2024-04-14T15:29:48.309 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:47 smithi138 bash[22282]: cephadm 2024-04-14T15:29:46.571791+0000 mgr.a (mgr.14152) 239 : cephadm [INF] Adjusting osd_memory_target on smithi110 to 8120M 2024-04-14T15:29:48.309 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:47 smithi138 bash[22282]: cluster 2024-04-14T15:29:46.840716+0000 mon.a (mon.0) 701 : cluster [DBG] osdmap e29: 4 total, 4 up, 4 in 2024-04-14T15:29:49.146 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:48 smithi110 bash[22161]: cluster 2024-04-14T15:29:47.842976+0000 mon.a (mon.0) 702 : cluster [DBG] osdmap e30: 4 total, 4 up, 4 in 2024-04-14T15:29:49.146 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:48 smithi110 bash[22161]: cluster 2024-04-14T15:29:48.530332+0000 mgr.a (mgr.14152) 240 : cluster [DBG] pgmap v190: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 112 MiB used, 358 GiB / 358 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-04-14T15:29:49.207 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:48 smithi047 bash[21449]: cluster 2024-04-14T15:29:47.842976+0000 mon.a (mon.0) 702 : cluster [DBG] osdmap e30: 4 total, 4 up, 4 in 2024-04-14T15:29:49.207 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:48 smithi047 bash[21449]: cluster 2024-04-14T15:29:48.530332+0000 mgr.a (mgr.14152) 240 : cluster [DBG] pgmap v190: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 112 MiB used, 358 GiB / 358 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-04-14T15:29:49.309 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:48 smithi138 bash[22282]: cluster 2024-04-14T15:29:47.842976+0000 mon.a (mon.0) 702 : cluster [DBG] osdmap e30: 4 total, 4 up, 4 in 2024-04-14T15:29:49.309 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:48 smithi138 bash[22282]: cluster 2024-04-14T15:29:48.530332+0000 mgr.a (mgr.14152) 240 : cluster [DBG] pgmap v190: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 112 MiB used, 358 GiB / 358 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-04-14T15:29:50.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:50 smithi110 bash[22161]: cluster 2024-04-14T15:29:50.531056+0000 mgr.a (mgr.14152) 241 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 101 KiB/s, 0 objects/s recovering 2024-04-14T15:29:50.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:50 smithi047 bash[21449]: cluster 2024-04-14T15:29:50.531056+0000 mgr.a (mgr.14152) 241 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 101 KiB/s, 0 objects/s recovering 2024-04-14T15:29:51.059 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:50 smithi138 bash[22282]: cluster 2024-04-14T15:29:50.531056+0000 mgr.a (mgr.14152) 241 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 101 KiB/s, 0 objects/s recovering 2024-04-14T15:29:51.283 INFO:teuthology.orchestra.run.smithi138.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.c/config 2024-04-14T15:29:52.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:52 smithi110 bash[22161]: cluster 2024-04-14T15:29:52.531686+0000 mgr.a (mgr.14152) 242 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 86 KiB/s, 0 objects/s recovering 2024-04-14T15:29:52.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:52 smithi047 bash[21449]: cluster 2024-04-14T15:29:52.531686+0000 mgr.a (mgr.14152) 242 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 86 KiB/s, 0 objects/s recovering 2024-04-14T15:29:53.059 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:52 smithi138 bash[22282]: cluster 2024-04-14T15:29:52.531686+0000 mgr.a (mgr.14152) 242 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 86 KiB/s, 0 objects/s recovering 2024-04-14T15:29:54.202 INFO:teuthology.orchestra.run.smithi138.stderr:--> Zapping: /dev/vg_nvme/lv_4 2024-04-14T15:29:54.203 INFO:teuthology.orchestra.run.smithi138.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_4 bs=1M count=10 conv=fsync 2024-04-14T15:29:54.203 INFO:teuthology.orchestra.run.smithi138.stderr: stderr: 10+0 records in 2024-04-14T15:29:54.203 INFO:teuthology.orchestra.run.smithi138.stderr:10+0 records out 2024-04-14T15:29:54.203 INFO:teuthology.orchestra.run.smithi138.stderr:10485760 bytes (10 MB, 10 MiB) copied, 0.0124289 s, 844 MB/s 2024-04-14T15:29:54.203 INFO:teuthology.orchestra.run.smithi138.stderr:--> Zapping successful for: 2024-04-14T15:29:54.892 DEBUG:teuthology.orchestra.run.smithi138:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph orch daemon add osd smithi138:vg_nvme/lv_4 2024-04-14T15:29:55.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:55 smithi138 bash[22282]: audit 2024-04-14T15:29:54.226314+0000 mon.a (mon.0) 703 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:55.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:55 smithi138 bash[22282]: audit 2024-04-14T15:29:54.235287+0000 mon.a (mon.0) 704 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:55.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:55 smithi138 bash[22282]: audit 2024-04-14T15:29:54.245578+0000 mon.a (mon.0) 705 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:55.560 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:55 smithi138 bash[22282]: audit 2024-04-14T15:29:54.286619+0000 mon.a (mon.0) 706 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:29:55.560 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:55 smithi138 bash[22282]: audit 2024-04-14T15:29:54.292676+0000 mon.a (mon.0) 707 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:29:55.560 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:55 smithi138 bash[22282]: audit 2024-04-14T15:29:54.294830+0000 mon.a (mon.0) 708 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:29:55.560 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:55 smithi138 bash[22282]: cluster 2024-04-14T15:29:54.298881+0000 mgr.a (mgr.14152) 243 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:29:55.560 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:55 smithi138 bash[22282]: audit 2024-04-14T15:29:54.305732+0000 mon.a (mon.0) 709 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:55.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:55 smithi110 bash[22161]: audit 2024-04-14T15:29:54.226314+0000 mon.a (mon.0) 703 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:55.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:55 smithi110 bash[22161]: audit 2024-04-14T15:29:54.235287+0000 mon.a (mon.0) 704 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:55.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:55 smithi110 bash[22161]: audit 2024-04-14T15:29:54.245578+0000 mon.a (mon.0) 705 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:55.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:55 smithi110 bash[22161]: audit 2024-04-14T15:29:54.286619+0000 mon.a (mon.0) 706 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:29:55.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:55 smithi110 bash[22161]: audit 2024-04-14T15:29:54.292676+0000 mon.a (mon.0) 707 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:29:55.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:55 smithi110 bash[22161]: audit 2024-04-14T15:29:54.294830+0000 mon.a (mon.0) 708 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:29:55.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:55 smithi110 bash[22161]: cluster 2024-04-14T15:29:54.298881+0000 mgr.a (mgr.14152) 243 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:29:55.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:55 smithi110 bash[22161]: audit 2024-04-14T15:29:54.305732+0000 mon.a (mon.0) 709 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:55.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:55 smithi047 bash[21449]: audit 2024-04-14T15:29:54.226314+0000 mon.a (mon.0) 703 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:55.708 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:55 smithi047 bash[21449]: audit 2024-04-14T15:29:54.235287+0000 mon.a (mon.0) 704 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:55.708 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:55 smithi047 bash[21449]: audit 2024-04-14T15:29:54.245578+0000 mon.a (mon.0) 705 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:55.708 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:55 smithi047 bash[21449]: audit 2024-04-14T15:29:54.286619+0000 mon.a (mon.0) 706 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:29:55.708 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:55 smithi047 bash[21449]: audit 2024-04-14T15:29:54.292676+0000 mon.a (mon.0) 707 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:29:55.708 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:55 smithi047 bash[21449]: audit 2024-04-14T15:29:54.294830+0000 mon.a (mon.0) 708 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:29:55.708 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:55 smithi047 bash[21449]: cluster 2024-04-14T15:29:54.298881+0000 mgr.a (mgr.14152) 243 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:29:55.708 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:55 smithi047 bash[21449]: audit 2024-04-14T15:29:54.305732+0000 mon.a (mon.0) 709 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:56.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:56 smithi047 bash[21449]: cluster 2024-04-14T15:29:55.242127+0000 mon.a (mon.0) 710 : cluster [WRN] Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-04-14T15:29:56.458 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:56 smithi047 bash[21449]: audit 2024-04-14T15:29:55.738026+0000 mon.a (mon.0) 711 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:56.458 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:56 smithi047 bash[21449]: audit 2024-04-14T15:29:55.747312+0000 mon.a (mon.0) 712 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:56.458 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:56 smithi047 bash[21449]: audit 2024-04-14T15:29:55.758178+0000 mon.a (mon.0) 713 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:56.458 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:56 smithi047 bash[21449]: audit 2024-04-14T15:29:55.781302+0000 mon.a (mon.0) 714 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:29:56.458 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:56 smithi047 bash[21449]: audit 2024-04-14T15:29:55.787143+0000 mon.a (mon.0) 715 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:29:56.458 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:56 smithi047 bash[21449]: audit 2024-04-14T15:29:55.789093+0000 mon.a (mon.0) 716 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:29:56.458 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:56 smithi047 bash[21449]: audit 2024-04-14T15:29:55.799424+0000 mon.a (mon.0) 717 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:56.458 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:56 smithi047 bash[21449]: audit 2024-04-14T15:29:56.032114+0000 mon.a (mon.0) 718 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:56.458 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:56 smithi047 bash[21449]: audit 2024-04-14T15:29:56.041637+0000 mon.a (mon.0) 719 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:56.458 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:56 smithi047 bash[21449]: audit 2024-04-14T15:29:56.052047+0000 mon.a (mon.0) 720 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:56.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:56 smithi138 bash[22282]: cluster 2024-04-14T15:29:55.242127+0000 mon.a (mon.0) 710 : cluster [WRN] Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-04-14T15:29:56.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:56 smithi138 bash[22282]: audit 2024-04-14T15:29:55.738026+0000 mon.a (mon.0) 711 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:56.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:56 smithi138 bash[22282]: audit 2024-04-14T15:29:55.747312+0000 mon.a (mon.0) 712 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:56.560 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:56 smithi138 bash[22282]: audit 2024-04-14T15:29:55.758178+0000 mon.a (mon.0) 713 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:56.560 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:56 smithi138 bash[22282]: audit 2024-04-14T15:29:55.781302+0000 mon.a (mon.0) 714 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:29:56.560 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:56 smithi138 bash[22282]: audit 2024-04-14T15:29:55.787143+0000 mon.a (mon.0) 715 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:29:56.560 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:56 smithi138 bash[22282]: audit 2024-04-14T15:29:55.789093+0000 mon.a (mon.0) 716 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:29:56.560 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:56 smithi138 bash[22282]: audit 2024-04-14T15:29:55.799424+0000 mon.a (mon.0) 717 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:56.560 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:56 smithi138 bash[22282]: audit 2024-04-14T15:29:56.032114+0000 mon.a (mon.0) 718 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:56.560 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:56 smithi138 bash[22282]: audit 2024-04-14T15:29:56.041637+0000 mon.a (mon.0) 719 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:56.560 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:56 smithi138 bash[22282]: audit 2024-04-14T15:29:56.052047+0000 mon.a (mon.0) 720 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:56.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:56 smithi110 bash[22161]: cluster 2024-04-14T15:29:55.242127+0000 mon.a (mon.0) 710 : cluster [WRN] Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-04-14T15:29:56.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:56 smithi110 bash[22161]: audit 2024-04-14T15:29:55.738026+0000 mon.a (mon.0) 711 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:56.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:56 smithi110 bash[22161]: audit 2024-04-14T15:29:55.747312+0000 mon.a (mon.0) 712 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:56.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:56 smithi110 bash[22161]: audit 2024-04-14T15:29:55.758178+0000 mon.a (mon.0) 713 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:56.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:56 smithi110 bash[22161]: audit 2024-04-14T15:29:55.781302+0000 mon.a (mon.0) 714 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:29:56.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:56 smithi110 bash[22161]: audit 2024-04-14T15:29:55.787143+0000 mon.a (mon.0) 715 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:29:56.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:56 smithi110 bash[22161]: audit 2024-04-14T15:29:55.789093+0000 mon.a (mon.0) 716 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:29:56.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:56 smithi110 bash[22161]: audit 2024-04-14T15:29:55.799424+0000 mon.a (mon.0) 717 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:56.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:56 smithi110 bash[22161]: audit 2024-04-14T15:29:56.032114+0000 mon.a (mon.0) 718 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:56.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:56 smithi110 bash[22161]: audit 2024-04-14T15:29:56.041637+0000 mon.a (mon.0) 719 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:56.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:56 smithi110 bash[22161]: audit 2024-04-14T15:29:56.052047+0000 mon.a (mon.0) 720 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:29:57.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:57 smithi138 bash[22282]: cluster 2024-04-14T15:29:55.792771+0000 mgr.a (mgr.14152) 244 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:29:57.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:57 smithi138 bash[22282]: cluster 2024-04-14T15:29:56.754424+0000 mon.a (mon.0) 721 : cluster [INF] Health check cleared: CEPHADM_STRAY_DAEMON (was: 1 stray daemon(s) not managed by cephadm) 2024-04-14T15:29:57.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:57 smithi138 bash[22282]: cluster 2024-04-14T15:29:56.754485+0000 mon.a (mon.0) 722 : cluster [INF] Cluster is now healthy 2024-04-14T15:29:57.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:57 smithi110 bash[22161]: cluster 2024-04-14T15:29:55.792771+0000 mgr.a (mgr.14152) 244 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:29:57.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:57 smithi110 bash[22161]: cluster 2024-04-14T15:29:56.754424+0000 mon.a (mon.0) 721 : cluster [INF] Health check cleared: CEPHADM_STRAY_DAEMON (was: 1 stray daemon(s) not managed by cephadm) 2024-04-14T15:29:57.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:57 smithi110 bash[22161]: cluster 2024-04-14T15:29:56.754485+0000 mon.a (mon.0) 722 : cluster [INF] Cluster is now healthy 2024-04-14T15:29:57.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:57 smithi047 bash[21449]: cluster 2024-04-14T15:29:55.792771+0000 mgr.a (mgr.14152) 244 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:29:57.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:57 smithi047 bash[21449]: cluster 2024-04-14T15:29:56.754424+0000 mon.a (mon.0) 721 : cluster [INF] Health check cleared: CEPHADM_STRAY_DAEMON (was: 1 stray daemon(s) not managed by cephadm) 2024-04-14T15:29:57.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:57 smithi047 bash[21449]: cluster 2024-04-14T15:29:56.754485+0000 mon.a (mon.0) 722 : cluster [INF] Cluster is now healthy 2024-04-14T15:29:58.589 INFO:teuthology.orchestra.run.smithi138.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.c/config 2024-04-14T15:29:59.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:29:59 smithi138 bash[22282]: cluster 2024-04-14T15:29:57.793296+0000 mgr.a (mgr.14152) 245 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:29:59.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:29:59 smithi110 bash[22161]: cluster 2024-04-14T15:29:57.793296+0000 mgr.a (mgr.14152) 245 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:29:59.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:29:59 smithi047 bash[21449]: cluster 2024-04-14T15:29:57.793296+0000 mgr.a (mgr.14152) 245 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:00.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:00 smithi138 bash[22282]: cluster 2024-04-14T15:30:00.000159+0000 mon.a (mon.0) 723 : cluster [INF] overall HEALTH_OK 2024-04-14T15:30:00.644 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:00 smithi110 bash[22161]: cluster 2024-04-14T15:30:00.000159+0000 mon.a (mon.0) 723 : cluster [INF] overall HEALTH_OK 2024-04-14T15:30:00.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:00 smithi047 bash[21449]: cluster 2024-04-14T15:30:00.000159+0000 mon.a (mon.0) 723 : cluster [INF] overall HEALTH_OK 2024-04-14T15:30:01.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:01 smithi138 bash[22282]: cluster 2024-04-14T15:29:59.793860+0000 mgr.a (mgr.14152) 246 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:01.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:01 smithi110 bash[22161]: cluster 2024-04-14T15:29:59.793860+0000 mgr.a (mgr.14152) 246 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:01.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:01 smithi047 bash[21449]: cluster 2024-04-14T15:29:59.793860+0000 mgr.a (mgr.14152) 246 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:03.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:03 smithi138 bash[22282]: cluster 2024-04-14T15:30:01.794408+0000 mgr.a (mgr.14152) 247 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:03.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:03 smithi138 bash[22282]: audit 2024-04-14T15:30:02.363465+0000 mgr.a (mgr.14152) 248 : audit [DBG] from='client.24190 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi138:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:30:03.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:03 smithi138 bash[22282]: audit 2024-04-14T15:30:02.371032+0000 mon.a (mon.0) 724 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-14T15:30:03.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:03 smithi138 bash[22282]: audit 2024-04-14T15:30:02.377727+0000 mon.a (mon.0) 725 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-14T15:30:03.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:03 smithi138 bash[22282]: audit 2024-04-14T15:30:02.379633+0000 mon.a (mon.0) 726 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:30:03.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:03 smithi110 bash[22161]: cluster 2024-04-14T15:30:01.794408+0000 mgr.a (mgr.14152) 247 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:03.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:03 smithi110 bash[22161]: audit 2024-04-14T15:30:02.363465+0000 mgr.a (mgr.14152) 248 : audit [DBG] from='client.24190 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi138:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:30:03.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:03 smithi110 bash[22161]: audit 2024-04-14T15:30:02.371032+0000 mon.a (mon.0) 724 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-14T15:30:03.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:03 smithi110 bash[22161]: audit 2024-04-14T15:30:02.377727+0000 mon.a (mon.0) 725 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-14T15:30:03.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:03 smithi110 bash[22161]: audit 2024-04-14T15:30:02.379633+0000 mon.a (mon.0) 726 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:30:03.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:03 smithi047 bash[21449]: cluster 2024-04-14T15:30:01.794408+0000 mgr.a (mgr.14152) 247 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:03.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:03 smithi047 bash[21449]: audit 2024-04-14T15:30:02.363465+0000 mgr.a (mgr.14152) 248 : audit [DBG] from='client.24190 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi138:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:30:03.708 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:03 smithi047 bash[21449]: audit 2024-04-14T15:30:02.371032+0000 mon.a (mon.0) 724 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-14T15:30:03.708 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:03 smithi047 bash[21449]: audit 2024-04-14T15:30:02.377727+0000 mon.a (mon.0) 725 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-14T15:30:03.708 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:03 smithi047 bash[21449]: audit 2024-04-14T15:30:02.379633+0000 mon.a (mon.0) 726 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:30:05.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:05 smithi138 bash[22282]: cluster 2024-04-14T15:30:03.795076+0000 mgr.a (mgr.14152) 249 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:05.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:05 smithi138 bash[22282]: audit 2024-04-14T15:30:04.584910+0000 mon.a (mon.0) 727 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:05.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:05 smithi138 bash[22282]: audit 2024-04-14T15:30:04.593251+0000 mon.a (mon.0) 728 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:05.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:05 smithi138 bash[22282]: audit 2024-04-14T15:30:04.603286+0000 mon.a (mon.0) 729 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:05.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:05 smithi110 bash[22161]: cluster 2024-04-14T15:30:03.795076+0000 mgr.a (mgr.14152) 249 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:05.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:05 smithi110 bash[22161]: audit 2024-04-14T15:30:04.584910+0000 mon.a (mon.0) 727 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:05.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:05 smithi110 bash[22161]: audit 2024-04-14T15:30:04.593251+0000 mon.a (mon.0) 728 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:05.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:05 smithi110 bash[22161]: audit 2024-04-14T15:30:04.603286+0000 mon.a (mon.0) 729 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:05.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:05 smithi047 bash[21449]: cluster 2024-04-14T15:30:03.795076+0000 mgr.a (mgr.14152) 249 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:05.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:05 smithi047 bash[21449]: audit 2024-04-14T15:30:04.584910+0000 mon.a (mon.0) 727 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:05.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:05 smithi047 bash[21449]: audit 2024-04-14T15:30:04.593251+0000 mon.a (mon.0) 728 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:05.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:05 smithi047 bash[21449]: audit 2024-04-14T15:30:04.603286+0000 mon.a (mon.0) 729 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:07.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:07 smithi110 bash[22161]: cluster 2024-04-14T15:30:05.795651+0000 mgr.a (mgr.14152) 250 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:07.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:07 smithi138 bash[22282]: cluster 2024-04-14T15:30:05.795651+0000 mgr.a (mgr.14152) 250 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:07.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:07 smithi047 bash[21449]: cluster 2024-04-14T15:30:05.795651+0000 mgr.a (mgr.14152) 250 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:09.558 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:09 smithi138 bash[22282]: cluster 2024-04-14T15:30:07.796256+0000 mgr.a (mgr.14152) 251 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:09.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:09 smithi110 bash[22161]: cluster 2024-04-14T15:30:07.796256+0000 mgr.a (mgr.14152) 251 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:09.710 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:09 smithi047 bash[21449]: cluster 2024-04-14T15:30:07.796256+0000 mgr.a (mgr.14152) 251 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:11.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:11 smithi138 bash[22282]: cluster 2024-04-14T15:30:09.796737+0000 mgr.a (mgr.14152) 252 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:11.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:11 smithi138 bash[22282]: audit 2024-04-14T15:30:10.376334+0000 mon.c (mon.1) 6 : audit [INF] from='client.? 172.21.15.138:0/4107477200' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "05d515e5-6afc-461e-a05e-7982f984e9ba"}]: dispatch 2024-04-14T15:30:11.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:11 smithi138 bash[22282]: audit 2024-04-14T15:30:10.377915+0000 mon.a (mon.0) 730 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "05d515e5-6afc-461e-a05e-7982f984e9ba"}]: dispatch 2024-04-14T15:30:11.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:11 smithi138 bash[22282]: audit 2024-04-14T15:30:10.380597+0000 mon.a (mon.0) 731 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "05d515e5-6afc-461e-a05e-7982f984e9ba"}]': finished 2024-04-14T15:30:11.560 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:11 smithi138 bash[22282]: cluster 2024-04-14T15:30:10.385787+0000 mon.a (mon.0) 732 : cluster [DBG] osdmap e31: 5 total, 4 up, 5 in 2024-04-14T15:30:11.560 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:11 smithi138 bash[22282]: audit 2024-04-14T15:30:10.386170+0000 mon.a (mon.0) 733 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-14T15:30:11.560 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:11 smithi138 bash[22282]: audit 2024-04-14T15:30:11.099977+0000 mon.c (mon.1) 7 : audit [DBG] from='client.? 172.21.15.138:0/2340426039' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-14T15:30:11.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:11 smithi110 bash[22161]: cluster 2024-04-14T15:30:09.796737+0000 mgr.a (mgr.14152) 252 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:11.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:11 smithi110 bash[22161]: audit 2024-04-14T15:30:10.376334+0000 mon.c (mon.1) 6 : audit [INF] from='client.? 172.21.15.138:0/4107477200' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "05d515e5-6afc-461e-a05e-7982f984e9ba"}]: dispatch 2024-04-14T15:30:11.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:11 smithi110 bash[22161]: audit 2024-04-14T15:30:10.377915+0000 mon.a (mon.0) 730 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "05d515e5-6afc-461e-a05e-7982f984e9ba"}]: dispatch 2024-04-14T15:30:11.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:11 smithi110 bash[22161]: audit 2024-04-14T15:30:10.380597+0000 mon.a (mon.0) 731 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "05d515e5-6afc-461e-a05e-7982f984e9ba"}]': finished 2024-04-14T15:30:11.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:11 smithi110 bash[22161]: cluster 2024-04-14T15:30:10.385787+0000 mon.a (mon.0) 732 : cluster [DBG] osdmap e31: 5 total, 4 up, 5 in 2024-04-14T15:30:11.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:11 smithi110 bash[22161]: audit 2024-04-14T15:30:10.386170+0000 mon.a (mon.0) 733 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-14T15:30:11.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:11 smithi110 bash[22161]: audit 2024-04-14T15:30:11.099977+0000 mon.c (mon.1) 7 : audit [DBG] from='client.? 172.21.15.138:0/2340426039' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-14T15:30:11.710 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:11 smithi047 bash[21449]: cluster 2024-04-14T15:30:09.796737+0000 mgr.a (mgr.14152) 252 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:11.710 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:11 smithi047 bash[21449]: audit 2024-04-14T15:30:10.376334+0000 mon.c (mon.1) 6 : audit [INF] from='client.? 172.21.15.138:0/4107477200' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "05d515e5-6afc-461e-a05e-7982f984e9ba"}]: dispatch 2024-04-14T15:30:11.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:11 smithi047 bash[21449]: audit 2024-04-14T15:30:10.377915+0000 mon.a (mon.0) 730 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "05d515e5-6afc-461e-a05e-7982f984e9ba"}]: dispatch 2024-04-14T15:30:11.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:11 smithi047 bash[21449]: audit 2024-04-14T15:30:10.380597+0000 mon.a (mon.0) 731 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "05d515e5-6afc-461e-a05e-7982f984e9ba"}]': finished 2024-04-14T15:30:11.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:11 smithi047 bash[21449]: cluster 2024-04-14T15:30:10.385787+0000 mon.a (mon.0) 732 : cluster [DBG] osdmap e31: 5 total, 4 up, 5 in 2024-04-14T15:30:11.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:11 smithi047 bash[21449]: audit 2024-04-14T15:30:10.386170+0000 mon.a (mon.0) 733 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-14T15:30:11.711 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:11 smithi047 bash[21449]: audit 2024-04-14T15:30:11.099977+0000 mon.c (mon.1) 7 : audit [DBG] from='client.? 172.21.15.138:0/2340426039' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-14T15:30:13.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:13 smithi138 bash[22282]: cluster 2024-04-14T15:30:11.797201+0000 mgr.a (mgr.14152) 253 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:13.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:13 smithi110 bash[22161]: cluster 2024-04-14T15:30:11.797201+0000 mgr.a (mgr.14152) 253 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:13.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:13 smithi047 bash[21449]: cluster 2024-04-14T15:30:11.797201+0000 mgr.a (mgr.14152) 253 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:15.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:15 smithi110 bash[22161]: cluster 2024-04-14T15:30:13.797836+0000 mgr.a (mgr.14152) 254 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:15.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:15 smithi110 bash[22161]: audit 2024-04-14T15:30:14.337360+0000 mon.a (mon.0) 734 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:15.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:15 smithi110 bash[22161]: audit 2024-04-14T15:30:14.343925+0000 mon.a (mon.0) 735 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:15.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:15 smithi110 bash[22161]: audit 2024-04-14T15:30:14.351870+0000 mon.a (mon.0) 736 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:15.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:15 smithi047 bash[21449]: cluster 2024-04-14T15:30:13.797836+0000 mgr.a (mgr.14152) 254 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:15.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:15 smithi047 bash[21449]: audit 2024-04-14T15:30:14.337360+0000 mon.a (mon.0) 734 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:15.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:15 smithi047 bash[21449]: audit 2024-04-14T15:30:14.343925+0000 mon.a (mon.0) 735 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:15.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:15 smithi047 bash[21449]: audit 2024-04-14T15:30:14.351870+0000 mon.a (mon.0) 736 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:15.809 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:15 smithi138 bash[22282]: cluster 2024-04-14T15:30:13.797836+0000 mgr.a (mgr.14152) 254 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:15.809 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:15 smithi138 bash[22282]: audit 2024-04-14T15:30:14.337360+0000 mon.a (mon.0) 734 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:15.809 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:15 smithi138 bash[22282]: audit 2024-04-14T15:30:14.343925+0000 mon.a (mon.0) 735 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:15.809 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:15 smithi138 bash[22282]: audit 2024-04-14T15:30:14.351870+0000 mon.a (mon.0) 736 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:17.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:17 smithi138 bash[22282]: cluster 2024-04-14T15:30:15.798424+0000 mgr.a (mgr.14152) 255 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:17.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:17 smithi138 bash[22282]: audit 2024-04-14T15:30:16.261309+0000 mon.a (mon.0) 737 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:17.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:17 smithi138 bash[22282]: audit 2024-04-14T15:30:16.270064+0000 mon.a (mon.0) 738 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:17.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:17 smithi138 bash[22282]: audit 2024-04-14T15:30:16.280403+0000 mon.a (mon.0) 739 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:17.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:17 smithi110 bash[22161]: cluster 2024-04-14T15:30:15.798424+0000 mgr.a (mgr.14152) 255 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:17.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:17 smithi110 bash[22161]: audit 2024-04-14T15:30:16.261309+0000 mon.a (mon.0) 737 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:17.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:17 smithi110 bash[22161]: audit 2024-04-14T15:30:16.270064+0000 mon.a (mon.0) 738 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:17.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:17 smithi110 bash[22161]: audit 2024-04-14T15:30:16.280403+0000 mon.a (mon.0) 739 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:17.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:17 smithi047 bash[21449]: cluster 2024-04-14T15:30:15.798424+0000 mgr.a (mgr.14152) 255 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:17.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:17 smithi047 bash[21449]: audit 2024-04-14T15:30:16.261309+0000 mon.a (mon.0) 737 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:17.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:17 smithi047 bash[21449]: audit 2024-04-14T15:30:16.270064+0000 mon.a (mon.0) 738 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:17.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:17 smithi047 bash[21449]: audit 2024-04-14T15:30:16.280403+0000 mon.a (mon.0) 739 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:19.609 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:19 smithi138 bash[22282]: cluster 2024-04-14T15:30:17.798975+0000 mgr.a (mgr.14152) 256 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:19.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:19 smithi110 bash[22161]: cluster 2024-04-14T15:30:17.798975+0000 mgr.a (mgr.14152) 256 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:19.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:19 smithi047 bash[21449]: cluster 2024-04-14T15:30:17.798975+0000 mgr.a (mgr.14152) 256 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:21.309 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:21 smithi138 bash[22282]: cluster 2024-04-14T15:30:19.799530+0000 mgr.a (mgr.14152) 257 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:21.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:21 smithi110 bash[22161]: cluster 2024-04-14T15:30:19.799530+0000 mgr.a (mgr.14152) 257 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:21.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:21 smithi047 bash[21449]: cluster 2024-04-14T15:30:19.799530+0000 mgr.a (mgr.14152) 257 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:23.518 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:23 smithi138 bash[22282]: cluster 2024-04-14T15:30:21.800073+0000 mgr.a (mgr.14152) 258 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:23.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:23 smithi110 bash[22161]: cluster 2024-04-14T15:30:21.800073+0000 mgr.a (mgr.14152) 258 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:23.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:23 smithi047 bash[21449]: cluster 2024-04-14T15:30:21.800073+0000 mgr.a (mgr.14152) 258 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:25.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:25 smithi138 bash[22282]: cluster 2024-04-14T15:30:23.800587+0000 mgr.a (mgr.14152) 259 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:25.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:25 smithi138 bash[22282]: audit 2024-04-14T15:30:24.750144+0000 mon.a (mon.0) 740 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:25.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:25 smithi138 bash[22282]: audit 2024-04-14T15:30:24.758404+0000 mon.a (mon.0) 741 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:25.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:25 smithi138 bash[22282]: audit 2024-04-14T15:30:24.768587+0000 mon.a (mon.0) 742 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:25.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:25 smithi110 bash[22161]: cluster 2024-04-14T15:30:23.800587+0000 mgr.a (mgr.14152) 259 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:25.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:25 smithi110 bash[22161]: audit 2024-04-14T15:30:24.750144+0000 mon.a (mon.0) 740 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:25.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:25 smithi110 bash[22161]: audit 2024-04-14T15:30:24.758404+0000 mon.a (mon.0) 741 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:25.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:25 smithi110 bash[22161]: audit 2024-04-14T15:30:24.768587+0000 mon.a (mon.0) 742 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:25.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:25 smithi047 bash[21449]: cluster 2024-04-14T15:30:23.800587+0000 mgr.a (mgr.14152) 259 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:25.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:25 smithi047 bash[21449]: audit 2024-04-14T15:30:24.750144+0000 mon.a (mon.0) 740 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:25.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:25 smithi047 bash[21449]: audit 2024-04-14T15:30:24.758404+0000 mon.a (mon.0) 741 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:25.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:25 smithi047 bash[21449]: audit 2024-04-14T15:30:24.768587+0000 mon.a (mon.0) 742 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:26.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:26 smithi138 bash[22282]: cephadm 2024-04-14T15:30:24.761542+0000 mgr.a (mgr.14152) 260 : cephadm [INF] Detected new or changed devices on smithi138 2024-04-14T15:30:26.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:26 smithi138 bash[22282]: audit 2024-04-14T15:30:25.565692+0000 mon.a (mon.0) 743 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-04-14T15:30:26.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:26 smithi138 bash[22282]: audit 2024-04-14T15:30:25.567406+0000 mon.a (mon.0) 744 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:30:26.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:26 smithi110 bash[22161]: cephadm 2024-04-14T15:30:24.761542+0000 mgr.a (mgr.14152) 260 : cephadm [INF] Detected new or changed devices on smithi138 2024-04-14T15:30:26.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:26 smithi110 bash[22161]: audit 2024-04-14T15:30:25.565692+0000 mon.a (mon.0) 743 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-04-14T15:30:26.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:26 smithi110 bash[22161]: audit 2024-04-14T15:30:25.567406+0000 mon.a (mon.0) 744 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:30:26.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:26 smithi047 bash[21449]: cephadm 2024-04-14T15:30:24.761542+0000 mgr.a (mgr.14152) 260 : cephadm [INF] Detected new or changed devices on smithi138 2024-04-14T15:30:26.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:26 smithi047 bash[21449]: audit 2024-04-14T15:30:25.565692+0000 mon.a (mon.0) 743 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-04-14T15:30:26.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:26 smithi047 bash[21449]: audit 2024-04-14T15:30:25.567406+0000 mon.a (mon.0) 744 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:30:27.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:27 smithi110 bash[22161]: cephadm 2024-04-14T15:30:25.569192+0000 mgr.a (mgr.14152) 261 : cephadm [INF] Deploying daemon osd.4 on smithi138 2024-04-14T15:30:27.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:27 smithi110 bash[22161]: cluster 2024-04-14T15:30:25.801113+0000 mgr.a (mgr.14152) 262 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:27.558 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:27 smithi138 bash[22282]: cephadm 2024-04-14T15:30:25.569192+0000 mgr.a (mgr.14152) 261 : cephadm [INF] Deploying daemon osd.4 on smithi138 2024-04-14T15:30:27.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:27 smithi138 bash[22282]: cluster 2024-04-14T15:30:25.801113+0000 mgr.a (mgr.14152) 262 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:27.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:27 smithi047 bash[21449]: cephadm 2024-04-14T15:30:25.569192+0000 mgr.a (mgr.14152) 261 : cephadm [INF] Deploying daemon osd.4 on smithi138 2024-04-14T15:30:27.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:27 smithi047 bash[21449]: cluster 2024-04-14T15:30:25.801113+0000 mgr.a (mgr.14152) 262 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:29.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:29 smithi110 bash[22161]: cluster 2024-04-14T15:30:27.801669+0000 mgr.a (mgr.14152) 263 : cluster [DBG] pgmap v211: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:29.558 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:29 smithi138 bash[22282]: cluster 2024-04-14T15:30:27.801669+0000 mgr.a (mgr.14152) 263 : cluster [DBG] pgmap v211: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:29.598 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:29 smithi047 bash[21449]: cluster 2024-04-14T15:30:27.801669+0000 mgr.a (mgr.14152) 263 : cluster [DBG] pgmap v211: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:29.960 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:29 smithi138 systemd[1]: /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-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-14T15:30:30.293 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:29 smithi138 systemd[1]: /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-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-14T15:30:30.558 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:30 smithi138 bash[22282]: audit 2024-04-14T15:30:30.110203+0000 mon.a (mon.0) 745 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:30:30.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:30 smithi138 bash[22282]: audit 2024-04-14T15:30:30.115741+0000 mon.a (mon.0) 746 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:30.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:30 smithi138 bash[22282]: audit 2024-04-14T15:30:30.124616+0000 mon.a (mon.0) 747 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:30.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:30 smithi138 bash[22282]: audit 2024-04-14T15:30:30.125406+0000 mon.a (mon.0) 748 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:30:30.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:30 smithi138 bash[22282]: audit 2024-04-14T15:30:30.129021+0000 mon.a (mon.0) 749 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:30:30.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:30 smithi138 bash[22282]: audit 2024-04-14T15:30:30.143485+0000 mon.a (mon.0) 750 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:30.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:30 smithi110 bash[22161]: audit 2024-04-14T15:30:30.110203+0000 mon.a (mon.0) 745 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:30:30.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:30 smithi110 bash[22161]: audit 2024-04-14T15:30:30.115741+0000 mon.a (mon.0) 746 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:30.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:30 smithi110 bash[22161]: audit 2024-04-14T15:30:30.124616+0000 mon.a (mon.0) 747 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:30.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:30 smithi110 bash[22161]: audit 2024-04-14T15:30:30.125406+0000 mon.a (mon.0) 748 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:30:30.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:30 smithi110 bash[22161]: audit 2024-04-14T15:30:30.129021+0000 mon.a (mon.0) 749 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:30:30.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:30 smithi110 bash[22161]: audit 2024-04-14T15:30:30.143485+0000 mon.a (mon.0) 750 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:30.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:30 smithi047 bash[21449]: audit 2024-04-14T15:30:30.110203+0000 mon.a (mon.0) 745 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:30:30.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:30 smithi047 bash[21449]: audit 2024-04-14T15:30:30.115741+0000 mon.a (mon.0) 746 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:30.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:30 smithi047 bash[21449]: audit 2024-04-14T15:30:30.124616+0000 mon.a (mon.0) 747 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:30.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:30 smithi047 bash[21449]: audit 2024-04-14T15:30:30.125406+0000 mon.a (mon.0) 748 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:30:30.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:30 smithi047 bash[21449]: audit 2024-04-14T15:30:30.129021+0000 mon.a (mon.0) 749 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:30:30.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:30 smithi047 bash[21449]: audit 2024-04-14T15:30:30.143485+0000 mon.a (mon.0) 750 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:31.458 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:31 smithi047 bash[21449]: cluster 2024-04-14T15:30:29.802356+0000 mgr.a (mgr.14152) 264 : cluster [DBG] pgmap v212: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:31.558 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:31 smithi138 bash[22282]: cluster 2024-04-14T15:30:29.802356+0000 mgr.a (mgr.14152) 264 : cluster [DBG] pgmap v212: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:31.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:31 smithi110 bash[22161]: cluster 2024-04-14T15:30:29.802356+0000 mgr.a (mgr.14152) 264 : cluster [DBG] pgmap v212: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:33.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:33 smithi138 bash[22282]: cluster 2024-04-14T15:30:31.802799+0000 mgr.a (mgr.14152) 265 : cluster [DBG] pgmap v213: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:33.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:33 smithi110 bash[22161]: cluster 2024-04-14T15:30:31.802799+0000 mgr.a (mgr.14152) 265 : cluster [DBG] pgmap v213: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:33.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:33 smithi047 bash[21449]: cluster 2024-04-14T15:30:31.802799+0000 mgr.a (mgr.14152) 265 : cluster [DBG] pgmap v213: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:35.809 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:35 smithi138 bash[22282]: cluster 2024-04-14T15:30:33.803259+0000 mgr.a (mgr.14152) 266 : cluster [DBG] pgmap v214: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:35.809 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:35 smithi138 bash[22282]: audit 2024-04-14T15:30:34.557952+0000 mon.a (mon.0) 751 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:35.809 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:35 smithi138 bash[22282]: audit 2024-04-14T15:30:34.567396+0000 mon.a (mon.0) 752 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:35.809 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:35 smithi138 bash[22282]: audit 2024-04-14T15:30:34.577831+0000 mon.a (mon.0) 753 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:35.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:35 smithi110 bash[22161]: cluster 2024-04-14T15:30:33.803259+0000 mgr.a (mgr.14152) 266 : cluster [DBG] pgmap v214: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:35.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:35 smithi110 bash[22161]: audit 2024-04-14T15:30:34.557952+0000 mon.a (mon.0) 751 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:35.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:35 smithi110 bash[22161]: audit 2024-04-14T15:30:34.567396+0000 mon.a (mon.0) 752 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:35.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:35 smithi110 bash[22161]: audit 2024-04-14T15:30:34.577831+0000 mon.a (mon.0) 753 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:35.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:35 smithi047 bash[21449]: cluster 2024-04-14T15:30:33.803259+0000 mgr.a (mgr.14152) 266 : cluster [DBG] pgmap v214: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:35.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:35 smithi047 bash[21449]: audit 2024-04-14T15:30:34.557952+0000 mon.a (mon.0) 751 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:35.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:35 smithi047 bash[21449]: audit 2024-04-14T15:30:34.567396+0000 mon.a (mon.0) 752 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:35.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:35 smithi047 bash[21449]: audit 2024-04-14T15:30:34.577831+0000 mon.a (mon.0) 753 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:37.808 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:37 smithi138 bash[22282]: cluster 2024-04-14T15:30:35.803797+0000 mgr.a (mgr.14152) 267 : cluster [DBG] pgmap v215: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:37.809 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:37 smithi138 bash[22282]: audit 2024-04-14T15:30:36.494660+0000 mon.a (mon.0) 754 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:37.809 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:37 smithi138 bash[22282]: audit 2024-04-14T15:30:36.503710+0000 mon.a (mon.0) 755 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:37.809 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:37 smithi138 bash[22282]: audit 2024-04-14T15:30:36.513958+0000 mon.a (mon.0) 756 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:37.809 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:37 smithi138 bash[22282]: audit 2024-04-14T15:30:36.719314+0000 mon.c (mon.1) 8 : audit [INF] from='osd.4 [v2:172.21.15.138:6800/3691250801,v1:172.21.15.138:6801/3691250801]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-04-14T15:30:37.809 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:37 smithi138 bash[22282]: audit 2024-04-14T15:30:36.721056+0000 mon.a (mon.0) 757 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-04-14T15:30:37.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:37 smithi110 bash[22161]: cluster 2024-04-14T15:30:35.803797+0000 mgr.a (mgr.14152) 267 : cluster [DBG] pgmap v215: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:37.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:37 smithi110 bash[22161]: audit 2024-04-14T15:30:36.494660+0000 mon.a (mon.0) 754 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:37.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:37 smithi110 bash[22161]: audit 2024-04-14T15:30:36.503710+0000 mon.a (mon.0) 755 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:37.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:37 smithi110 bash[22161]: audit 2024-04-14T15:30:36.513958+0000 mon.a (mon.0) 756 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:37.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:37 smithi110 bash[22161]: audit 2024-04-14T15:30:36.719314+0000 mon.c (mon.1) 8 : audit [INF] from='osd.4 [v2:172.21.15.138:6800/3691250801,v1:172.21.15.138:6801/3691250801]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-04-14T15:30:37.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:37 smithi110 bash[22161]: audit 2024-04-14T15:30:36.721056+0000 mon.a (mon.0) 757 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-04-14T15:30:37.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:37 smithi047 bash[21449]: cluster 2024-04-14T15:30:35.803797+0000 mgr.a (mgr.14152) 267 : cluster [DBG] pgmap v215: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:37.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:37 smithi047 bash[21449]: audit 2024-04-14T15:30:36.494660+0000 mon.a (mon.0) 754 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:37.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:37 smithi047 bash[21449]: audit 2024-04-14T15:30:36.503710+0000 mon.a (mon.0) 755 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:37.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:37 smithi047 bash[21449]: audit 2024-04-14T15:30:36.513958+0000 mon.a (mon.0) 756 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:37.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:37 smithi047 bash[21449]: audit 2024-04-14T15:30:36.719314+0000 mon.c (mon.1) 8 : audit [INF] from='osd.4 [v2:172.21.15.138:6800/3691250801,v1:172.21.15.138:6801/3691250801]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-04-14T15:30:37.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:37 smithi047 bash[21449]: audit 2024-04-14T15:30:36.721056+0000 mon.a (mon.0) 757 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-04-14T15:30:38.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:38 smithi110 bash[22161]: audit 2024-04-14T15:30:37.560581+0000 mon.a (mon.0) 758 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-04-14T15:30:38.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:38 smithi110 bash[22161]: audit 2024-04-14T15:30:37.565579+0000 mon.c (mon.1) 9 : audit [INF] from='osd.4 [v2:172.21.15.138:6800/3691250801,v1:172.21.15.138:6801/3691250801]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi138", "root=default"]}]: dispatch 2024-04-14T15:30:38.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:38 smithi110 bash[22161]: cluster 2024-04-14T15:30:37.565720+0000 mon.a (mon.0) 759 : cluster [DBG] osdmap e32: 5 total, 4 up, 5 in 2024-04-14T15:30:38.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:38 smithi110 bash[22161]: audit 2024-04-14T15:30:37.566226+0000 mon.a (mon.0) 760 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-14T15:30:38.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:38 smithi110 bash[22161]: audit 2024-04-14T15:30:37.567570+0000 mon.a (mon.0) 761 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi138", "root=default"]}]: dispatch 2024-04-14T15:30:38.939 INFO:teuthology.orchestra.run.smithi138.stdout:Created osd(s) 4 on host 'smithi138' 2024-04-14T15:30:38.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:38 smithi047 bash[21449]: audit 2024-04-14T15:30:37.560581+0000 mon.a (mon.0) 758 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-04-14T15:30:38.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:38 smithi047 bash[21449]: audit 2024-04-14T15:30:37.565579+0000 mon.c (mon.1) 9 : audit [INF] from='osd.4 [v2:172.21.15.138:6800/3691250801,v1:172.21.15.138:6801/3691250801]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi138", "root=default"]}]: dispatch 2024-04-14T15:30:38.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:38 smithi047 bash[21449]: cluster 2024-04-14T15:30:37.565720+0000 mon.a (mon.0) 759 : cluster [DBG] osdmap e32: 5 total, 4 up, 5 in 2024-04-14T15:30:38.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:38 smithi047 bash[21449]: audit 2024-04-14T15:30:37.566226+0000 mon.a (mon.0) 760 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-14T15:30:38.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:38 smithi047 bash[21449]: audit 2024-04-14T15:30:37.567570+0000 mon.a (mon.0) 761 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi138", "root=default"]}]: dispatch 2024-04-14T15:30:38.958 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:38 smithi138 bash[22282]: audit 2024-04-14T15:30:37.560581+0000 mon.a (mon.0) 758 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-04-14T15:30:38.958 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:38 smithi138 bash[22282]: audit 2024-04-14T15:30:37.565579+0000 mon.c (mon.1) 9 : audit [INF] from='osd.4 [v2:172.21.15.138:6800/3691250801,v1:172.21.15.138:6801/3691250801]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi138", "root=default"]}]: dispatch 2024-04-14T15:30:38.958 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:38 smithi138 bash[22282]: cluster 2024-04-14T15:30:37.565720+0000 mon.a (mon.0) 759 : cluster [DBG] osdmap e32: 5 total, 4 up, 5 in 2024-04-14T15:30:38.958 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:38 smithi138 bash[22282]: audit 2024-04-14T15:30:37.566226+0000 mon.a (mon.0) 760 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-14T15:30:38.959 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:38 smithi138 bash[22282]: audit 2024-04-14T15:30:37.567570+0000 mon.a (mon.0) 761 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi138", "root=default"]}]: dispatch 2024-04-14T15:30:39.676 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:39 smithi138 bash[22282]: cluster 2024-04-14T15:30:37.804350+0000 mgr.a (mgr.14152) 268 : cluster [DBG] pgmap v217: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:39.677 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:39 smithi138 bash[22282]: audit 2024-04-14T15:30:38.568766+0000 mon.a (mon.0) 762 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi138", "root=default"]}]': finished 2024-04-14T15:30:39.677 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:39 smithi138 bash[22282]: cluster 2024-04-14T15:30:38.576373+0000 mon.a (mon.0) 763 : cluster [DBG] osdmap e33: 5 total, 4 up, 5 in 2024-04-14T15:30:39.677 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:39 smithi138 bash[22282]: audit 2024-04-14T15:30:38.577082+0000 mon.a (mon.0) 764 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-14T15:30:39.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:39 smithi110 bash[22161]: cluster 2024-04-14T15:30:37.804350+0000 mgr.a (mgr.14152) 268 : cluster [DBG] pgmap v217: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:39.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:39 smithi110 bash[22161]: audit 2024-04-14T15:30:38.568766+0000 mon.a (mon.0) 762 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi138", "root=default"]}]': finished 2024-04-14T15:30:39.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:39 smithi110 bash[22161]: cluster 2024-04-14T15:30:38.576373+0000 mon.a (mon.0) 763 : cluster [DBG] osdmap e33: 5 total, 4 up, 5 in 2024-04-14T15:30:39.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:39 smithi110 bash[22161]: audit 2024-04-14T15:30:38.577082+0000 mon.a (mon.0) 764 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-14T15:30:39.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:39 smithi110 bash[22161]: audit 2024-04-14T15:30:38.581714+0000 mon.a (mon.0) 765 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-14T15:30:39.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:39 smithi110 bash[22161]: cluster 2024-04-14T15:30:38.839206+0000 mon.a (mon.0) 766 : cluster [INF] osd.4 [v2:172.21.15.138:6800/3691250801,v1:172.21.15.138:6801/3691250801] boot 2024-04-14T15:30:39.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:39 smithi110 bash[22161]: cluster 2024-04-14T15:30:38.839277+0000 mon.a (mon.0) 767 : cluster [DBG] osdmap e34: 5 total, 5 up, 5 in 2024-04-14T15:30:39.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:39 smithi110 bash[22161]: audit 2024-04-14T15:30:38.839554+0000 mon.a (mon.0) 768 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-14T15:30:39.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:39 smithi110 bash[22161]: audit 2024-04-14T15:30:38.905931+0000 mon.a (mon.0) 769 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:39.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:39 smithi110 bash[22161]: audit 2024-04-14T15:30:38.913861+0000 mon.a (mon.0) 770 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:39.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:39 smithi110 bash[22161]: audit 2024-04-14T15:30:38.918361+0000 mon.a (mon.0) 771 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:30:39.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:39 smithi110 bash[22161]: audit 2024-04-14T15:30:38.924570+0000 mon.a (mon.0) 772 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-04-14T15:30:39.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:39 smithi110 bash[22161]: audit 2024-04-14T15:30:38.932236+0000 mon.a (mon.0) 773 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:39.897 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:39 smithi110 bash[22161]: audit 2024-04-14T15:30:38.936204+0000 mon.a (mon.0) 774 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:30:39.897 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:39 smithi110 bash[22161]: audit 2024-04-14T15:30:38.937932+0000 mon.a (mon.0) 775 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:30:39.897 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:39 smithi110 bash[22161]: audit 2024-04-14T15:30:38.947396+0000 mon.a (mon.0) 776 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:39.952 DEBUG:teuthology.orchestra.run.smithi138:osd.4> sudo journalctl -f -n 0 -u ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@osd.4.service 2024-04-14T15:30:39.952 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:39 smithi138 bash[22282]: audit 2024-04-14T15:30:38.581714+0000 mon.a (mon.0) 765 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-14T15:30:39.952 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:39 smithi138 bash[22282]: cluster 2024-04-14T15:30:38.839206+0000 mon.a (mon.0) 766 : cluster [INF] osd.4 [v2:172.21.15.138:6800/3691250801,v1:172.21.15.138:6801/3691250801] boot 2024-04-14T15:30:39.952 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:39 smithi138 bash[22282]: cluster 2024-04-14T15:30:38.839277+0000 mon.a (mon.0) 767 : cluster [DBG] osdmap e34: 5 total, 5 up, 5 in 2024-04-14T15:30:39.952 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:39 smithi138 bash[22282]: audit 2024-04-14T15:30:38.839554+0000 mon.a (mon.0) 768 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-14T15:30:39.952 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:39 smithi138 bash[22282]: audit 2024-04-14T15:30:38.905931+0000 mon.a (mon.0) 769 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:39.953 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:39 smithi138 bash[22282]: audit 2024-04-14T15:30:38.913861+0000 mon.a (mon.0) 770 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:39.953 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:39 smithi138 bash[22282]: audit 2024-04-14T15:30:38.918361+0000 mon.a (mon.0) 771 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:30:39.953 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:39 smithi138 bash[22282]: audit 2024-04-14T15:30:38.924570+0000 mon.a (mon.0) 772 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-04-14T15:30:39.953 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:39 smithi138 bash[22282]: audit 2024-04-14T15:30:38.932236+0000 mon.a (mon.0) 773 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:39.953 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:39 smithi138 bash[22282]: audit 2024-04-14T15:30:38.936204+0000 mon.a (mon.0) 774 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:30:39.953 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:39 smithi138 bash[22282]: audit 2024-04-14T15:30:38.937932+0000 mon.a (mon.0) 775 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:30:39.953 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:39 smithi138 bash[22282]: audit 2024-04-14T15:30:38.947396+0000 mon.a (mon.0) 776 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:39.955 INFO:tasks.cephadm:Deploying osd.5 on smithi138 with /dev/vg_nvme/lv_3... 2024-04-14T15:30:39.956 DEBUG:teuthology.orchestra.run.smithi138:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_3 2024-04-14T15:30:39.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:39 smithi047 bash[21449]: cluster 2024-04-14T15:30:37.804350+0000 mgr.a (mgr.14152) 268 : cluster [DBG] pgmap v217: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:30:39.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:39 smithi047 bash[21449]: audit 2024-04-14T15:30:38.568766+0000 mon.a (mon.0) 762 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi138", "root=default"]}]': finished 2024-04-14T15:30:39.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:39 smithi047 bash[21449]: cluster 2024-04-14T15:30:38.576373+0000 mon.a (mon.0) 763 : cluster [DBG] osdmap e33: 5 total, 4 up, 5 in 2024-04-14T15:30:39.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:39 smithi047 bash[21449]: audit 2024-04-14T15:30:38.577082+0000 mon.a (mon.0) 764 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-14T15:30:39.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:39 smithi047 bash[21449]: audit 2024-04-14T15:30:38.581714+0000 mon.a (mon.0) 765 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-14T15:30:39.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:39 smithi047 bash[21449]: cluster 2024-04-14T15:30:38.839206+0000 mon.a (mon.0) 766 : cluster [INF] osd.4 [v2:172.21.15.138:6800/3691250801,v1:172.21.15.138:6801/3691250801] boot 2024-04-14T15:30:39.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:39 smithi047 bash[21449]: cluster 2024-04-14T15:30:38.839277+0000 mon.a (mon.0) 767 : cluster [DBG] osdmap e34: 5 total, 5 up, 5 in 2024-04-14T15:30:39.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:39 smithi047 bash[21449]: audit 2024-04-14T15:30:38.839554+0000 mon.a (mon.0) 768 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-14T15:30:39.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:39 smithi047 bash[21449]: audit 2024-04-14T15:30:38.905931+0000 mon.a (mon.0) 769 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:39.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:39 smithi047 bash[21449]: audit 2024-04-14T15:30:38.913861+0000 mon.a (mon.0) 770 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:39.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:39 smithi047 bash[21449]: audit 2024-04-14T15:30:38.918361+0000 mon.a (mon.0) 771 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:30:39.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:39 smithi047 bash[21449]: audit 2024-04-14T15:30:38.924570+0000 mon.a (mon.0) 772 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-04-14T15:30:39.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:39 smithi047 bash[21449]: audit 2024-04-14T15:30:38.932236+0000 mon.a (mon.0) 773 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:39.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:39 smithi047 bash[21449]: audit 2024-04-14T15:30:38.936204+0000 mon.a (mon.0) 774 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:30:39.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:39 smithi047 bash[21449]: audit 2024-04-14T15:30:38.937932+0000 mon.a (mon.0) 775 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:30:39.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:39 smithi047 bash[21449]: audit 2024-04-14T15:30:38.947396+0000 mon.a (mon.0) 776 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:40.808 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:40 smithi138 bash[22282]: cluster 2024-04-14T15:30:37.741730+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-04-14T15:30:40.808 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:40 smithi138 bash[22282]: cluster 2024-04-14T15:30:37.741799+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-04-14T15:30:40.808 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:40 smithi138 bash[22282]: cephadm 2024-04-14T15:30:38.926028+0000 mgr.a (mgr.14152) 269 : cephadm [INF] Adjusting osd_memory_target on smithi138 to 20337M 2024-04-14T15:30:40.808 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:40 smithi138 bash[22282]: cluster 2024-04-14T15:30:39.840338+0000 mon.a (mon.0) 777 : cluster [DBG] osdmap e35: 5 total, 5 up, 5 in 2024-04-14T15:30:40.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:40 smithi110 bash[22161]: cluster 2024-04-14T15:30:37.741730+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-04-14T15:30:40.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:40 smithi110 bash[22161]: cluster 2024-04-14T15:30:37.741799+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-04-14T15:30:40.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:40 smithi110 bash[22161]: cephadm 2024-04-14T15:30:38.926028+0000 mgr.a (mgr.14152) 269 : cephadm [INF] Adjusting osd_memory_target on smithi138 to 20337M 2024-04-14T15:30:40.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:40 smithi110 bash[22161]: cluster 2024-04-14T15:30:39.840338+0000 mon.a (mon.0) 777 : cluster [DBG] osdmap e35: 5 total, 5 up, 5 in 2024-04-14T15:30:40.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:40 smithi047 bash[21449]: cluster 2024-04-14T15:30:37.741730+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-04-14T15:30:40.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:40 smithi047 bash[21449]: cluster 2024-04-14T15:30:37.741799+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-04-14T15:30:40.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:40 smithi047 bash[21449]: cephadm 2024-04-14T15:30:38.926028+0000 mgr.a (mgr.14152) 269 : cephadm [INF] Adjusting osd_memory_target on smithi138 to 20337M 2024-04-14T15:30:40.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:40 smithi047 bash[21449]: cluster 2024-04-14T15:30:39.840338+0000 mon.a (mon.0) 777 : cluster [DBG] osdmap e35: 5 total, 5 up, 5 in 2024-04-14T15:30:41.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:41 smithi110 bash[22161]: cluster 2024-04-14T15:30:39.805028+0000 mgr.a (mgr.14152) 270 : cluster [DBG] pgmap v220: 1 pgs: 1 remapped+peering; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:30:41.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:41 smithi110 bash[22161]: cluster 2024-04-14T15:30:40.842112+0000 mon.a (mon.0) 778 : cluster [DBG] osdmap e36: 5 total, 5 up, 5 in 2024-04-14T15:30:41.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:41 smithi047 bash[21449]: cluster 2024-04-14T15:30:39.805028+0000 mgr.a (mgr.14152) 270 : cluster [DBG] pgmap v220: 1 pgs: 1 remapped+peering; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:30:41.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:41 smithi047 bash[21449]: cluster 2024-04-14T15:30:40.842112+0000 mon.a (mon.0) 778 : cluster [DBG] osdmap e36: 5 total, 5 up, 5 in 2024-04-14T15:30:42.058 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:41 smithi138 bash[22282]: cluster 2024-04-14T15:30:39.805028+0000 mgr.a (mgr.14152) 270 : cluster [DBG] pgmap v220: 1 pgs: 1 remapped+peering; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:30:42.059 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:41 smithi138 bash[22282]: cluster 2024-04-14T15:30:40.842112+0000 mon.a (mon.0) 778 : cluster [DBG] osdmap e36: 5 total, 5 up, 5 in 2024-04-14T15:30:43.141 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:42 smithi138 bash[22282]: cluster 2024-04-14T15:30:41.805707+0000 mgr.a (mgr.14152) 271 : cluster [DBG] pgmap v223: 1 pgs: 1 remapped+peering; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:30:43.142 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:42 smithi138 bash[22282]: cluster 2024-04-14T15:30:41.844690+0000 mon.a (mon.0) 779 : cluster [DBG] osdmap e37: 5 total, 5 up, 5 in 2024-04-14T15:30:43.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:42 smithi110 bash[22161]: cluster 2024-04-14T15:30:41.805707+0000 mgr.a (mgr.14152) 271 : cluster [DBG] pgmap v223: 1 pgs: 1 remapped+peering; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:30:43.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:42 smithi110 bash[22161]: cluster 2024-04-14T15:30:41.844690+0000 mon.a (mon.0) 779 : cluster [DBG] osdmap e37: 5 total, 5 up, 5 in 2024-04-14T15:30:43.207 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:42 smithi047 bash[21449]: cluster 2024-04-14T15:30:41.805707+0000 mgr.a (mgr.14152) 271 : cluster [DBG] pgmap v223: 1 pgs: 1 remapped+peering; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:30:43.207 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:42 smithi047 bash[21449]: cluster 2024-04-14T15:30:41.844690+0000 mon.a (mon.0) 779 : cluster [DBG] osdmap e37: 5 total, 5 up, 5 in 2024-04-14T15:30:44.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:43 smithi110 bash[22161]: cluster 2024-04-14T15:30:42.855758+0000 mon.a (mon.0) 780 : cluster [DBG] osdmap e38: 5 total, 5 up, 5 in 2024-04-14T15:30:44.206 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:43 smithi047 bash[21449]: cluster 2024-04-14T15:30:42.855758+0000 mon.a (mon.0) 780 : cluster [DBG] osdmap e38: 5 total, 5 up, 5 in 2024-04-14T15:30:44.308 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:43 smithi138 bash[22282]: cluster 2024-04-14T15:30:42.855758+0000 mon.a (mon.0) 780 : cluster [DBG] osdmap e38: 5 total, 5 up, 5 in 2024-04-14T15:30:45.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:44 smithi110 bash[22161]: cluster 2024-04-14T15:30:43.806269+0000 mgr.a (mgr.14152) 272 : cluster [DBG] pgmap v226: 1 pgs: 1 remapped+peering; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:30:45.206 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:44 smithi047 bash[21449]: cluster 2024-04-14T15:30:43.806269+0000 mgr.a (mgr.14152) 272 : cluster [DBG] pgmap v226: 1 pgs: 1 remapped+peering; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:30:45.308 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:44 smithi138 bash[22282]: cluster 2024-04-14T15:30:43.806269+0000 mgr.a (mgr.14152) 272 : cluster [DBG] pgmap v226: 1 pgs: 1 remapped+peering; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:30:45.311 INFO:teuthology.orchestra.run.smithi138.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.c/config 2024-04-14T15:30:46.274 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:45 smithi138 bash[22282]: audit 2024-04-14T15:30:44.978903+0000 mon.a (mon.0) 781 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:46.274 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:45 smithi138 bash[22282]: audit 2024-04-14T15:30:44.987357+0000 mon.a (mon.0) 782 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:46.274 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:45 smithi138 bash[22282]: audit 2024-04-14T15:30:44.997718+0000 mon.a (mon.0) 783 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:46.274 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:45 smithi138 bash[22282]: audit 2024-04-14T15:30:45.037491+0000 mon.a (mon.0) 784 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:30:46.274 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:45 smithi138 bash[22282]: audit 2024-04-14T15:30:45.043763+0000 mon.a (mon.0) 785 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:30:46.274 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:45 smithi138 bash[22282]: audit 2024-04-14T15:30:45.045725+0000 mon.a (mon.0) 786 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:30:46.275 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:45 smithi138 bash[22282]: cluster 2024-04-14T15:30:45.050072+0000 mgr.a (mgr.14152) 273 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail; 111 KiB/s, 0 objects/s recovering 2024-04-14T15:30:46.275 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:45 smithi138 bash[22282]: audit 2024-04-14T15:30:45.055967+0000 mon.a (mon.0) 787 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:46.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:45 smithi110 bash[22161]: audit 2024-04-14T15:30:44.978903+0000 mon.a (mon.0) 781 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:46.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:45 smithi110 bash[22161]: audit 2024-04-14T15:30:44.987357+0000 mon.a (mon.0) 782 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:46.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:45 smithi110 bash[22161]: audit 2024-04-14T15:30:44.997718+0000 mon.a (mon.0) 783 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:46.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:45 smithi110 bash[22161]: audit 2024-04-14T15:30:45.037491+0000 mon.a (mon.0) 784 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:30:46.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:45 smithi110 bash[22161]: audit 2024-04-14T15:30:45.043763+0000 mon.a (mon.0) 785 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:30:46.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:45 smithi110 bash[22161]: audit 2024-04-14T15:30:45.045725+0000 mon.a (mon.0) 786 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:30:46.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:45 smithi110 bash[22161]: cluster 2024-04-14T15:30:45.050072+0000 mgr.a (mgr.14152) 273 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail; 111 KiB/s, 0 objects/s recovering 2024-04-14T15:30:46.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:45 smithi110 bash[22161]: audit 2024-04-14T15:30:45.055967+0000 mon.a (mon.0) 787 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:46.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:45 smithi047 bash[21449]: audit 2024-04-14T15:30:44.978903+0000 mon.a (mon.0) 781 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:46.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:45 smithi047 bash[21449]: audit 2024-04-14T15:30:44.987357+0000 mon.a (mon.0) 782 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:46.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:45 smithi047 bash[21449]: audit 2024-04-14T15:30:44.997718+0000 mon.a (mon.0) 783 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:46.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:45 smithi047 bash[21449]: audit 2024-04-14T15:30:45.037491+0000 mon.a (mon.0) 784 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:30:46.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:45 smithi047 bash[21449]: audit 2024-04-14T15:30:45.043763+0000 mon.a (mon.0) 785 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:30:46.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:45 smithi047 bash[21449]: audit 2024-04-14T15:30:45.045725+0000 mon.a (mon.0) 786 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:30:46.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:45 smithi047 bash[21449]: cluster 2024-04-14T15:30:45.050072+0000 mgr.a (mgr.14152) 273 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail; 111 KiB/s, 0 objects/s recovering 2024-04-14T15:30:46.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:45 smithi047 bash[21449]: audit 2024-04-14T15:30:45.055967+0000 mon.a (mon.0) 787 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:47.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:46 smithi110 bash[22161]: cluster 2024-04-14T15:30:45.994224+0000 mon.a (mon.0) 788 : cluster [WRN] Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-04-14T15:30:47.308 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:46 smithi138 bash[22282]: cluster 2024-04-14T15:30:45.994224+0000 mon.a (mon.0) 788 : cluster [WRN] Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-04-14T15:30:47.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:46 smithi047 bash[21449]: cluster 2024-04-14T15:30:45.994224+0000 mon.a (mon.0) 788 : cluster [WRN] Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-04-14T15:30:48.058 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:47 smithi138 bash[22282]: cluster 2024-04-14T15:30:47.050787+0000 mgr.a (mgr.14152) 274 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail; 93 KiB/s, 0 objects/s recovering 2024-04-14T15:30:48.102 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:47 smithi110 bash[22161]: cluster 2024-04-14T15:30:47.050787+0000 mgr.a (mgr.14152) 274 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail; 93 KiB/s, 0 objects/s recovering 2024-04-14T15:30:48.410 INFO:teuthology.orchestra.run.smithi138.stderr:--> Zapping: /dev/vg_nvme/lv_3 2024-04-14T15:30:48.410 INFO:teuthology.orchestra.run.smithi138.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_3 bs=1M count=10 conv=fsync 2024-04-14T15:30:48.411 INFO:teuthology.orchestra.run.smithi138.stderr: stderr: 10+0 records in 2024-04-14T15:30:48.411 INFO:teuthology.orchestra.run.smithi138.stderr:10+0 records out 2024-04-14T15:30:48.411 INFO:teuthology.orchestra.run.smithi138.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.0185785 s, 564 MB/s 2024-04-14T15:30:48.411 INFO:teuthology.orchestra.run.smithi138.stderr:--> Zapping successful for: 2024-04-14T15:30:48.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:47 smithi047 bash[21449]: cluster 2024-04-14T15:30:47.050787+0000 mgr.a (mgr.14152) 274 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail; 93 KiB/s, 0 objects/s recovering 2024-04-14T15:30:49.140 DEBUG:teuthology.orchestra.run.smithi138:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph orch daemon add osd smithi138:vg_nvme/lv_3 2024-04-14T15:30:50.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:50 smithi110 bash[22161]: cluster 2024-04-14T15:30:49.051541+0000 mgr.a (mgr.14152) 275 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail; 80 KiB/s, 0 objects/s recovering 2024-04-14T15:30:50.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:50 smithi047 bash[21449]: cluster 2024-04-14T15:30:49.051541+0000 mgr.a (mgr.14152) 275 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail; 80 KiB/s, 0 objects/s recovering 2024-04-14T15:30:50.558 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:50 smithi138 bash[22282]: cluster 2024-04-14T15:30:49.051541+0000 mgr.a (mgr.14152) 275 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail; 80 KiB/s, 0 objects/s recovering 2024-04-14T15:30:52.309 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:52 smithi138 bash[22282]: audit 2024-04-14T15:30:51.028730+0000 mon.a (mon.0) 789 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:52.309 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:52 smithi138 bash[22282]: audit 2024-04-14T15:30:51.037407+0000 mon.a (mon.0) 790 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:52.309 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:52 smithi138 bash[22282]: audit 2024-04-14T15:30:51.042813+0000 mon.a (mon.0) 791 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:30:52.309 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:52 smithi138 bash[22282]: audit 2024-04-14T15:30:51.048532+0000 mon.a (mon.0) 792 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:52.309 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:52 smithi138 bash[22282]: audit 2024-04-14T15:30:51.049173+0000 mon.a (mon.0) 793 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:30:52.309 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:52 smithi138 bash[22282]: audit 2024-04-14T15:30:51.051056+0000 mon.a (mon.0) 794 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:30:52.309 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:52 smithi138 bash[22282]: cluster 2024-04-14T15:30:51.052184+0000 mgr.a (mgr.14152) 276 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail; 63 KiB/s, 0 objects/s recovering 2024-04-14T15:30:52.309 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:52 smithi138 bash[22282]: cluster 2024-04-14T15:30:51.054886+0000 mgr.a (mgr.14152) 277 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail; 70 KiB/s, 0 objects/s recovering 2024-04-14T15:30:52.309 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:52 smithi138 bash[22282]: audit 2024-04-14T15:30:51.061536+0000 mon.a (mon.0) 795 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:52.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:52 smithi110 bash[22161]: audit 2024-04-14T15:30:51.028730+0000 mon.a (mon.0) 789 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:52.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:52 smithi110 bash[22161]: audit 2024-04-14T15:30:51.037407+0000 mon.a (mon.0) 790 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:52.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:52 smithi110 bash[22161]: audit 2024-04-14T15:30:51.042813+0000 mon.a (mon.0) 791 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:30:52.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:52 smithi110 bash[22161]: audit 2024-04-14T15:30:51.048532+0000 mon.a (mon.0) 792 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:52.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:52 smithi110 bash[22161]: audit 2024-04-14T15:30:51.049173+0000 mon.a (mon.0) 793 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:30:52.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:52 smithi110 bash[22161]: audit 2024-04-14T15:30:51.051056+0000 mon.a (mon.0) 794 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:30:52.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:52 smithi110 bash[22161]: cluster 2024-04-14T15:30:51.052184+0000 mgr.a (mgr.14152) 276 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail; 63 KiB/s, 0 objects/s recovering 2024-04-14T15:30:52.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:52 smithi110 bash[22161]: cluster 2024-04-14T15:30:51.054886+0000 mgr.a (mgr.14152) 277 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail; 70 KiB/s, 0 objects/s recovering 2024-04-14T15:30:52.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:52 smithi110 bash[22161]: audit 2024-04-14T15:30:51.061536+0000 mon.a (mon.0) 795 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:52.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:52 smithi047 bash[21449]: audit 2024-04-14T15:30:51.028730+0000 mon.a (mon.0) 789 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:52.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:52 smithi047 bash[21449]: audit 2024-04-14T15:30:51.037407+0000 mon.a (mon.0) 790 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:52.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:52 smithi047 bash[21449]: audit 2024-04-14T15:30:51.042813+0000 mon.a (mon.0) 791 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:30:52.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:52 smithi047 bash[21449]: audit 2024-04-14T15:30:51.048532+0000 mon.a (mon.0) 792 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:52.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:52 smithi047 bash[21449]: audit 2024-04-14T15:30:51.049173+0000 mon.a (mon.0) 793 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:30:52.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:52 smithi047 bash[21449]: audit 2024-04-14T15:30:51.051056+0000 mon.a (mon.0) 794 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:30:52.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:52 smithi047 bash[21449]: cluster 2024-04-14T15:30:51.052184+0000 mgr.a (mgr.14152) 276 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail; 63 KiB/s, 0 objects/s recovering 2024-04-14T15:30:52.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:52 smithi047 bash[21449]: cluster 2024-04-14T15:30:51.054886+0000 mgr.a (mgr.14152) 277 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail; 70 KiB/s, 0 objects/s recovering 2024-04-14T15:30:52.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:52 smithi047 bash[21449]: audit 2024-04-14T15:30:51.061536+0000 mon.a (mon.0) 795 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:53.308 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:53 smithi138 bash[22282]: cluster 2024-04-14T15:30:52.044257+0000 mon.a (mon.0) 796 : cluster [INF] Health check cleared: CEPHADM_STRAY_DAEMON (was: 1 stray daemon(s) not managed by cephadm) 2024-04-14T15:30:53.308 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:53 smithi138 bash[22282]: cluster 2024-04-14T15:30:52.044327+0000 mon.a (mon.0) 797 : cluster [INF] Cluster is now healthy 2024-04-14T15:30:53.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:53 smithi110 bash[22161]: cluster 2024-04-14T15:30:52.044257+0000 mon.a (mon.0) 796 : cluster [INF] Health check cleared: CEPHADM_STRAY_DAEMON (was: 1 stray daemon(s) not managed by cephadm) 2024-04-14T15:30:53.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:53 smithi110 bash[22161]: cluster 2024-04-14T15:30:52.044327+0000 mon.a (mon.0) 797 : cluster [INF] Cluster is now healthy 2024-04-14T15:30:53.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:53 smithi047 bash[21449]: cluster 2024-04-14T15:30:52.044257+0000 mon.a (mon.0) 796 : cluster [INF] Health check cleared: CEPHADM_STRAY_DAEMON (was: 1 stray daemon(s) not managed by cephadm) 2024-04-14T15:30:53.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:53 smithi047 bash[21449]: cluster 2024-04-14T15:30:52.044327+0000 mon.a (mon.0) 797 : cluster [INF] Cluster is now healthy 2024-04-14T15:30:53.616 INFO:teuthology.orchestra.run.smithi138.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.c/config 2024-04-14T15:30:54.310 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:54 smithi138 bash[22282]: cluster 2024-04-14T15:30:53.055441+0000 mgr.a (mgr.14152) 278 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail; 62 KiB/s, 0 objects/s recovering 2024-04-14T15:30:54.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:54 smithi110 bash[22161]: cluster 2024-04-14T15:30:53.055441+0000 mgr.a (mgr.14152) 278 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail; 62 KiB/s, 0 objects/s recovering 2024-04-14T15:30:54.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:54 smithi047 bash[21449]: cluster 2024-04-14T15:30:53.055441+0000 mgr.a (mgr.14152) 278 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail; 62 KiB/s, 0 objects/s recovering 2024-04-14T15:30:56.058 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:55 smithi138 bash[22282]: audit 2024-04-14T15:30:54.788305+0000 mon.a (mon.0) 798 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:56.058 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:55 smithi138 bash[22282]: audit 2024-04-14T15:30:54.797953+0000 mon.a (mon.0) 799 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:56.058 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:55 smithi138 bash[22282]: audit 2024-04-14T15:30:54.808247+0000 mon.a (mon.0) 800 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:56.058 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:55 smithi138 bash[22282]: cluster 2024-04-14T15:30:55.056005+0000 mgr.a (mgr.14152) 279 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:30:56.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:55 smithi110 bash[22161]: audit 2024-04-14T15:30:54.788305+0000 mon.a (mon.0) 798 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:56.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:55 smithi110 bash[22161]: audit 2024-04-14T15:30:54.797953+0000 mon.a (mon.0) 799 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:56.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:55 smithi110 bash[22161]: audit 2024-04-14T15:30:54.808247+0000 mon.a (mon.0) 800 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:56.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:55 smithi110 bash[22161]: cluster 2024-04-14T15:30:55.056005+0000 mgr.a (mgr.14152) 279 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:30:56.206 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:55 smithi047 bash[21449]: audit 2024-04-14T15:30:54.788305+0000 mon.a (mon.0) 798 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:56.207 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:55 smithi047 bash[21449]: audit 2024-04-14T15:30:54.797953+0000 mon.a (mon.0) 799 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:56.207 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:55 smithi047 bash[21449]: audit 2024-04-14T15:30:54.808247+0000 mon.a (mon.0) 800 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:56.207 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:55 smithi047 bash[21449]: cluster 2024-04-14T15:30:55.056005+0000 mgr.a (mgr.14152) 279 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:30:56.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:56 smithi047 bash[21449]: audit 2024-04-14T15:30:56.388912+0000 mgr.a (mgr.14152) 280 : audit [DBG] from='client.24217 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi138:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:30:56.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:56 smithi047 bash[21449]: audit 2024-04-14T15:30:56.396124+0000 mon.a (mon.0) 801 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-14T15:30:56.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:56 smithi047 bash[21449]: audit 2024-04-14T15:30:56.402312+0000 mon.a (mon.0) 802 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-14T15:30:56.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:56 smithi047 bash[21449]: audit 2024-04-14T15:30:56.404134+0000 mon.a (mon.0) 803 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:30:56.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:56 smithi047 bash[21449]: audit 2024-04-14T15:30:56.674535+0000 mon.a (mon.0) 804 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:56.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:56 smithi047 bash[21449]: audit 2024-04-14T15:30:56.682852+0000 mon.a (mon.0) 805 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:56.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:56 smithi047 bash[21449]: audit 2024-04-14T15:30:56.692651+0000 mon.a (mon.0) 806 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:57.058 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:56 smithi138 bash[22282]: audit 2024-04-14T15:30:56.388912+0000 mgr.a (mgr.14152) 280 : audit [DBG] from='client.24217 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi138:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:30:57.058 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:56 smithi138 bash[22282]: audit 2024-04-14T15:30:56.396124+0000 mon.a (mon.0) 801 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-14T15:30:57.059 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:56 smithi138 bash[22282]: audit 2024-04-14T15:30:56.402312+0000 mon.a (mon.0) 802 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-14T15:30:57.059 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:56 smithi138 bash[22282]: audit 2024-04-14T15:30:56.404134+0000 mon.a (mon.0) 803 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:30:57.059 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:56 smithi138 bash[22282]: audit 2024-04-14T15:30:56.674535+0000 mon.a (mon.0) 804 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:57.059 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:56 smithi138 bash[22282]: audit 2024-04-14T15:30:56.682852+0000 mon.a (mon.0) 805 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:57.059 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:56 smithi138 bash[22282]: audit 2024-04-14T15:30:56.692651+0000 mon.a (mon.0) 806 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:57.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:56 smithi110 bash[22161]: audit 2024-04-14T15:30:56.388912+0000 mgr.a (mgr.14152) 280 : audit [DBG] from='client.24217 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi138:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:30:57.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:56 smithi110 bash[22161]: audit 2024-04-14T15:30:56.396124+0000 mon.a (mon.0) 801 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-14T15:30:57.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:56 smithi110 bash[22161]: audit 2024-04-14T15:30:56.402312+0000 mon.a (mon.0) 802 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-14T15:30:57.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:56 smithi110 bash[22161]: audit 2024-04-14T15:30:56.404134+0000 mon.a (mon.0) 803 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:30:57.146 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:56 smithi110 bash[22161]: audit 2024-04-14T15:30:56.674535+0000 mon.a (mon.0) 804 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:57.146 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:56 smithi110 bash[22161]: audit 2024-04-14T15:30:56.682852+0000 mon.a (mon.0) 805 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:57.146 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:56 smithi110 bash[22161]: audit 2024-04-14T15:30:56.692651+0000 mon.a (mon.0) 806 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:30:58.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:30:57 smithi110 bash[22161]: cluster 2024-04-14T15:30:57.056525+0000 mgr.a (mgr.14152) 281 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:30:58.206 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:30:57 smithi047 bash[21449]: cluster 2024-04-14T15:30:57.056525+0000 mgr.a (mgr.14152) 281 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:30:58.308 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:30:57 smithi138 bash[22282]: cluster 2024-04-14T15:30:57.056525+0000 mgr.a (mgr.14152) 281 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:00.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:00 smithi110 bash[22161]: cluster 2024-04-14T15:30:59.057061+0000 mgr.a (mgr.14152) 282 : cluster [DBG] pgmap v235: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:00.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:00 smithi047 bash[21449]: cluster 2024-04-14T15:30:59.057061+0000 mgr.a (mgr.14152) 282 : cluster [DBG] pgmap v235: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:00.558 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:00 smithi138 bash[22282]: cluster 2024-04-14T15:30:59.057061+0000 mgr.a (mgr.14152) 282 : cluster [DBG] pgmap v235: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:02.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:02 smithi110 bash[22161]: cluster 2024-04-14T15:31:01.057642+0000 mgr.a (mgr.14152) 283 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:02.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:02 smithi047 bash[21449]: cluster 2024-04-14T15:31:01.057642+0000 mgr.a (mgr.14152) 283 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:02.558 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:02 smithi138 bash[22282]: cluster 2024-04-14T15:31:01.057642+0000 mgr.a (mgr.14152) 283 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:04.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:04 smithi110 bash[22161]: cluster 2024-04-14T15:31:03.058192+0000 mgr.a (mgr.14152) 284 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:04.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:04 smithi047 bash[21449]: cluster 2024-04-14T15:31:03.058192+0000 mgr.a (mgr.14152) 284 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:04.558 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:04 smithi138 bash[22282]: cluster 2024-04-14T15:31:03.058192+0000 mgr.a (mgr.14152) 284 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:06.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:06 smithi110 bash[22161]: cluster 2024-04-14T15:31:05.058863+0000 mgr.a (mgr.14152) 285 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:06.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:06 smithi110 bash[22161]: audit 2024-04-14T15:31:05.938742+0000 mon.c (mon.1) 10 : audit [INF] from='client.? 172.21.15.138:0/1898807274' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "a99284f5-3678-4627-879a-e5424c59d658"}]: dispatch 2024-04-14T15:31:06.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:06 smithi110 bash[22161]: audit 2024-04-14T15:31:05.940346+0000 mon.a (mon.0) 807 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "a99284f5-3678-4627-879a-e5424c59d658"}]: dispatch 2024-04-14T15:31:06.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:06 smithi110 bash[22161]: audit 2024-04-14T15:31:05.943922+0000 mon.a (mon.0) 808 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "a99284f5-3678-4627-879a-e5424c59d658"}]': finished 2024-04-14T15:31:06.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:06 smithi110 bash[22161]: cluster 2024-04-14T15:31:05.949212+0000 mon.a (mon.0) 809 : cluster [DBG] osdmap e39: 6 total, 5 up, 6 in 2024-04-14T15:31:06.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:06 smithi110 bash[22161]: audit 2024-04-14T15:31:05.949671+0000 mon.a (mon.0) 810 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-14T15:31:06.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:06 smithi047 bash[21449]: cluster 2024-04-14T15:31:05.058863+0000 mgr.a (mgr.14152) 285 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:06.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:06 smithi047 bash[21449]: audit 2024-04-14T15:31:05.938742+0000 mon.c (mon.1) 10 : audit [INF] from='client.? 172.21.15.138:0/1898807274' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "a99284f5-3678-4627-879a-e5424c59d658"}]: dispatch 2024-04-14T15:31:06.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:06 smithi047 bash[21449]: audit 2024-04-14T15:31:05.940346+0000 mon.a (mon.0) 807 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "a99284f5-3678-4627-879a-e5424c59d658"}]: dispatch 2024-04-14T15:31:06.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:06 smithi047 bash[21449]: audit 2024-04-14T15:31:05.943922+0000 mon.a (mon.0) 808 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "a99284f5-3678-4627-879a-e5424c59d658"}]': finished 2024-04-14T15:31:06.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:06 smithi047 bash[21449]: cluster 2024-04-14T15:31:05.949212+0000 mon.a (mon.0) 809 : cluster [DBG] osdmap e39: 6 total, 5 up, 6 in 2024-04-14T15:31:06.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:06 smithi047 bash[21449]: audit 2024-04-14T15:31:05.949671+0000 mon.a (mon.0) 810 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-14T15:31:06.558 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:06 smithi138 bash[22282]: cluster 2024-04-14T15:31:05.058863+0000 mgr.a (mgr.14152) 285 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:06.558 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:06 smithi138 bash[22282]: audit 2024-04-14T15:31:05.938742+0000 mon.c (mon.1) 10 : audit [INF] from='client.? 172.21.15.138:0/1898807274' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "a99284f5-3678-4627-879a-e5424c59d658"}]: dispatch 2024-04-14T15:31:06.558 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:06 smithi138 bash[22282]: audit 2024-04-14T15:31:05.940346+0000 mon.a (mon.0) 807 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "a99284f5-3678-4627-879a-e5424c59d658"}]: dispatch 2024-04-14T15:31:06.558 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:06 smithi138 bash[22282]: audit 2024-04-14T15:31:05.943922+0000 mon.a (mon.0) 808 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "a99284f5-3678-4627-879a-e5424c59d658"}]': finished 2024-04-14T15:31:06.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:06 smithi138 bash[22282]: cluster 2024-04-14T15:31:05.949212+0000 mon.a (mon.0) 809 : cluster [DBG] osdmap e39: 6 total, 5 up, 6 in 2024-04-14T15:31:06.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:06 smithi138 bash[22282]: audit 2024-04-14T15:31:05.949671+0000 mon.a (mon.0) 810 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-14T15:31:07.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:07 smithi110 bash[22161]: audit 2024-04-14T15:31:06.677502+0000 mon.c (mon.1) 11 : audit [DBG] from='client.? 172.21.15.138:0/1013066128' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-14T15:31:07.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:07 smithi047 bash[21449]: audit 2024-04-14T15:31:06.677502+0000 mon.c (mon.1) 11 : audit [DBG] from='client.? 172.21.15.138:0/1013066128' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-14T15:31:07.558 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:07 smithi138 bash[22282]: audit 2024-04-14T15:31:06.677502+0000 mon.c (mon.1) 11 : audit [DBG] from='client.? 172.21.15.138:0/1013066128' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-14T15:31:08.346 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:08 smithi110 bash[22161]: cluster 2024-04-14T15:31:07.059567+0000 mgr.a (mgr.14152) 286 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:08.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:08 smithi047 bash[21449]: cluster 2024-04-14T15:31:07.059567+0000 mgr.a (mgr.14152) 286 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:08.558 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:08 smithi138 bash[22282]: cluster 2024-04-14T15:31:07.059567+0000 mgr.a (mgr.14152) 286 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:10.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:10 smithi110 bash[22161]: cluster 2024-04-14T15:31:09.060214+0000 mgr.a (mgr.14152) 287 : cluster [DBG] pgmap v241: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:10.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:10 smithi110 bash[22161]: audit 2024-04-14T15:31:09.603211+0000 mon.a (mon.0) 811 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:10.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:10 smithi110 bash[22161]: audit 2024-04-14T15:31:09.611616+0000 mon.a (mon.0) 812 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:10.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:10 smithi110 bash[22161]: audit 2024-04-14T15:31:09.621804+0000 mon.a (mon.0) 813 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:10.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:10 smithi047 bash[21449]: cluster 2024-04-14T15:31:09.060214+0000 mgr.a (mgr.14152) 287 : cluster [DBG] pgmap v241: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:10.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:10 smithi047 bash[21449]: audit 2024-04-14T15:31:09.603211+0000 mon.a (mon.0) 811 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:10.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:10 smithi047 bash[21449]: audit 2024-04-14T15:31:09.611616+0000 mon.a (mon.0) 812 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:10.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:10 smithi047 bash[21449]: audit 2024-04-14T15:31:09.621804+0000 mon.a (mon.0) 813 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:10.558 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:10 smithi138 bash[22282]: cluster 2024-04-14T15:31:09.060214+0000 mgr.a (mgr.14152) 287 : cluster [DBG] pgmap v241: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:10.558 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:10 smithi138 bash[22282]: audit 2024-04-14T15:31:09.603211+0000 mon.a (mon.0) 811 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:10.558 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:10 smithi138 bash[22282]: audit 2024-04-14T15:31:09.611616+0000 mon.a (mon.0) 812 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:10.558 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:10 smithi138 bash[22282]: audit 2024-04-14T15:31:09.621804+0000 mon.a (mon.0) 813 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:12.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:12 smithi110 bash[22161]: cluster 2024-04-14T15:31:11.060776+0000 mgr.a (mgr.14152) 288 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:12.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:12 smithi047 bash[21449]: cluster 2024-04-14T15:31:11.060776+0000 mgr.a (mgr.14152) 288 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:12.558 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:12 smithi138 bash[22282]: cluster 2024-04-14T15:31:11.060776+0000 mgr.a (mgr.14152) 288 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:14.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:14 smithi110 bash[22161]: cluster 2024-04-14T15:31:13.061255+0000 mgr.a (mgr.14152) 289 : cluster [DBG] pgmap v243: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:14.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:14 smithi047 bash[21449]: cluster 2024-04-14T15:31:13.061255+0000 mgr.a (mgr.14152) 289 : cluster [DBG] pgmap v243: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:14.558 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:14 smithi138 bash[22282]: cluster 2024-04-14T15:31:13.061255+0000 mgr.a (mgr.14152) 289 : cluster [DBG] pgmap v243: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:16.187 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:16 smithi138 bash[22282]: audit 2024-04-14T15:31:15.015841+0000 mon.a (mon.0) 814 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:16.187 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:16 smithi138 bash[22282]: audit 2024-04-14T15:31:15.025401+0000 mon.a (mon.0) 815 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:16.187 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:16 smithi138 bash[22282]: audit 2024-04-14T15:31:15.035852+0000 mon.a (mon.0) 816 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:16.187 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:16 smithi138 bash[22282]: cluster 2024-04-14T15:31:15.061813+0000 mgr.a (mgr.14152) 290 : cluster [DBG] pgmap v244: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:16.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:16 smithi110 bash[22161]: audit 2024-04-14T15:31:15.015841+0000 mon.a (mon.0) 814 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:16.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:16 smithi110 bash[22161]: audit 2024-04-14T15:31:15.025401+0000 mon.a (mon.0) 815 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:16.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:16 smithi110 bash[22161]: audit 2024-04-14T15:31:15.035852+0000 mon.a (mon.0) 816 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:16.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:16 smithi110 bash[22161]: cluster 2024-04-14T15:31:15.061813+0000 mgr.a (mgr.14152) 290 : cluster [DBG] pgmap v244: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:16.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:16 smithi047 bash[21449]: audit 2024-04-14T15:31:15.015841+0000 mon.a (mon.0) 814 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:16.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:16 smithi047 bash[21449]: audit 2024-04-14T15:31:15.025401+0000 mon.a (mon.0) 815 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:16.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:16 smithi047 bash[21449]: audit 2024-04-14T15:31:15.035852+0000 mon.a (mon.0) 816 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:16.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:16 smithi047 bash[21449]: cluster 2024-04-14T15:31:15.061813+0000 mgr.a (mgr.14152) 290 : cluster [DBG] pgmap v244: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:18.058 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:17 smithi138 bash[22282]: audit 2024-04-14T15:31:16.891734+0000 mon.a (mon.0) 817 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:18.058 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:17 smithi138 bash[22282]: audit 2024-04-14T15:31:16.900474+0000 mon.a (mon.0) 818 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:18.058 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:17 smithi138 bash[22282]: audit 2024-04-14T15:31:16.909882+0000 mon.a (mon.0) 819 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:18.058 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:17 smithi138 bash[22282]: cluster 2024-04-14T15:31:17.062355+0000 mgr.a (mgr.14152) 291 : cluster [DBG] pgmap v245: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:18.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:17 smithi110 bash[22161]: audit 2024-04-14T15:31:16.891734+0000 mon.a (mon.0) 817 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:18.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:17 smithi110 bash[22161]: audit 2024-04-14T15:31:16.900474+0000 mon.a (mon.0) 818 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:18.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:17 smithi110 bash[22161]: audit 2024-04-14T15:31:16.909882+0000 mon.a (mon.0) 819 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:18.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:17 smithi110 bash[22161]: cluster 2024-04-14T15:31:17.062355+0000 mgr.a (mgr.14152) 291 : cluster [DBG] pgmap v245: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:18.206 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:17 smithi047 bash[21449]: audit 2024-04-14T15:31:16.891734+0000 mon.a (mon.0) 817 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:18.207 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:17 smithi047 bash[21449]: audit 2024-04-14T15:31:16.900474+0000 mon.a (mon.0) 818 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:18.207 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:17 smithi047 bash[21449]: audit 2024-04-14T15:31:16.909882+0000 mon.a (mon.0) 819 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:18.207 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:17 smithi047 bash[21449]: cluster 2024-04-14T15:31:17.062355+0000 mgr.a (mgr.14152) 291 : cluster [DBG] pgmap v245: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:19.207 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:18 smithi047 bash[21449]: audit 2024-04-14T15:31:18.528906+0000 mon.a (mon.0) 820 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-04-14T15:31:19.207 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:18 smithi047 bash[21449]: audit 2024-04-14T15:31:18.530709+0000 mon.a (mon.0) 821 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:31:19.207 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:18 smithi047 bash[21449]: cephadm 2024-04-14T15:31:18.532380+0000 mgr.a (mgr.14152) 292 : cephadm [INF] Deploying daemon osd.5 on smithi138 2024-04-14T15:31:19.308 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:18 smithi138 bash[22282]: audit 2024-04-14T15:31:18.528906+0000 mon.a (mon.0) 820 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-04-14T15:31:19.308 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:18 smithi138 bash[22282]: audit 2024-04-14T15:31:18.530709+0000 mon.a (mon.0) 821 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:31:19.308 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:18 smithi138 bash[22282]: cephadm 2024-04-14T15:31:18.532380+0000 mgr.a (mgr.14152) 292 : cephadm [INF] Deploying daemon osd.5 on smithi138 2024-04-14T15:31:19.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:18 smithi110 bash[22161]: audit 2024-04-14T15:31:18.528906+0000 mon.a (mon.0) 820 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-04-14T15:31:19.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:18 smithi110 bash[22161]: audit 2024-04-14T15:31:18.530709+0000 mon.a (mon.0) 821 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:31:19.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:18 smithi110 bash[22161]: cephadm 2024-04-14T15:31:18.532380+0000 mgr.a (mgr.14152) 292 : cephadm [INF] Deploying daemon osd.5 on smithi138 2024-04-14T15:31:20.058 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:19 smithi138 bash[22282]: cluster 2024-04-14T15:31:19.062906+0000 mgr.a (mgr.14152) 293 : cluster [DBG] pgmap v246: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:20.206 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:19 smithi047 bash[21449]: cluster 2024-04-14T15:31:19.062906+0000 mgr.a (mgr.14152) 293 : cluster [DBG] pgmap v246: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:20.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:19 smithi110 bash[22161]: cluster 2024-04-14T15:31:19.062906+0000 mgr.a (mgr.14152) 293 : cluster [DBG] pgmap v246: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:22.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:22 smithi110 bash[22161]: cluster 2024-04-14T15:31:21.063459+0000 mgr.a (mgr.14152) 294 : cluster [DBG] pgmap v247: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:22.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:22 smithi047 bash[21449]: cluster 2024-04-14T15:31:21.063459+0000 mgr.a (mgr.14152) 294 : cluster [DBG] pgmap v247: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:22.558 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:22 smithi138 bash[22282]: cluster 2024-04-14T15:31:21.063459+0000 mgr.a (mgr.14152) 294 : cluster [DBG] pgmap v247: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:23.408 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:23 smithi138 systemd[1]: /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-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-14T15:31:23.408 INFO:journalctl@ceph.osd.4.smithi138.stdout:Apr 14 15:31:23 smithi138 systemd[1]: /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-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-14T15:31:23.676 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:23 smithi138 systemd[1]: /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-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-14T15:31:23.676 INFO:journalctl@ceph.osd.4.smithi138.stdout:Apr 14 15:31:23 smithi138 systemd[1]: /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-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-14T15:31:24.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:24 smithi110 bash[22161]: cluster 2024-04-14T15:31:23.064011+0000 mgr.a (mgr.14152) 295 : cluster [DBG] pgmap v248: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:24.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:24 smithi110 bash[22161]: audit 2024-04-14T15:31:23.681988+0000 mon.a (mon.0) 822 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:24.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:24 smithi110 bash[22161]: audit 2024-04-14T15:31:23.690706+0000 mon.a (mon.0) 823 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:24.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:24 smithi110 bash[22161]: audit 2024-04-14T15:31:23.718695+0000 mon.a (mon.0) 824 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:31:24.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:24 smithi110 bash[22161]: audit 2024-04-14T15:31:23.727062+0000 mon.a (mon.0) 825 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:31:24.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:24 smithi110 bash[22161]: audit 2024-04-14T15:31:23.729376+0000 mon.a (mon.0) 826 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:31:24.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:24 smithi110 bash[22161]: audit 2024-04-14T15:31:23.741372+0000 mon.a (mon.0) 827 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:24.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:24 smithi047 bash[21449]: cluster 2024-04-14T15:31:23.064011+0000 mgr.a (mgr.14152) 295 : cluster [DBG] pgmap v248: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:24.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:24 smithi047 bash[21449]: audit 2024-04-14T15:31:23.681988+0000 mon.a (mon.0) 822 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:24.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:24 smithi047 bash[21449]: audit 2024-04-14T15:31:23.690706+0000 mon.a (mon.0) 823 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:24.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:24 smithi047 bash[21449]: audit 2024-04-14T15:31:23.718695+0000 mon.a (mon.0) 824 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:31:24.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:24 smithi047 bash[21449]: audit 2024-04-14T15:31:23.727062+0000 mon.a (mon.0) 825 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:31:24.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:24 smithi047 bash[21449]: audit 2024-04-14T15:31:23.729376+0000 mon.a (mon.0) 826 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:31:24.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:24 smithi047 bash[21449]: audit 2024-04-14T15:31:23.741372+0000 mon.a (mon.0) 827 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:24.558 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:24 smithi138 bash[22282]: cluster 2024-04-14T15:31:23.064011+0000 mgr.a (mgr.14152) 295 : cluster [DBG] pgmap v248: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:24.558 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:24 smithi138 bash[22282]: audit 2024-04-14T15:31:23.681988+0000 mon.a (mon.0) 822 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:24.558 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:24 smithi138 bash[22282]: audit 2024-04-14T15:31:23.690706+0000 mon.a (mon.0) 823 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:24.558 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:24 smithi138 bash[22282]: audit 2024-04-14T15:31:23.718695+0000 mon.a (mon.0) 824 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:31:24.558 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:24 smithi138 bash[22282]: audit 2024-04-14T15:31:23.727062+0000 mon.a (mon.0) 825 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:31:24.558 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:24 smithi138 bash[22282]: audit 2024-04-14T15:31:23.729376+0000 mon.a (mon.0) 826 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:31:24.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:24 smithi138 bash[22282]: audit 2024-04-14T15:31:23.741372+0000 mon.a (mon.0) 827 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:26.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:26 smithi110 bash[22161]: cluster 2024-04-14T15:31:25.064517+0000 mgr.a (mgr.14152) 296 : cluster [DBG] pgmap v249: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:26.417 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:26 smithi138 bash[22282]: cluster 2024-04-14T15:31:25.064517+0000 mgr.a (mgr.14152) 296 : cluster [DBG] pgmap v249: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:26.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:26 smithi047 bash[21449]: cluster 2024-04-14T15:31:25.064517+0000 mgr.a (mgr.14152) 296 : cluster [DBG] pgmap v249: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:28.308 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:28 smithi138 bash[22282]: cluster 2024-04-14T15:31:27.065104+0000 mgr.a (mgr.14152) 297 : cluster [DBG] pgmap v250: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:28.379 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:28 smithi110 bash[22161]: cluster 2024-04-14T15:31:27.065104+0000 mgr.a (mgr.14152) 297 : cluster [DBG] pgmap v250: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:28.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:28 smithi047 bash[21449]: cluster 2024-04-14T15:31:27.065104+0000 mgr.a (mgr.14152) 297 : cluster [DBG] pgmap v250: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:30.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:30 smithi110 bash[22161]: cluster 2024-04-14T15:31:29.065676+0000 mgr.a (mgr.14152) 298 : cluster [DBG] pgmap v251: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:30.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:30 smithi110 bash[22161]: audit 2024-04-14T15:31:29.768907+0000 mon.a (mon.0) 828 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:30.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:30 smithi110 bash[22161]: audit 2024-04-14T15:31:29.777222+0000 mon.a (mon.0) 829 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:30.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:30 smithi110 bash[22161]: audit 2024-04-14T15:31:29.787883+0000 mon.a (mon.0) 830 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:30.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:30 smithi110 bash[22161]: audit 2024-04-14T15:31:29.817366+0000 mon.a (mon.0) 831 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:31:30.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:30 smithi110 bash[22161]: audit 2024-04-14T15:31:29.823352+0000 mon.a (mon.0) 832 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:31:30.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:30 smithi110 bash[22161]: audit 2024-04-14T15:31:29.825239+0000 mon.a (mon.0) 833 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:31:30.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:30 smithi110 bash[22161]: audit 2024-04-14T15:31:29.835133+0000 mon.a (mon.0) 834 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:30.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:30 smithi047 bash[21449]: cluster 2024-04-14T15:31:29.065676+0000 mgr.a (mgr.14152) 298 : cluster [DBG] pgmap v251: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:30.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:30 smithi047 bash[21449]: audit 2024-04-14T15:31:29.768907+0000 mon.a (mon.0) 828 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:30.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:30 smithi047 bash[21449]: audit 2024-04-14T15:31:29.777222+0000 mon.a (mon.0) 829 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:30.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:30 smithi047 bash[21449]: audit 2024-04-14T15:31:29.787883+0000 mon.a (mon.0) 830 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:30.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:30 smithi047 bash[21449]: audit 2024-04-14T15:31:29.817366+0000 mon.a (mon.0) 831 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:31:30.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:30 smithi047 bash[21449]: audit 2024-04-14T15:31:29.823352+0000 mon.a (mon.0) 832 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:31:30.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:30 smithi047 bash[21449]: audit 2024-04-14T15:31:29.825239+0000 mon.a (mon.0) 833 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:31:30.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:30 smithi047 bash[21449]: audit 2024-04-14T15:31:29.835133+0000 mon.a (mon.0) 834 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:30.558 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:30 smithi138 bash[22282]: cluster 2024-04-14T15:31:29.065676+0000 mgr.a (mgr.14152) 298 : cluster [DBG] pgmap v251: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:30.558 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:30 smithi138 bash[22282]: audit 2024-04-14T15:31:29.768907+0000 mon.a (mon.0) 828 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:30.558 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:30 smithi138 bash[22282]: audit 2024-04-14T15:31:29.777222+0000 mon.a (mon.0) 829 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:30.558 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:30 smithi138 bash[22282]: audit 2024-04-14T15:31:29.787883+0000 mon.a (mon.0) 830 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:30.558 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:30 smithi138 bash[22282]: audit 2024-04-14T15:31:29.817366+0000 mon.a (mon.0) 831 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:31:30.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:30 smithi138 bash[22282]: audit 2024-04-14T15:31:29.823352+0000 mon.a (mon.0) 832 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:31:30.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:30 smithi138 bash[22282]: audit 2024-04-14T15:31:29.825239+0000 mon.a (mon.0) 833 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:31:30.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:30 smithi138 bash[22282]: audit 2024-04-14T15:31:29.835133+0000 mon.a (mon.0) 834 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:31.308 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:31 smithi138 bash[22282]: cephadm 2024-04-14T15:31:29.780456+0000 mgr.a (mgr.14152) 299 : cephadm [INF] Detected new or changed devices on smithi138 2024-04-14T15:31:31.308 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:31 smithi138 bash[22282]: audit 2024-04-14T15:31:30.966902+0000 mon.c (mon.1) 12 : audit [INF] from='osd.5 [v2:172.21.15.138:6808/117271508,v1:172.21.15.138:6809/117271508]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-04-14T15:31:31.308 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:31 smithi138 bash[22282]: audit 2024-04-14T15:31:30.968342+0000 mon.a (mon.0) 835 : audit [INF] from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-04-14T15:31:31.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:31 smithi110 bash[22161]: cephadm 2024-04-14T15:31:29.780456+0000 mgr.a (mgr.14152) 299 : cephadm [INF] Detected new or changed devices on smithi138 2024-04-14T15:31:31.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:31 smithi110 bash[22161]: audit 2024-04-14T15:31:30.966902+0000 mon.c (mon.1) 12 : audit [INF] from='osd.5 [v2:172.21.15.138:6808/117271508,v1:172.21.15.138:6809/117271508]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-04-14T15:31:31.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:31 smithi110 bash[22161]: audit 2024-04-14T15:31:30.968342+0000 mon.a (mon.0) 835 : audit [INF] from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-04-14T15:31:31.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:31 smithi047 bash[21449]: cephadm 2024-04-14T15:31:29.780456+0000 mgr.a (mgr.14152) 299 : cephadm [INF] Detected new or changed devices on smithi138 2024-04-14T15:31:31.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:31 smithi047 bash[21449]: audit 2024-04-14T15:31:30.966902+0000 mon.c (mon.1) 12 : audit [INF] from='osd.5 [v2:172.21.15.138:6808/117271508,v1:172.21.15.138:6809/117271508]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-04-14T15:31:31.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:31 smithi047 bash[21449]: audit 2024-04-14T15:31:30.968342+0000 mon.a (mon.0) 835 : audit [INF] from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-04-14T15:31:32.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:32 smithi047 bash[21449]: cluster 2024-04-14T15:31:31.066266+0000 mgr.a (mgr.14152) 300 : cluster [DBG] pgmap v252: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:32.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:32 smithi047 bash[21449]: audit 2024-04-14T15:31:31.143106+0000 mon.a (mon.0) 836 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-04-14T15:31:32.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:32 smithi047 bash[21449]: audit 2024-04-14T15:31:31.149386+0000 mon.c (mon.1) 13 : audit [INF] from='osd.5 [v2:172.21.15.138:6808/117271508,v1:172.21.15.138:6809/117271508]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi138", "root=default"]}]: dispatch 2024-04-14T15:31:32.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:32 smithi047 bash[21449]: cluster 2024-04-14T15:31:31.149405+0000 mon.a (mon.0) 837 : cluster [DBG] osdmap e40: 6 total, 5 up, 6 in 2024-04-14T15:31:32.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:32 smithi047 bash[21449]: audit 2024-04-14T15:31:31.150155+0000 mon.a (mon.0) 838 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-14T15:31:32.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:32 smithi047 bash[21449]: audit 2024-04-14T15:31:31.151027+0000 mon.a (mon.0) 839 : audit [INF] from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi138", "root=default"]}]: dispatch 2024-04-14T15:31:32.558 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:32 smithi138 bash[22282]: cluster 2024-04-14T15:31:31.066266+0000 mgr.a (mgr.14152) 300 : cluster [DBG] pgmap v252: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:32.558 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:32 smithi138 bash[22282]: audit 2024-04-14T15:31:31.143106+0000 mon.a (mon.0) 836 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-04-14T15:31:32.558 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:32 smithi138 bash[22282]: audit 2024-04-14T15:31:31.149386+0000 mon.c (mon.1) 13 : audit [INF] from='osd.5 [v2:172.21.15.138:6808/117271508,v1:172.21.15.138:6809/117271508]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi138", "root=default"]}]: dispatch 2024-04-14T15:31:32.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:32 smithi138 bash[22282]: cluster 2024-04-14T15:31:31.149405+0000 mon.a (mon.0) 837 : cluster [DBG] osdmap e40: 6 total, 5 up, 6 in 2024-04-14T15:31:32.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:32 smithi138 bash[22282]: audit 2024-04-14T15:31:31.150155+0000 mon.a (mon.0) 838 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-14T15:31:32.559 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:32 smithi138 bash[22282]: audit 2024-04-14T15:31:31.151027+0000 mon.a (mon.0) 839 : audit [INF] from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi138", "root=default"]}]: dispatch 2024-04-14T15:31:32.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:32 smithi110 bash[22161]: cluster 2024-04-14T15:31:31.066266+0000 mgr.a (mgr.14152) 300 : cluster [DBG] pgmap v252: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:32.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:32 smithi110 bash[22161]: audit 2024-04-14T15:31:31.143106+0000 mon.a (mon.0) 836 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-04-14T15:31:32.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:32 smithi110 bash[22161]: audit 2024-04-14T15:31:31.149386+0000 mon.c (mon.1) 13 : audit [INF] from='osd.5 [v2:172.21.15.138:6808/117271508,v1:172.21.15.138:6809/117271508]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi138", "root=default"]}]: dispatch 2024-04-14T15:31:32.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:32 smithi110 bash[22161]: cluster 2024-04-14T15:31:31.149405+0000 mon.a (mon.0) 837 : cluster [DBG] osdmap e40: 6 total, 5 up, 6 in 2024-04-14T15:31:32.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:32 smithi110 bash[22161]: audit 2024-04-14T15:31:31.150155+0000 mon.a (mon.0) 838 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-14T15:31:32.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:32 smithi110 bash[22161]: audit 2024-04-14T15:31:31.151027+0000 mon.a (mon.0) 839 : audit [INF] from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi138", "root=default"]}]: dispatch 2024-04-14T15:31:33.419 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:33 smithi047 bash[21449]: audit 2024-04-14T15:31:32.145752+0000 mon.a (mon.0) 840 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi138", "root=default"]}]': finished 2024-04-14T15:31:33.419 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:33 smithi047 bash[21449]: cluster 2024-04-14T15:31:32.151252+0000 mon.a (mon.0) 841 : cluster [DBG] osdmap e41: 6 total, 5 up, 6 in 2024-04-14T15:31:33.419 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:33 smithi047 bash[21449]: audit 2024-04-14T15:31:32.152326+0000 mon.a (mon.0) 842 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-14T15:31:33.419 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:33 smithi047 bash[21449]: audit 2024-04-14T15:31:32.159998+0000 mon.a (mon.0) 843 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-14T15:31:33.420 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:33 smithi047 bash[21449]: cluster 2024-04-14T15:31:33.152002+0000 mon.a (mon.0) 844 : cluster [INF] osd.5 [v2:172.21.15.138:6808/117271508,v1:172.21.15.138:6809/117271508] boot 2024-04-14T15:31:33.420 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:33 smithi047 bash[21449]: cluster 2024-04-14T15:31:33.152048+0000 mon.a (mon.0) 845 : cluster [DBG] osdmap e42: 6 total, 6 up, 6 in 2024-04-14T15:31:33.420 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:33 smithi047 bash[21449]: audit 2024-04-14T15:31:33.152212+0000 mon.a (mon.0) 846 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-14T15:31:33.558 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:33 smithi138 bash[22282]: audit 2024-04-14T15:31:32.145752+0000 mon.a (mon.0) 840 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi138", "root=default"]}]': finished 2024-04-14T15:31:33.558 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:33 smithi138 bash[22282]: cluster 2024-04-14T15:31:32.151252+0000 mon.a (mon.0) 841 : cluster [DBG] osdmap e41: 6 total, 5 up, 6 in 2024-04-14T15:31:33.558 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:33 smithi138 bash[22282]: audit 2024-04-14T15:31:32.152326+0000 mon.a (mon.0) 842 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-14T15:31:33.558 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:33 smithi138 bash[22282]: audit 2024-04-14T15:31:32.159998+0000 mon.a (mon.0) 843 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-14T15:31:33.558 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:33 smithi138 bash[22282]: cluster 2024-04-14T15:31:33.152002+0000 mon.a (mon.0) 844 : cluster [INF] osd.5 [v2:172.21.15.138:6808/117271508,v1:172.21.15.138:6809/117271508] boot 2024-04-14T15:31:33.558 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:33 smithi138 bash[22282]: cluster 2024-04-14T15:31:33.152048+0000 mon.a (mon.0) 845 : cluster [DBG] osdmap e42: 6 total, 6 up, 6 in 2024-04-14T15:31:33.558 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:33 smithi138 bash[22282]: audit 2024-04-14T15:31:33.152212+0000 mon.a (mon.0) 846 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-14T15:31:33.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:33 smithi110 bash[22161]: audit 2024-04-14T15:31:32.145752+0000 mon.a (mon.0) 840 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi138", "root=default"]}]': finished 2024-04-14T15:31:33.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:33 smithi110 bash[22161]: cluster 2024-04-14T15:31:32.151252+0000 mon.a (mon.0) 841 : cluster [DBG] osdmap e41: 6 total, 5 up, 6 in 2024-04-14T15:31:33.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:33 smithi110 bash[22161]: audit 2024-04-14T15:31:32.152326+0000 mon.a (mon.0) 842 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-14T15:31:33.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:33 smithi110 bash[22161]: audit 2024-04-14T15:31:32.159998+0000 mon.a (mon.0) 843 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-14T15:31:33.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:33 smithi110 bash[22161]: cluster 2024-04-14T15:31:33.152002+0000 mon.a (mon.0) 844 : cluster [INF] osd.5 [v2:172.21.15.138:6808/117271508,v1:172.21.15.138:6809/117271508] boot 2024-04-14T15:31:33.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:33 smithi110 bash[22161]: cluster 2024-04-14T15:31:33.152048+0000 mon.a (mon.0) 845 : cluster [DBG] osdmap e42: 6 total, 6 up, 6 in 2024-04-14T15:31:33.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:33 smithi110 bash[22161]: audit 2024-04-14T15:31:33.152212+0000 mon.a (mon.0) 846 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-14T15:31:33.771 INFO:teuthology.orchestra.run.smithi138.stdout:Created osd(s) 5 on host 'smithi138' 2024-04-14T15:31:34.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:34 smithi047 bash[21449]: cluster 2024-04-14T15:31:31.978003+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-04-14T15:31:34.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:34 smithi047 bash[21449]: cluster 2024-04-14T15:31:31.978166+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-04-14T15:31:34.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:34 smithi047 bash[21449]: cluster 2024-04-14T15:31:33.066837+0000 mgr.a (mgr.14152) 301 : cluster [DBG] pgmap v255: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:34.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:34 smithi047 bash[21449]: audit 2024-04-14T15:31:33.714721+0000 mon.a (mon.0) 847 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:31:34.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:34 smithi047 bash[21449]: audit 2024-04-14T15:31:33.723019+0000 mon.a (mon.0) 848 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:34.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:34 smithi047 bash[21449]: audit 2024-04-14T15:31:33.723940+0000 mon.a (mon.0) 849 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:31:34.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:34 smithi047 bash[21449]: audit 2024-04-14T15:31:33.726579+0000 mon.a (mon.0) 850 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:31:34.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:34 smithi047 bash[21449]: audit 2024-04-14T15:31:33.732044+0000 mon.a (mon.0) 851 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:34.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:34 smithi047 bash[21449]: audit 2024-04-14T15:31:33.739552+0000 mon.a (mon.0) 852 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:34.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:34 smithi047 bash[21449]: cluster 2024-04-14T15:31:33.851387+0000 mon.a (mon.0) 853 : cluster [DBG] osdmap e43: 6 total, 6 up, 6 in 2024-04-14T15:31:34.470 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:34 smithi138 bash[22282]: cluster 2024-04-14T15:31:31.978003+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-04-14T15:31:34.470 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:34 smithi138 bash[22282]: cluster 2024-04-14T15:31:31.978166+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-04-14T15:31:34.470 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:34 smithi138 bash[22282]: cluster 2024-04-14T15:31:33.066837+0000 mgr.a (mgr.14152) 301 : cluster [DBG] pgmap v255: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:34.471 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:34 smithi138 bash[22282]: audit 2024-04-14T15:31:33.714721+0000 mon.a (mon.0) 847 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:31:34.471 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:34 smithi138 bash[22282]: audit 2024-04-14T15:31:33.723019+0000 mon.a (mon.0) 848 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:34.471 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:34 smithi138 bash[22282]: audit 2024-04-14T15:31:33.723940+0000 mon.a (mon.0) 849 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:31:34.471 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:34 smithi138 bash[22282]: audit 2024-04-14T15:31:33.726579+0000 mon.a (mon.0) 850 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:31:34.471 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:34 smithi138 bash[22282]: audit 2024-04-14T15:31:33.732044+0000 mon.a (mon.0) 851 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:34.471 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:34 smithi138 bash[22282]: audit 2024-04-14T15:31:33.739552+0000 mon.a (mon.0) 852 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:34.471 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:34 smithi138 bash[22282]: cluster 2024-04-14T15:31:33.851387+0000 mon.a (mon.0) 853 : cluster [DBG] osdmap e43: 6 total, 6 up, 6 in 2024-04-14T15:31:34.472 DEBUG:teuthology.orchestra.run.smithi138:osd.5> sudo journalctl -f -n 0 -u ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@osd.5.service 2024-04-14T15:31:34.475 INFO:tasks.cephadm:Waiting for 6 OSDs to come up... 2024-04-14T15:31:34.475 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph osd stat -f json 2024-04-14T15:31:34.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:34 smithi110 bash[22161]: cluster 2024-04-14T15:31:31.978003+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-04-14T15:31:34.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:34 smithi110 bash[22161]: cluster 2024-04-14T15:31:31.978166+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-04-14T15:31:34.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:34 smithi110 bash[22161]: cluster 2024-04-14T15:31:33.066837+0000 mgr.a (mgr.14152) 301 : cluster [DBG] pgmap v255: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:31:34.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:34 smithi110 bash[22161]: audit 2024-04-14T15:31:33.714721+0000 mon.a (mon.0) 847 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:31:34.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:34 smithi110 bash[22161]: audit 2024-04-14T15:31:33.723019+0000 mon.a (mon.0) 848 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:34.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:34 smithi110 bash[22161]: audit 2024-04-14T15:31:33.723940+0000 mon.a (mon.0) 849 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:31:34.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:34 smithi110 bash[22161]: audit 2024-04-14T15:31:33.726579+0000 mon.a (mon.0) 850 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:31:34.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:34 smithi110 bash[22161]: audit 2024-04-14T15:31:33.732044+0000 mon.a (mon.0) 851 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:34.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:34 smithi110 bash[22161]: audit 2024-04-14T15:31:33.739552+0000 mon.a (mon.0) 852 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:34.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:34 smithi110 bash[22161]: cluster 2024-04-14T15:31:33.851387+0000 mon.a (mon.0) 853 : cluster [DBG] osdmap e43: 6 total, 6 up, 6 in 2024-04-14T15:31:35.808 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:35 smithi138 bash[22282]: cluster 2024-04-14T15:31:33.730370+0000 mgr.a (mgr.14152) 302 : cluster [DBG] pgmap v257: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:31:35.808 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:35 smithi138 bash[22282]: audit 2024-04-14T15:31:34.527026+0000 mon.a (mon.0) 854 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:35.808 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:35 smithi138 bash[22282]: audit 2024-04-14T15:31:34.535013+0000 mon.a (mon.0) 855 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:35.808 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:35 smithi138 bash[22282]: audit 2024-04-14T15:31:34.545434+0000 mon.a (mon.0) 856 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:35.809 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:35 smithi138 bash[22282]: audit 2024-04-14T15:31:34.570301+0000 mon.a (mon.0) 857 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:31:35.809 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:35 smithi138 bash[22282]: audit 2024-04-14T15:31:34.575382+0000 mon.a (mon.0) 858 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:31:35.809 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:35 smithi138 bash[22282]: audit 2024-04-14T15:31:34.576860+0000 mon.a (mon.0) 859 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:31:35.809 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:35 smithi138 bash[22282]: cluster 2024-04-14T15:31:34.580109+0000 mgr.a (mgr.14152) 303 : cluster [DBG] pgmap v259: 1 pgs: 1 remapped+peering; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:31:35.809 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:35 smithi138 bash[22282]: audit 2024-04-14T15:31:34.586559+0000 mon.a (mon.0) 860 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:35.809 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:35 smithi138 bash[22282]: cluster 2024-04-14T15:31:34.852483+0000 mon.a (mon.0) 861 : cluster [DBG] osdmap e44: 6 total, 6 up, 6 in 2024-04-14T15:31:35.809 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:35 smithi138 bash[22282]: audit 2024-04-14T15:31:35.244796+0000 mon.a (mon.0) 862 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:35.809 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:35 smithi138 bash[22282]: audit 2024-04-14T15:31:35.254228+0000 mon.a (mon.0) 863 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:35.809 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:35 smithi138 bash[22282]: audit 2024-04-14T15:31:35.264899+0000 mon.a (mon.0) 864 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:35.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:35 smithi110 bash[22161]: cluster 2024-04-14T15:31:33.730370+0000 mgr.a (mgr.14152) 302 : cluster [DBG] pgmap v257: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:31:35.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:35 smithi110 bash[22161]: audit 2024-04-14T15:31:34.527026+0000 mon.a (mon.0) 854 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:35.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:35 smithi110 bash[22161]: audit 2024-04-14T15:31:34.535013+0000 mon.a (mon.0) 855 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:35.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:35 smithi110 bash[22161]: audit 2024-04-14T15:31:34.545434+0000 mon.a (mon.0) 856 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:35.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:35 smithi110 bash[22161]: audit 2024-04-14T15:31:34.570301+0000 mon.a (mon.0) 857 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:31:35.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:35 smithi110 bash[22161]: audit 2024-04-14T15:31:34.575382+0000 mon.a (mon.0) 858 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:31:35.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:35 smithi110 bash[22161]: audit 2024-04-14T15:31:34.576860+0000 mon.a (mon.0) 859 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:31:35.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:35 smithi110 bash[22161]: cluster 2024-04-14T15:31:34.580109+0000 mgr.a (mgr.14152) 303 : cluster [DBG] pgmap v259: 1 pgs: 1 remapped+peering; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:31:35.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:35 smithi110 bash[22161]: audit 2024-04-14T15:31:34.586559+0000 mon.a (mon.0) 860 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:35.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:35 smithi110 bash[22161]: cluster 2024-04-14T15:31:34.852483+0000 mon.a (mon.0) 861 : cluster [DBG] osdmap e44: 6 total, 6 up, 6 in 2024-04-14T15:31:35.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:35 smithi110 bash[22161]: audit 2024-04-14T15:31:35.244796+0000 mon.a (mon.0) 862 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:35.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:35 smithi110 bash[22161]: audit 2024-04-14T15:31:35.254228+0000 mon.a (mon.0) 863 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:35.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:35 smithi110 bash[22161]: audit 2024-04-14T15:31:35.264899+0000 mon.a (mon.0) 864 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:35.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:35 smithi047 bash[21449]: cluster 2024-04-14T15:31:33.730370+0000 mgr.a (mgr.14152) 302 : cluster [DBG] pgmap v257: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:31:35.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:35 smithi047 bash[21449]: audit 2024-04-14T15:31:34.527026+0000 mon.a (mon.0) 854 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:35.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:35 smithi047 bash[21449]: audit 2024-04-14T15:31:34.535013+0000 mon.a (mon.0) 855 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:35.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:35 smithi047 bash[21449]: audit 2024-04-14T15:31:34.545434+0000 mon.a (mon.0) 856 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:35.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:35 smithi047 bash[21449]: audit 2024-04-14T15:31:34.570301+0000 mon.a (mon.0) 857 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:31:35.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:35 smithi047 bash[21449]: audit 2024-04-14T15:31:34.575382+0000 mon.a (mon.0) 858 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:31:35.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:35 smithi047 bash[21449]: audit 2024-04-14T15:31:34.576860+0000 mon.a (mon.0) 859 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:31:35.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:35 smithi047 bash[21449]: cluster 2024-04-14T15:31:34.580109+0000 mgr.a (mgr.14152) 303 : cluster [DBG] pgmap v259: 1 pgs: 1 remapped+peering; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:31:35.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:35 smithi047 bash[21449]: audit 2024-04-14T15:31:34.586559+0000 mon.a (mon.0) 860 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:35.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:35 smithi047 bash[21449]: cluster 2024-04-14T15:31:34.852483+0000 mon.a (mon.0) 861 : cluster [DBG] osdmap e44: 6 total, 6 up, 6 in 2024-04-14T15:31:35.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:35 smithi047 bash[21449]: audit 2024-04-14T15:31:35.244796+0000 mon.a (mon.0) 862 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:35.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:35 smithi047 bash[21449]: audit 2024-04-14T15:31:35.254228+0000 mon.a (mon.0) 863 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:35.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:35 smithi047 bash[21449]: audit 2024-04-14T15:31:35.264899+0000 mon.a (mon.0) 864 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:36.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:36 smithi047 bash[21449]: cluster 2024-04-14T15:31:35.855042+0000 mon.a (mon.0) 865 : cluster [DBG] osdmap e45: 6 total, 6 up, 6 in 2024-04-14T15:31:36.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:36 smithi047 bash[21449]: cluster 2024-04-14T15:31:36.580689+0000 mgr.a (mgr.14152) 304 : cluster [DBG] pgmap v262: 1 pgs: 1 remapped+peering; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:31:37.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:36 smithi110 bash[22161]: cluster 2024-04-14T15:31:35.855042+0000 mon.a (mon.0) 865 : cluster [DBG] osdmap e45: 6 total, 6 up, 6 in 2024-04-14T15:31:37.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:36 smithi110 bash[22161]: cluster 2024-04-14T15:31:36.580689+0000 mgr.a (mgr.14152) 304 : cluster [DBG] pgmap v262: 1 pgs: 1 remapped+peering; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:31:37.308 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:36 smithi138 bash[22282]: cluster 2024-04-14T15:31:35.855042+0000 mon.a (mon.0) 865 : cluster [DBG] osdmap e45: 6 total, 6 up, 6 in 2024-04-14T15:31:37.308 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:36 smithi138 bash[22282]: cluster 2024-04-14T15:31:36.580689+0000 mgr.a (mgr.14152) 304 : cluster [DBG] pgmap v262: 1 pgs: 1 remapped+peering; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:31:38.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:37 smithi110 bash[22161]: cluster 2024-04-14T15:31:36.864470+0000 mon.a (mon.0) 866 : cluster [DBG] osdmap e46: 6 total, 6 up, 6 in 2024-04-14T15:31:38.146 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:37 smithi110 bash[22161]: audit 2024-04-14T15:31:37.126120+0000 mon.a (mon.0) 867 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:38.146 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:37 smithi110 bash[22161]: audit 2024-04-14T15:31:37.135532+0000 mon.a (mon.0) 868 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:38.146 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:37 smithi110 bash[22161]: audit 2024-04-14T15:31:37.146473+0000 mon.a (mon.0) 869 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:38.206 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:37 smithi047 bash[21449]: cluster 2024-04-14T15:31:36.864470+0000 mon.a (mon.0) 866 : cluster [DBG] osdmap e46: 6 total, 6 up, 6 in 2024-04-14T15:31:38.207 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:37 smithi047 bash[21449]: audit 2024-04-14T15:31:37.126120+0000 mon.a (mon.0) 867 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:38.207 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:37 smithi047 bash[21449]: audit 2024-04-14T15:31:37.135532+0000 mon.a (mon.0) 868 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:38.207 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:37 smithi047 bash[21449]: audit 2024-04-14T15:31:37.146473+0000 mon.a (mon.0) 869 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:38.308 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:37 smithi138 bash[22282]: cluster 2024-04-14T15:31:36.864470+0000 mon.a (mon.0) 866 : cluster [DBG] osdmap e46: 6 total, 6 up, 6 in 2024-04-14T15:31:38.308 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:37 smithi138 bash[22282]: audit 2024-04-14T15:31:37.126120+0000 mon.a (mon.0) 867 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:38.308 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:37 smithi138 bash[22282]: audit 2024-04-14T15:31:37.135532+0000 mon.a (mon.0) 868 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:38.308 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:37 smithi138 bash[22282]: audit 2024-04-14T15:31:37.146473+0000 mon.a (mon.0) 869 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:38.685 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T15:31:39.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:38 smithi110 bash[22161]: cluster 2024-04-14T15:31:38.581292+0000 mgr.a (mgr.14152) 305 : cluster [DBG] pgmap v264: 1 pgs: 1 remapped+peering; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:31:39.206 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:38 smithi047 bash[21449]: cluster 2024-04-14T15:31:38.581292+0000 mgr.a (mgr.14152) 305 : cluster [DBG] pgmap v264: 1 pgs: 1 remapped+peering; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:31:39.308 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:38 smithi138 bash[22282]: cluster 2024-04-14T15:31:38.581292+0000 mgr.a (mgr.14152) 305 : cluster [DBG] pgmap v264: 1 pgs: 1 remapped+peering; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:31:40.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:40 smithi110 bash[22161]: cluster 2024-04-14T15:31:40.581878+0000 mgr.a (mgr.14152) 306 : cluster [DBG] pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-04-14T15:31:40.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:40 smithi047 bash[21449]: cluster 2024-04-14T15:31:40.581878+0000 mgr.a (mgr.14152) 306 : cluster [DBG] pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-04-14T15:31:41.058 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:40 smithi138 bash[22282]: cluster 2024-04-14T15:31:40.581878+0000 mgr.a (mgr.14152) 306 : cluster [DBG] pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-04-14T15:31:41.609 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-04-14T15:31:41.876 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:41 smithi047 bash[21449]: audit 2024-04-14T15:31:41.613937+0000 mon.a (mon.0) 870 : audit [DBG] from='client.? 172.21.15.47:0/2198904618' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-14T15:31:41.898 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:41 smithi110 bash[22161]: audit 2024-04-14T15:31:41.613937+0000 mon.a (mon.0) 870 : audit [DBG] from='client.? 172.21.15.47:0/2198904618' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-14T15:31:42.058 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:41 smithi138 bash[22282]: audit 2024-04-14T15:31:41.613937+0000 mon.a (mon.0) 870 : audit [DBG] from='client.? 172.21.15.47:0/2198904618' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-14T15:31:42.445 INFO:teuthology.orchestra.run.smithi047.stdout:{"epoch":46,"num_osds":6,"num_up_osds":6,"osd_up_since":1713108693,"num_in_osds":6,"osd_in_since":1713108665,"num_remapped_pgs":0} 2024-04-14T15:31:42.446 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph osd dump --format=json 2024-04-14T15:31:42.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:42 smithi047 bash[21449]: cluster 2024-04-14T15:31:42.582349+0000 mgr.a (mgr.14152) 307 : cluster [DBG] pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail; 75 KiB/s, 0 objects/s recovering 2024-04-14T15:31:42.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:42 smithi110 bash[22161]: cluster 2024-04-14T15:31:42.582349+0000 mgr.a (mgr.14152) 307 : cluster [DBG] pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail; 75 KiB/s, 0 objects/s recovering 2024-04-14T15:31:43.058 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:42 smithi138 bash[22282]: cluster 2024-04-14T15:31:42.582349+0000 mgr.a (mgr.14152) 307 : cluster [DBG] pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail; 75 KiB/s, 0 objects/s recovering 2024-04-14T15:31:44.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:44 smithi110 bash[22161]: cluster 2024-04-14T15:31:44.582919+0000 mgr.a (mgr.14152) 308 : cluster [DBG] pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail; 66 KiB/s, 0 objects/s recovering 2024-04-14T15:31:44.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:44 smithi047 bash[21449]: cluster 2024-04-14T15:31:44.582919+0000 mgr.a (mgr.14152) 308 : cluster [DBG] pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail; 66 KiB/s, 0 objects/s recovering 2024-04-14T15:31:45.057 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:44 smithi138 bash[22282]: cluster 2024-04-14T15:31:44.582919+0000 mgr.a (mgr.14152) 308 : cluster [DBG] pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail; 66 KiB/s, 0 objects/s recovering 2024-04-14T15:31:46.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:46 smithi110 bash[22161]: cluster 2024-04-14T15:31:46.583505+0000 mgr.a (mgr.14152) 309 : cluster [DBG] pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-04-14T15:31:46.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:46 smithi047 bash[21449]: cluster 2024-04-14T15:31:46.583505+0000 mgr.a (mgr.14152) 309 : cluster [DBG] pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-04-14T15:31:47.058 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:46 smithi138 bash[22282]: cluster 2024-04-14T15:31:46.583505+0000 mgr.a (mgr.14152) 309 : cluster [DBG] pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-04-14T15:31:47.184 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T15:31:48.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:48 smithi047 bash[21449]: cluster 2024-04-14T15:31:48.584147+0000 mgr.a (mgr.14152) 310 : cluster [DBG] pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail; 49 KiB/s, 0 objects/s recovering 2024-04-14T15:31:48.823 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:48 smithi110 bash[22161]: cluster 2024-04-14T15:31:48.584147+0000 mgr.a (mgr.14152) 310 : cluster [DBG] pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail; 49 KiB/s, 0 objects/s recovering 2024-04-14T15:31:49.058 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:48 smithi138 bash[22282]: cluster 2024-04-14T15:31:48.584147+0000 mgr.a (mgr.14152) 310 : cluster [DBG] pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail; 49 KiB/s, 0 objects/s recovering 2024-04-14T15:31:50.270 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-04-14T15:31:50.270 INFO:teuthology.orchestra.run.smithi047.stdout:{"epoch":46,"fsid":"af942ef8-fa72-11ee-bc8e-c7b262605968","created":"2024-04-14T15:23:02.832668+0000","modified":"2024-04-14T15:31:36.850834+0000","last_up_change":"2024-04-14T15:31:33.145586+0000","last_in_change":"2024-04-14T15:31:05.941441+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":6,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-04-14T15:28:58.058616+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":"22","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":6,"score_stable":6,"optimal_score":0.5,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"9af483c5-e412-437f-b0d3-3ed8f007171b","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":28,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6802","nonce":4086859852},{"type":"v1","addr":"172.21.15.47:6803","nonce":4086859852}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6804","nonce":4086859852},{"type":"v1","addr":"172.21.15.47:6805","nonce":4086859852}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6808","nonce":4086859852},{"type":"v1","addr":"172.21.15.47:6809","nonce":4086859852}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6806","nonce":4086859852},{"type":"v1","addr":"172.21.15.47:6807","nonce":4086859852}]},"public_addr":"172.21.15.47:6803/4086859852","cluster_addr":"172.21.15.47:6805/4086859852","heartbeat_back_addr":"172.21.15.47:6809/4086859852","heartbeat_front_addr":"172.21.15.47:6807/4086859852","state":["exists","up"]},{"osd":1,"uuid":"81cd85ba-495f-4039-abd0-5ccf9c1a05fc","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":13,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6810","nonce":3221488786},{"type":"v1","addr":"172.21.15.47:6811","nonce":3221488786}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6812","nonce":3221488786},{"type":"v1","addr":"172.21.15.47:6813","nonce":3221488786}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6816","nonce":3221488786},{"type":"v1","addr":"172.21.15.47:6817","nonce":3221488786}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6814","nonce":3221488786},{"type":"v1","addr":"172.21.15.47:6815","nonce":3221488786}]},"public_addr":"172.21.15.47:6811/3221488786","cluster_addr":"172.21.15.47:6813/3221488786","heartbeat_back_addr":"172.21.15.47:6817/3221488786","heartbeat_front_addr":"172.21.15.47:6815/3221488786","state":["exists","up"]},{"osd":2,"uuid":"8851bf2c-76e0-41fc-b5b8-59e071666826","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":20,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.110:6800","nonce":1340287589},{"type":"v1","addr":"172.21.15.110:6801","nonce":1340287589}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.110:6802","nonce":1340287589},{"type":"v1","addr":"172.21.15.110:6803","nonce":1340287589}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.110:6806","nonce":1340287589},{"type":"v1","addr":"172.21.15.110:6807","nonce":1340287589}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.110:6804","nonce":1340287589},{"type":"v1","addr":"172.21.15.110:6805","nonce":1340287589}]},"public_addr":"172.21.15.110:6801/1340287589","cluster_addr":"172.21.15.110:6803/1340287589","heartbeat_back_addr":"172.21.15.110:6807/1340287589","heartbeat_front_addr":"172.21.15.110:6805/1340287589","state":["exists","up"]},{"osd":3,"uuid":"80847129-718e-4332-bbe1-5681f0ef9cf7","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":26,"up_thru":45,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.110:6808","nonce":1571586325},{"type":"v1","addr":"172.21.15.110:6809","nonce":1571586325}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.110:6810","nonce":1571586325},{"type":"v1","addr":"172.21.15.110:6811","nonce":1571586325}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.110:6814","nonce":1571586325},{"type":"v1","addr":"172.21.15.110:6815","nonce":1571586325}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.110:6812","nonce":1571586325},{"type":"v1","addr":"172.21.15.110:6813","nonce":1571586325}]},"public_addr":"172.21.15.110:6809/1571586325","cluster_addr":"172.21.15.110:6811/1571586325","heartbeat_back_addr":"172.21.15.110:6815/1571586325","heartbeat_front_addr":"172.21.15.110:6813/1571586325","state":["exists","up"]},{"osd":4,"uuid":"05d515e5-6afc-461e-a05e-7982f984e9ba","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":34,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6800","nonce":3691250801},{"type":"v1","addr":"172.21.15.138:6801","nonce":3691250801}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6802","nonce":3691250801},{"type":"v1","addr":"172.21.15.138:6803","nonce":3691250801}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6806","nonce":3691250801},{"type":"v1","addr":"172.21.15.138:6807","nonce":3691250801}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6804","nonce":3691250801},{"type":"v1","addr":"172.21.15.138:6805","nonce":3691250801}]},"public_addr":"172.21.15.138:6801/3691250801","cluster_addr":"172.21.15.138:6803/3691250801","heartbeat_back_addr":"172.21.15.138:6807/3691250801","heartbeat_front_addr":"172.21.15.138:6805/3691250801","state":["exists","up"]},{"osd":5,"uuid":"a99284f5-3678-4627-879a-e5424c59d658","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":42,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6808","nonce":117271508},{"type":"v1","addr":"172.21.15.138:6809","nonce":117271508}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6810","nonce":117271508},{"type":"v1","addr":"172.21.15.138:6811","nonce":117271508}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6814","nonce":117271508},{"type":"v1","addr":"172.21.15.138:6815","nonce":117271508}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6812","nonce":117271508},{"type":"v1","addr":"172.21.15.138:6813","nonce":117271508}]},"public_addr":"172.21.15.138:6809/117271508","cluster_addr":"172.21.15.138:6811/117271508","heartbeat_back_addr":"172.21.15.138:6815/117271508","heartbeat_front_addr":"172.21.15.138:6813/117271508","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-14T15:27:13.393262+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-14T15:28:05.487556+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-14T15:28:55.382789+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-14T15:29:43.228233+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-14T15:30:37.741802+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-14T15:31:31.978174+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.47:6801/1796899555":"2024-04-15T15:24:11.821987+0000","172.21.15.47:0/2025921757":"2024-04-15T15:24:11.821987+0000","172.21.15.47:0/695075967":"2024-04-15T15:23:35.750134+0000","172.21.15.47:6800/1796899555":"2024-04-15T15:24:11.821987+0000","172.21.15.47:6801/3274719635":"2024-04-15T15:23:35.750134+0000","172.21.15.47:0/1963017756":"2024-04-15T15:23:35.750134+0000","172.21.15.47:6800/3274719635":"2024-04-15T15:23:35.750134+0000","172.21.15.47:0/413835958":"2024-04-15T15:24:11.821987+0000","172.21.15.47:0/3517183668":"2024-04-15T15:23:35.750134+0000","172.21.15.47:0/694132544":"2024-04-15T15:24:11.821987+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-14T15:31:50.636 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:50 smithi110 bash[22161]: audit 2024-04-14T15:31:50.273336+0000 mon.a (mon.0) 871 : audit [DBG] from='client.? 172.21.15.47:0/800370688' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-14T15:31:50.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:50 smithi047 bash[21449]: audit 2024-04-14T15:31:50.273336+0000 mon.a (mon.0) 871 : audit [DBG] from='client.? 172.21.15.47:0/800370688' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-14T15:31:50.808 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:50 smithi138 bash[22282]: audit 2024-04-14T15:31:50.273336+0000 mon.a (mon.0) 871 : audit [DBG] from='client.? 172.21.15.47:0/800370688' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-14T15:31:51.437 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2024-04-14T15:28:58.058616+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': '22', 'last_force_op_resend': '0', 'last_force_op_resend_prenautilus': '0', 'last_force_op_resend_preluminous': '0', 'auid': 0, 'snap_mode': 'selfmanaged', 'snap_seq': 0, 'snap_epoch': 0, 'pool_snaps': [], 'removed_snaps': '[]', 'quota_max_bytes': 0, 'quota_max_objects': 0, 'tiers': [], 'tier_of': -1, 'read_tier': -1, 'write_tier': -1, 'cache_mode': 'none', 'target_max_bytes': 0, 'target_max_objects': 0, 'cache_target_dirty_ratio_micro': 400000, 'cache_target_dirty_high_ratio_micro': 600000, 'cache_target_full_ratio_micro': 800000, 'cache_min_flush_age': 0, 'cache_min_evict_age': 0, 'erasure_code_profile': '', 'hit_set_params': {'type': 'none'}, 'hit_set_period': 0, 'hit_set_count': 0, 'use_gmt_hitset': True, 'min_read_recency_for_promote': 0, 'min_write_recency_for_promote': 0, 'hit_set_grade_decay_rate': 0, 'hit_set_search_last_n': 0, 'grade_table': [], 'stripe_width': 0, 'expected_num_objects': 0, 'fast_read': False, 'options': {'pg_num_max': 32, 'pg_num_min': 1}, 'application_metadata': {'mgr': {}}, 'read_balance': {'score_type': 'Fair distribution', 'score_acting': 6, 'score_stable': 6, 'optimal_score': 0.5, 'raw_score_acting': 3, 'raw_score_stable': 3, 'primary_affinity_weighted': 1, 'average_primary_affinity': 1, 'average_primary_affinity_weighted': 1}}] 2024-04-14T15:31:51.437 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph osd pool get .mgr pg_num 2024-04-14T15:31:51.636 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:51 smithi047 bash[21449]: cluster 2024-04-14T15:31:50.584694+0000 mgr.a (mgr.14152) 311 : cluster [DBG] pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-04-14T15:31:51.636 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:51 smithi047 bash[21449]: audit 2024-04-14T15:31:51.129392+0000 mon.a (mon.0) 872 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:51.636 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:51 smithi047 bash[21449]: audit 2024-04-14T15:31:51.137415+0000 mon.a (mon.0) 873 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:51.636 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:51 smithi047 bash[21449]: audit 2024-04-14T15:31:51.145815+0000 mon.a (mon.0) 874 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:51.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:51 smithi110 bash[22161]: cluster 2024-04-14T15:31:50.584694+0000 mgr.a (mgr.14152) 311 : cluster [DBG] pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-04-14T15:31:51.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:51 smithi110 bash[22161]: audit 2024-04-14T15:31:51.129392+0000 mon.a (mon.0) 872 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:51.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:51 smithi110 bash[22161]: audit 2024-04-14T15:31:51.137415+0000 mon.a (mon.0) 873 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:51.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:51 smithi110 bash[22161]: audit 2024-04-14T15:31:51.145815+0000 mon.a (mon.0) 874 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:51.808 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:51 smithi138 bash[22282]: cluster 2024-04-14T15:31:50.584694+0000 mgr.a (mgr.14152) 311 : cluster [DBG] pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-04-14T15:31:51.808 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:51 smithi138 bash[22282]: audit 2024-04-14T15:31:51.129392+0000 mon.a (mon.0) 872 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:51.808 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:51 smithi138 bash[22282]: audit 2024-04-14T15:31:51.137415+0000 mon.a (mon.0) 873 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:51.808 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:51 smithi138 bash[22282]: audit 2024-04-14T15:31:51.145815+0000 mon.a (mon.0) 874 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:53.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:53 smithi110 bash[22161]: cluster 2024-04-14T15:31:52.585355+0000 mgr.a (mgr.14152) 312 : cluster [DBG] pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:31:53.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:53 smithi047 bash[21449]: cluster 2024-04-14T15:31:52.585355+0000 mgr.a (mgr.14152) 312 : cluster [DBG] pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:31:54.058 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:53 smithi138 bash[22282]: cluster 2024-04-14T15:31:52.585355+0000 mgr.a (mgr.14152) 312 : cluster [DBG] pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:31:56.808 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:56 smithi138 bash[22282]: cluster 2024-04-14T15:31:54.585874+0000 mgr.a (mgr.14152) 313 : cluster [DBG] pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:31:56.808 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:56 smithi138 bash[22282]: audit 2024-04-14T15:31:55.472882+0000 mon.a (mon.0) 875 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:56.808 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:56 smithi138 bash[22282]: audit 2024-04-14T15:31:55.482138+0000 mon.a (mon.0) 876 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:56.808 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:56 smithi138 bash[22282]: audit 2024-04-14T15:31:55.492715+0000 mon.a (mon.0) 877 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:56.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:56 smithi110 bash[22161]: cluster 2024-04-14T15:31:54.585874+0000 mgr.a (mgr.14152) 313 : cluster [DBG] pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:31:56.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:56 smithi110 bash[22161]: audit 2024-04-14T15:31:55.472882+0000 mon.a (mon.0) 875 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:56.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:56 smithi110 bash[22161]: audit 2024-04-14T15:31:55.482138+0000 mon.a (mon.0) 876 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:56.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:56 smithi110 bash[22161]: audit 2024-04-14T15:31:55.492715+0000 mon.a (mon.0) 877 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:56.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:56 smithi047 bash[21449]: cluster 2024-04-14T15:31:54.585874+0000 mgr.a (mgr.14152) 313 : cluster [DBG] pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:31:56.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:56 smithi047 bash[21449]: audit 2024-04-14T15:31:55.472882+0000 mon.a (mon.0) 875 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:56.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:56 smithi047 bash[21449]: audit 2024-04-14T15:31:55.482138+0000 mon.a (mon.0) 876 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:56.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:56 smithi047 bash[21449]: audit 2024-04-14T15:31:55.492715+0000 mon.a (mon.0) 877 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:57.263 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T15:31:58.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:58 smithi047 bash[21449]: cluster 2024-04-14T15:31:56.586368+0000 mgr.a (mgr.14152) 314 : cluster [DBG] pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:31:58.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:58 smithi047 bash[21449]: audit 2024-04-14T15:31:57.333151+0000 mon.a (mon.0) 878 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:58.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:58 smithi047 bash[21449]: audit 2024-04-14T15:31:57.338193+0000 mon.a (mon.0) 879 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:58.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:31:58 smithi047 bash[21449]: audit 2024-04-14T15:31:57.343170+0000 mon.a (mon.0) 880 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:58.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:58 smithi110 bash[22161]: cluster 2024-04-14T15:31:56.586368+0000 mgr.a (mgr.14152) 314 : cluster [DBG] pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:31:58.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:58 smithi110 bash[22161]: audit 2024-04-14T15:31:57.333151+0000 mon.a (mon.0) 878 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:58.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:58 smithi110 bash[22161]: audit 2024-04-14T15:31:57.338193+0000 mon.a (mon.0) 879 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:58.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:31:58 smithi110 bash[22161]: audit 2024-04-14T15:31:57.343170+0000 mon.a (mon.0) 880 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:58.808 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:58 smithi138 bash[22282]: cluster 2024-04-14T15:31:56.586368+0000 mgr.a (mgr.14152) 314 : cluster [DBG] pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:31:58.808 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:58 smithi138 bash[22282]: audit 2024-04-14T15:31:57.333151+0000 mon.a (mon.0) 878 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:58.808 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:58 smithi138 bash[22282]: audit 2024-04-14T15:31:57.338193+0000 mon.a (mon.0) 879 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:31:58.808 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:31:58 smithi138 bash[22282]: audit 2024-04-14T15:31:57.343170+0000 mon.a (mon.0) 880 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:00.072 INFO:teuthology.orchestra.run.smithi047.stdout:pg_num: 1 2024-04-14T15:32:00.341 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:00 smithi047 bash[21449]: cluster 2024-04-14T15:31:58.586882+0000 mgr.a (mgr.14152) 315 : cluster [DBG] pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:00.341 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:00 smithi047 bash[21449]: audit 2024-04-14T15:32:00.077255+0000 mon.a (mon.0) 881 : audit [DBG] from='client.? 172.21.15.47:0/4253877890' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-04-14T15:32:00.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:00 smithi110 bash[22161]: cluster 2024-04-14T15:31:58.586882+0000 mgr.a (mgr.14152) 315 : cluster [DBG] pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:00.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:00 smithi110 bash[22161]: audit 2024-04-14T15:32:00.077255+0000 mon.a (mon.0) 881 : audit [DBG] from='client.? 172.21.15.47:0/4253877890' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-04-14T15:32:00.808 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:00 smithi138 bash[22282]: cluster 2024-04-14T15:31:58.586882+0000 mgr.a (mgr.14152) 315 : cluster [DBG] pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:00.808 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:00 smithi138 bash[22282]: audit 2024-04-14T15:32:00.077255+0000 mon.a (mon.0) 881 : audit [DBG] from='client.? 172.21.15.47:0/4253877890' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-04-14T15:32:00.859 INFO:tasks.cephadm:Setting up client nodes... 2024-04-14T15:32:00.859 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-04-14T15:32:00.859 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-04-14T15:32:00.860 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph mgr dump --format=json 2024-04-14T15:32:02.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:02 smithi110 bash[22161]: cluster 2024-04-14T15:32:00.587481+0000 mgr.a (mgr.14152) 316 : cluster [DBG] pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:02.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:02 smithi047 bash[21449]: cluster 2024-04-14T15:32:00.587481+0000 mgr.a (mgr.14152) 316 : cluster [DBG] pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:02.807 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:02 smithi138 bash[22282]: cluster 2024-04-14T15:32:00.587481+0000 mgr.a (mgr.14152) 316 : cluster [DBG] pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:04.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:04 smithi110 bash[22161]: cluster 2024-04-14T15:32:02.587998+0000 mgr.a (mgr.14152) 317 : cluster [DBG] pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:04.654 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:04 smithi138 bash[22282]: cluster 2024-04-14T15:32:02.587998+0000 mgr.a (mgr.14152) 317 : cluster [DBG] pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:04.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:04 smithi047 bash[21449]: cluster 2024-04-14T15:32:02.587998+0000 mgr.a (mgr.14152) 317 : cluster [DBG] pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:05.596 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T15:32:06.605 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:06 smithi047 bash[21449]: cluster 2024-04-14T15:32:04.588518+0000 mgr.a (mgr.14152) 318 : cluster [DBG] pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:06.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:06 smithi110 bash[22161]: cluster 2024-04-14T15:32:04.588518+0000 mgr.a (mgr.14152) 318 : cluster [DBG] pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:06.807 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:06 smithi138 bash[22282]: cluster 2024-04-14T15:32:04.588518+0000 mgr.a (mgr.14152) 318 : cluster [DBG] pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:08.526 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-04-14T15:32:08.629 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:08 smithi110 bash[22161]: cluster 2024-04-14T15:32:06.588948+0000 mgr.a (mgr.14152) 319 : cluster [DBG] pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:08.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:08 smithi047 bash[21449]: cluster 2024-04-14T15:32:06.588948+0000 mgr.a (mgr.14152) 319 : cluster [DBG] pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:08.807 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:08 smithi138 bash[22282]: cluster 2024-04-14T15:32:06.588948+0000 mgr.a (mgr.14152) 319 : cluster [DBG] pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:09.242 INFO:teuthology.orchestra.run.smithi047.stdout:{"epoch":15,"flags":0,"active_gid":14152,"active_name":"a","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6800","nonce":3923791745},{"type":"v1","addr":"172.21.15.47:6801","nonce":3923791745}]},"active_addr":"172.21.15.47:6801/3923791745","active_change":"2024-04-14T15:24:11.822228+0000","active_mgr_features":4540701547738038271,"available":true,"standbys":[{"gid":24104,"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.0.0","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.0.0","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.47: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.47:0","nonce":1606350796}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"172.21.15.47:0","nonce":3267804350}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.47:0","nonce":2462826857}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.47:0","nonce":2469140449}]}]} 2024-04-14T15:32:09.249 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-04-14T15:32:09.249 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-04-14T15:32:09.249 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph osd dump --format=json 2024-04-14T15:32:09.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:09 smithi110 bash[22161]: audit 2024-04-14T15:32:08.520345+0000 mon.a (mon.0) 882 : audit [DBG] from='client.? 172.21.15.47:0/2575271672' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-04-14T15:32:09.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:09 smithi047 bash[21449]: audit 2024-04-14T15:32:08.520345+0000 mon.a (mon.0) 882 : audit [DBG] from='client.? 172.21.15.47:0/2575271672' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-04-14T15:32:09.807 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:09 smithi138 bash[22282]: audit 2024-04-14T15:32:08.520345+0000 mon.a (mon.0) 882 : audit [DBG] from='client.? 172.21.15.47:0/2575271672' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-04-14T15:32:10.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:10 smithi110 bash[22161]: cluster 2024-04-14T15:32:08.589271+0000 mgr.a (mgr.14152) 320 : cluster [DBG] pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:10.660 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:10 smithi047 bash[21449]: cluster 2024-04-14T15:32:08.589271+0000 mgr.a (mgr.14152) 320 : cluster [DBG] pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:10.807 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:10 smithi138 bash[22282]: cluster 2024-04-14T15:32:08.589271+0000 mgr.a (mgr.14152) 320 : cluster [DBG] pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:12.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:12 smithi110 bash[22161]: cluster 2024-04-14T15:32:10.589797+0000 mgr.a (mgr.14152) 321 : cluster [DBG] pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:12.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:12 smithi110 bash[22161]: audit 2024-04-14T15:32:11.351782+0000 mon.a (mon.0) 883 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:12.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:12 smithi110 bash[22161]: audit 2024-04-14T15:32:11.360876+0000 mon.a (mon.0) 884 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:12.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:12 smithi110 bash[22161]: audit 2024-04-14T15:32:11.373460+0000 mon.a (mon.0) 885 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:12.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:12 smithi047 bash[21449]: cluster 2024-04-14T15:32:10.589797+0000 mgr.a (mgr.14152) 321 : cluster [DBG] pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:12.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:12 smithi047 bash[21449]: audit 2024-04-14T15:32:11.351782+0000 mon.a (mon.0) 883 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:12.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:12 smithi047 bash[21449]: audit 2024-04-14T15:32:11.360876+0000 mon.a (mon.0) 884 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:12.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:12 smithi047 bash[21449]: audit 2024-04-14T15:32:11.373460+0000 mon.a (mon.0) 885 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:12.807 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:12 smithi138 bash[22282]: cluster 2024-04-14T15:32:10.589797+0000 mgr.a (mgr.14152) 321 : cluster [DBG] pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:12.808 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:12 smithi138 bash[22282]: audit 2024-04-14T15:32:11.351782+0000 mon.a (mon.0) 883 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:12.808 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:12 smithi138 bash[22282]: audit 2024-04-14T15:32:11.360876+0000 mon.a (mon.0) 884 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:12.808 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:12 smithi138 bash[22282]: audit 2024-04-14T15:32:11.373460+0000 mon.a (mon.0) 885 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:14.481 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:14 smithi047 bash[21449]: cluster 2024-04-14T15:32:12.590373+0000 mgr.a (mgr.14152) 322 : cluster [DBG] pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:14.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:14 smithi110 bash[22161]: cluster 2024-04-14T15:32:12.590373+0000 mgr.a (mgr.14152) 322 : cluster [DBG] pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:14.807 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:14 smithi138 bash[22282]: cluster 2024-04-14T15:32:12.590373+0000 mgr.a (mgr.14152) 322 : cluster [DBG] pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:15.337 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T15:32:16.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:16 smithi110 bash[22161]: cluster 2024-04-14T15:32:14.590957+0000 mgr.a (mgr.14152) 323 : cluster [DBG] pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:16.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:16 smithi110 bash[22161]: audit 2024-04-14T15:32:15.690143+0000 mon.a (mon.0) 886 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:16.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:16 smithi110 bash[22161]: audit 2024-04-14T15:32:15.700106+0000 mon.a (mon.0) 887 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:16.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:16 smithi110 bash[22161]: audit 2024-04-14T15:32:15.711003+0000 mon.a (mon.0) 888 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:16.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:16 smithi047 bash[21449]: cluster 2024-04-14T15:32:14.590957+0000 mgr.a (mgr.14152) 323 : cluster [DBG] pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:16.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:16 smithi047 bash[21449]: audit 2024-04-14T15:32:15.690143+0000 mon.a (mon.0) 886 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:16.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:16 smithi047 bash[21449]: audit 2024-04-14T15:32:15.700106+0000 mon.a (mon.0) 887 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:16.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:16 smithi047 bash[21449]: audit 2024-04-14T15:32:15.711003+0000 mon.a (mon.0) 888 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:16.807 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:16 smithi138 bash[22282]: cluster 2024-04-14T15:32:14.590957+0000 mgr.a (mgr.14152) 323 : cluster [DBG] pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:16.807 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:16 smithi138 bash[22282]: audit 2024-04-14T15:32:15.690143+0000 mon.a (mon.0) 886 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:16.807 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:16 smithi138 bash[22282]: audit 2024-04-14T15:32:15.700106+0000 mon.a (mon.0) 887 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:16.807 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:16 smithi138 bash[22282]: audit 2024-04-14T15:32:15.711003+0000 mon.a (mon.0) 888 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:18.008 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-04-14T15:32:18.008 INFO:teuthology.orchestra.run.smithi047.stdout:{"epoch":46,"fsid":"af942ef8-fa72-11ee-bc8e-c7b262605968","created":"2024-04-14T15:23:02.832668+0000","modified":"2024-04-14T15:31:36.850834+0000","last_up_change":"2024-04-14T15:31:33.145586+0000","last_in_change":"2024-04-14T15:31:05.941441+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":6,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-04-14T15:28:58.058616+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":"22","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":6,"score_stable":6,"optimal_score":0.5,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"9af483c5-e412-437f-b0d3-3ed8f007171b","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":28,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6802","nonce":4086859852},{"type":"v1","addr":"172.21.15.47:6803","nonce":4086859852}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6804","nonce":4086859852},{"type":"v1","addr":"172.21.15.47:6805","nonce":4086859852}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6808","nonce":4086859852},{"type":"v1","addr":"172.21.15.47:6809","nonce":4086859852}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6806","nonce":4086859852},{"type":"v1","addr":"172.21.15.47:6807","nonce":4086859852}]},"public_addr":"172.21.15.47:6803/4086859852","cluster_addr":"172.21.15.47:6805/4086859852","heartbeat_back_addr":"172.21.15.47:6809/4086859852","heartbeat_front_addr":"172.21.15.47:6807/4086859852","state":["exists","up"]},{"osd":1,"uuid":"81cd85ba-495f-4039-abd0-5ccf9c1a05fc","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":13,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6810","nonce":3221488786},{"type":"v1","addr":"172.21.15.47:6811","nonce":3221488786}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6812","nonce":3221488786},{"type":"v1","addr":"172.21.15.47:6813","nonce":3221488786}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6816","nonce":3221488786},{"type":"v1","addr":"172.21.15.47:6817","nonce":3221488786}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6814","nonce":3221488786},{"type":"v1","addr":"172.21.15.47:6815","nonce":3221488786}]},"public_addr":"172.21.15.47:6811/3221488786","cluster_addr":"172.21.15.47:6813/3221488786","heartbeat_back_addr":"172.21.15.47:6817/3221488786","heartbeat_front_addr":"172.21.15.47:6815/3221488786","state":["exists","up"]},{"osd":2,"uuid":"8851bf2c-76e0-41fc-b5b8-59e071666826","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":20,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.110:6800","nonce":1340287589},{"type":"v1","addr":"172.21.15.110:6801","nonce":1340287589}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.110:6802","nonce":1340287589},{"type":"v1","addr":"172.21.15.110:6803","nonce":1340287589}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.110:6806","nonce":1340287589},{"type":"v1","addr":"172.21.15.110:6807","nonce":1340287589}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.110:6804","nonce":1340287589},{"type":"v1","addr":"172.21.15.110:6805","nonce":1340287589}]},"public_addr":"172.21.15.110:6801/1340287589","cluster_addr":"172.21.15.110:6803/1340287589","heartbeat_back_addr":"172.21.15.110:6807/1340287589","heartbeat_front_addr":"172.21.15.110:6805/1340287589","state":["exists","up"]},{"osd":3,"uuid":"80847129-718e-4332-bbe1-5681f0ef9cf7","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":26,"up_thru":45,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.110:6808","nonce":1571586325},{"type":"v1","addr":"172.21.15.110:6809","nonce":1571586325}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.110:6810","nonce":1571586325},{"type":"v1","addr":"172.21.15.110:6811","nonce":1571586325}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.110:6814","nonce":1571586325},{"type":"v1","addr":"172.21.15.110:6815","nonce":1571586325}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.110:6812","nonce":1571586325},{"type":"v1","addr":"172.21.15.110:6813","nonce":1571586325}]},"public_addr":"172.21.15.110:6809/1571586325","cluster_addr":"172.21.15.110:6811/1571586325","heartbeat_back_addr":"172.21.15.110:6815/1571586325","heartbeat_front_addr":"172.21.15.110:6813/1571586325","state":["exists","up"]},{"osd":4,"uuid":"05d515e5-6afc-461e-a05e-7982f984e9ba","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":34,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6800","nonce":3691250801},{"type":"v1","addr":"172.21.15.138:6801","nonce":3691250801}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6802","nonce":3691250801},{"type":"v1","addr":"172.21.15.138:6803","nonce":3691250801}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6806","nonce":3691250801},{"type":"v1","addr":"172.21.15.138:6807","nonce":3691250801}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6804","nonce":3691250801},{"type":"v1","addr":"172.21.15.138:6805","nonce":3691250801}]},"public_addr":"172.21.15.138:6801/3691250801","cluster_addr":"172.21.15.138:6803/3691250801","heartbeat_back_addr":"172.21.15.138:6807/3691250801","heartbeat_front_addr":"172.21.15.138:6805/3691250801","state":["exists","up"]},{"osd":5,"uuid":"a99284f5-3678-4627-879a-e5424c59d658","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":42,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6808","nonce":117271508},{"type":"v1","addr":"172.21.15.138:6809","nonce":117271508}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6810","nonce":117271508},{"type":"v1","addr":"172.21.15.138:6811","nonce":117271508}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6814","nonce":117271508},{"type":"v1","addr":"172.21.15.138:6815","nonce":117271508}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6812","nonce":117271508},{"type":"v1","addr":"172.21.15.138:6813","nonce":117271508}]},"public_addr":"172.21.15.138:6809/117271508","cluster_addr":"172.21.15.138:6811/117271508","heartbeat_back_addr":"172.21.15.138:6815/117271508","heartbeat_front_addr":"172.21.15.138:6813/117271508","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-14T15:27:13.393262+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-14T15:28:05.487556+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-14T15:28:55.382789+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-14T15:29:43.228233+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-14T15:30:37.741802+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-14T15:31:31.978174+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.47:6801/1796899555":"2024-04-15T15:24:11.821987+0000","172.21.15.47:0/2025921757":"2024-04-15T15:24:11.821987+0000","172.21.15.47:0/695075967":"2024-04-15T15:23:35.750134+0000","172.21.15.47:6800/1796899555":"2024-04-15T15:24:11.821987+0000","172.21.15.47:6801/3274719635":"2024-04-15T15:23:35.750134+0000","172.21.15.47:0/1963017756":"2024-04-15T15:23:35.750134+0000","172.21.15.47:6800/3274719635":"2024-04-15T15:23:35.750134+0000","172.21.15.47:0/413835958":"2024-04-15T15:24:11.821987+0000","172.21.15.47:0/3517183668":"2024-04-15T15:23:35.750134+0000","172.21.15.47:0/694132544":"2024-04-15T15:24:11.821987+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-14T15:32:18.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:18 smithi047 bash[21449]: cluster 2024-04-14T15:32:16.591495+0000 mgr.a (mgr.14152) 324 : cluster [DBG] pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:18.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:18 smithi047 bash[21449]: audit 2024-04-14T15:32:17.497009+0000 mon.a (mon.0) 889 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:18.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:18 smithi047 bash[21449]: audit 2024-04-14T15:32:17.503833+0000 mon.a (mon.0) 890 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:18.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:18 smithi047 bash[21449]: audit 2024-04-14T15:32:17.510631+0000 mon.a (mon.0) 891 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:18.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:18 smithi047 bash[21449]: audit 2024-04-14T15:32:18.011164+0000 mon.a (mon.0) 892 : audit [DBG] from='client.? 172.21.15.47:0/1583958114' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-14T15:32:18.769 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-04-14T15:32:18.769 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph osd dump --format=json 2024-04-14T15:32:18.808 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:18 smithi138 bash[22282]: cluster 2024-04-14T15:32:16.591495+0000 mgr.a (mgr.14152) 324 : cluster [DBG] pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:18.808 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:18 smithi138 bash[22282]: audit 2024-04-14T15:32:17.497009+0000 mon.a (mon.0) 889 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:18.808 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:18 smithi138 bash[22282]: audit 2024-04-14T15:32:17.503833+0000 mon.a (mon.0) 890 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:18.808 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:18 smithi138 bash[22282]: audit 2024-04-14T15:32:17.510631+0000 mon.a (mon.0) 891 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:18.808 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:18 smithi138 bash[22282]: audit 2024-04-14T15:32:18.011164+0000 mon.a (mon.0) 892 : audit [DBG] from='client.? 172.21.15.47:0/1583958114' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-14T15:32:18.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:18 smithi110 bash[22161]: cluster 2024-04-14T15:32:16.591495+0000 mgr.a (mgr.14152) 324 : cluster [DBG] pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:18.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:18 smithi110 bash[22161]: audit 2024-04-14T15:32:17.497009+0000 mon.a (mon.0) 889 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:18.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:18 smithi110 bash[22161]: audit 2024-04-14T15:32:17.503833+0000 mon.a (mon.0) 890 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:18.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:18 smithi110 bash[22161]: audit 2024-04-14T15:32:17.510631+0000 mon.a (mon.0) 891 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:18.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:18 smithi110 bash[22161]: audit 2024-04-14T15:32:18.011164+0000 mon.a (mon.0) 892 : audit [DBG] from='client.? 172.21.15.47:0/1583958114' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-14T15:32:20.807 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:20 smithi138 bash[22282]: cluster 2024-04-14T15:32:18.592096+0000 mgr.a (mgr.14152) 325 : cluster [DBG] pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:20.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:20 smithi110 bash[22161]: cluster 2024-04-14T15:32:18.592096+0000 mgr.a (mgr.14152) 325 : cluster [DBG] pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:20.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:20 smithi047 bash[21449]: cluster 2024-04-14T15:32:18.592096+0000 mgr.a (mgr.14152) 325 : cluster [DBG] pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:22.557 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:22 smithi138 bash[22282]: cluster 2024-04-14T15:32:20.592642+0000 mgr.a (mgr.14152) 326 : cluster [DBG] pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:22.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:22 smithi110 bash[22161]: cluster 2024-04-14T15:32:20.592642+0000 mgr.a (mgr.14152) 326 : cluster [DBG] pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:22.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:22 smithi047 bash[21449]: cluster 2024-04-14T15:32:20.592642+0000 mgr.a (mgr.14152) 326 : cluster [DBG] pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:23.500 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T15:32:24.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:24 smithi047 bash[21449]: cluster 2024-04-14T15:32:22.593181+0000 mgr.a (mgr.14152) 327 : cluster [DBG] pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:24.807 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:24 smithi138 bash[22282]: cluster 2024-04-14T15:32:22.593181+0000 mgr.a (mgr.14152) 327 : cluster [DBG] pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:24.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:24 smithi110 bash[22161]: cluster 2024-04-14T15:32:22.593181+0000 mgr.a (mgr.14152) 327 : cluster [DBG] pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:26.331 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-04-14T15:32:26.331 INFO:teuthology.orchestra.run.smithi047.stdout:{"epoch":46,"fsid":"af942ef8-fa72-11ee-bc8e-c7b262605968","created":"2024-04-14T15:23:02.832668+0000","modified":"2024-04-14T15:31:36.850834+0000","last_up_change":"2024-04-14T15:31:33.145586+0000","last_in_change":"2024-04-14T15:31:05.941441+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":6,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-04-14T15:28:58.058616+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":"22","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":6,"score_stable":6,"optimal_score":0.5,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"9af483c5-e412-437f-b0d3-3ed8f007171b","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":28,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6802","nonce":4086859852},{"type":"v1","addr":"172.21.15.47:6803","nonce":4086859852}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6804","nonce":4086859852},{"type":"v1","addr":"172.21.15.47:6805","nonce":4086859852}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6808","nonce":4086859852},{"type":"v1","addr":"172.21.15.47:6809","nonce":4086859852}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6806","nonce":4086859852},{"type":"v1","addr":"172.21.15.47:6807","nonce":4086859852}]},"public_addr":"172.21.15.47:6803/4086859852","cluster_addr":"172.21.15.47:6805/4086859852","heartbeat_back_addr":"172.21.15.47:6809/4086859852","heartbeat_front_addr":"172.21.15.47:6807/4086859852","state":["exists","up"]},{"osd":1,"uuid":"81cd85ba-495f-4039-abd0-5ccf9c1a05fc","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":13,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6810","nonce":3221488786},{"type":"v1","addr":"172.21.15.47:6811","nonce":3221488786}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6812","nonce":3221488786},{"type":"v1","addr":"172.21.15.47:6813","nonce":3221488786}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6816","nonce":3221488786},{"type":"v1","addr":"172.21.15.47:6817","nonce":3221488786}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6814","nonce":3221488786},{"type":"v1","addr":"172.21.15.47:6815","nonce":3221488786}]},"public_addr":"172.21.15.47:6811/3221488786","cluster_addr":"172.21.15.47:6813/3221488786","heartbeat_back_addr":"172.21.15.47:6817/3221488786","heartbeat_front_addr":"172.21.15.47:6815/3221488786","state":["exists","up"]},{"osd":2,"uuid":"8851bf2c-76e0-41fc-b5b8-59e071666826","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":20,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.110:6800","nonce":1340287589},{"type":"v1","addr":"172.21.15.110:6801","nonce":1340287589}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.110:6802","nonce":1340287589},{"type":"v1","addr":"172.21.15.110:6803","nonce":1340287589}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.110:6806","nonce":1340287589},{"type":"v1","addr":"172.21.15.110:6807","nonce":1340287589}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.110:6804","nonce":1340287589},{"type":"v1","addr":"172.21.15.110:6805","nonce":1340287589}]},"public_addr":"172.21.15.110:6801/1340287589","cluster_addr":"172.21.15.110:6803/1340287589","heartbeat_back_addr":"172.21.15.110:6807/1340287589","heartbeat_front_addr":"172.21.15.110:6805/1340287589","state":["exists","up"]},{"osd":3,"uuid":"80847129-718e-4332-bbe1-5681f0ef9cf7","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":26,"up_thru":45,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.110:6808","nonce":1571586325},{"type":"v1","addr":"172.21.15.110:6809","nonce":1571586325}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.110:6810","nonce":1571586325},{"type":"v1","addr":"172.21.15.110:6811","nonce":1571586325}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.110:6814","nonce":1571586325},{"type":"v1","addr":"172.21.15.110:6815","nonce":1571586325}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.110:6812","nonce":1571586325},{"type":"v1","addr":"172.21.15.110:6813","nonce":1571586325}]},"public_addr":"172.21.15.110:6809/1571586325","cluster_addr":"172.21.15.110:6811/1571586325","heartbeat_back_addr":"172.21.15.110:6815/1571586325","heartbeat_front_addr":"172.21.15.110:6813/1571586325","state":["exists","up"]},{"osd":4,"uuid":"05d515e5-6afc-461e-a05e-7982f984e9ba","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":34,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6800","nonce":3691250801},{"type":"v1","addr":"172.21.15.138:6801","nonce":3691250801}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6802","nonce":3691250801},{"type":"v1","addr":"172.21.15.138:6803","nonce":3691250801}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6806","nonce":3691250801},{"type":"v1","addr":"172.21.15.138:6807","nonce":3691250801}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6804","nonce":3691250801},{"type":"v1","addr":"172.21.15.138:6805","nonce":3691250801}]},"public_addr":"172.21.15.138:6801/3691250801","cluster_addr":"172.21.15.138:6803/3691250801","heartbeat_back_addr":"172.21.15.138:6807/3691250801","heartbeat_front_addr":"172.21.15.138:6805/3691250801","state":["exists","up"]},{"osd":5,"uuid":"a99284f5-3678-4627-879a-e5424c59d658","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":42,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6808","nonce":117271508},{"type":"v1","addr":"172.21.15.138:6809","nonce":117271508}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6810","nonce":117271508},{"type":"v1","addr":"172.21.15.138:6811","nonce":117271508}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6814","nonce":117271508},{"type":"v1","addr":"172.21.15.138:6815","nonce":117271508}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6812","nonce":117271508},{"type":"v1","addr":"172.21.15.138:6813","nonce":117271508}]},"public_addr":"172.21.15.138:6809/117271508","cluster_addr":"172.21.15.138:6811/117271508","heartbeat_back_addr":"172.21.15.138:6815/117271508","heartbeat_front_addr":"172.21.15.138:6813/117271508","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-14T15:27:13.393262+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-14T15:28:05.487556+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-14T15:28:55.382789+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-14T15:29:43.228233+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-14T15:30:37.741802+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-14T15:31:31.978174+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.47:6801/1796899555":"2024-04-15T15:24:11.821987+0000","172.21.15.47:0/2025921757":"2024-04-15T15:24:11.821987+0000","172.21.15.47:0/695075967":"2024-04-15T15:23:35.750134+0000","172.21.15.47:6800/1796899555":"2024-04-15T15:24:11.821987+0000","172.21.15.47:6801/3274719635":"2024-04-15T15:23:35.750134+0000","172.21.15.47:0/1963017756":"2024-04-15T15:23:35.750134+0000","172.21.15.47:6800/3274719635":"2024-04-15T15:23:35.750134+0000","172.21.15.47:0/413835958":"2024-04-15T15:24:11.821987+0000","172.21.15.47:0/3517183668":"2024-04-15T15:23:35.750134+0000","172.21.15.47:0/694132544":"2024-04-15T15:24:11.821987+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-14T15:32:26.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:26 smithi047 bash[21449]: cluster 2024-04-14T15:32:24.593668+0000 mgr.a (mgr.14152) 328 : cluster [DBG] pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:26.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:26 smithi047 bash[21449]: audit 2024-04-14T15:32:26.334467+0000 mon.a (mon.0) 893 : audit [DBG] from='client.? 172.21.15.47:0/2433731021' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-14T15:32:26.807 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:26 smithi138 bash[22282]: cluster 2024-04-14T15:32:24.593668+0000 mgr.a (mgr.14152) 328 : cluster [DBG] pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:26.807 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:26 smithi138 bash[22282]: audit 2024-04-14T15:32:26.334467+0000 mon.a (mon.0) 893 : audit [DBG] from='client.? 172.21.15.47:0/2433731021' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-14T15:32:26.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:26 smithi110 bash[22161]: cluster 2024-04-14T15:32:24.593668+0000 mgr.a (mgr.14152) 328 : cluster [DBG] pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:26.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:26 smithi110 bash[22161]: audit 2024-04-14T15:32:26.334467+0000 mon.a (mon.0) 893 : audit [DBG] from='client.? 172.21.15.47:0/2433731021' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-14T15:32:27.014 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph tell osd.0 flush_pg_stats 2024-04-14T15:32:27.015 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph tell osd.1 flush_pg_stats 2024-04-14T15:32:27.015 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph tell osd.2 flush_pg_stats 2024-04-14T15:32:27.016 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph tell osd.3 flush_pg_stats 2024-04-14T15:32:27.016 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph tell osd.4 flush_pg_stats 2024-04-14T15:32:27.016 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph tell osd.5 flush_pg_stats 2024-04-14T15:32:28.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:28 smithi110 bash[22161]: cluster 2024-04-14T15:32:26.594176+0000 mgr.a (mgr.14152) 329 : cluster [DBG] pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:28.807 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:28 smithi138 bash[22282]: cluster 2024-04-14T15:32:26.594176+0000 mgr.a (mgr.14152) 329 : cluster [DBG] pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:28.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:28 smithi047 bash[21449]: cluster 2024-04-14T15:32:26.594176+0000 mgr.a (mgr.14152) 329 : cluster [DBG] pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:30.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:30 smithi110 bash[22161]: cluster 2024-04-14T15:32:28.594687+0000 mgr.a (mgr.14152) 330 : cluster [DBG] pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:30.807 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:30 smithi138 bash[22282]: cluster 2024-04-14T15:32:28.594687+0000 mgr.a (mgr.14152) 330 : cluster [DBG] pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:30.916 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:30 smithi047 bash[21449]: cluster 2024-04-14T15:32:28.594687+0000 mgr.a (mgr.14152) 330 : cluster [DBG] pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:31.769 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T15:32:31.770 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T15:32:31.770 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T15:32:31.773 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T15:32:31.773 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T15:32:31.773 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T15:32:32.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:32 smithi110 bash[22161]: cluster 2024-04-14T15:32:30.595245+0000 mgr.a (mgr.14152) 331 : cluster [DBG] pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:32.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:32 smithi110 bash[22161]: audit 2024-04-14T15:32:31.586043+0000 mon.a (mon.0) 894 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:32.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:32 smithi110 bash[22161]: audit 2024-04-14T15:32:31.595179+0000 mon.a (mon.0) 895 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:32.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:32 smithi110 bash[22161]: audit 2024-04-14T15:32:31.605312+0000 mon.a (mon.0) 896 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:32.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:32 smithi047 bash[21449]: cluster 2024-04-14T15:32:30.595245+0000 mgr.a (mgr.14152) 331 : cluster [DBG] pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:32.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:32 smithi047 bash[21449]: audit 2024-04-14T15:32:31.586043+0000 mon.a (mon.0) 894 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:32.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:32 smithi047 bash[21449]: audit 2024-04-14T15:32:31.595179+0000 mon.a (mon.0) 895 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:32.958 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:32 smithi047 bash[21449]: audit 2024-04-14T15:32:31.605312+0000 mon.a (mon.0) 896 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:33.057 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:32 smithi138 bash[22282]: cluster 2024-04-14T15:32:30.595245+0000 mgr.a (mgr.14152) 331 : cluster [DBG] pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:33.057 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:32 smithi138 bash[22282]: audit 2024-04-14T15:32:31.586043+0000 mon.a (mon.0) 894 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:33.057 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:32 smithi138 bash[22282]: audit 2024-04-14T15:32:31.595179+0000 mon.a (mon.0) 895 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:33.057 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:32 smithi138 bash[22282]: audit 2024-04-14T15:32:31.605312+0000 mon.a (mon.0) 896 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:34.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:34 smithi110 bash[22161]: cluster 2024-04-14T15:32:32.595797+0000 mgr.a (mgr.14152) 332 : cluster [DBG] pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:34.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:34 smithi047 bash[21449]: cluster 2024-04-14T15:32:32.595797+0000 mgr.a (mgr.14152) 332 : cluster [DBG] pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:35.057 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:34 smithi138 bash[22282]: cluster 2024-04-14T15:32:32.595797+0000 mgr.a (mgr.14152) 332 : cluster [DBG] pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:35.841 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:35 smithi047 bash[21449]: audit 2024-04-14T15:32:34.691570+0000 mon.a (mon.0) 897 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:32:35.841 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:35 smithi047 bash[21449]: audit 2024-04-14T15:32:34.697485+0000 mon.a (mon.0) 898 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:32:35.841 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:35 smithi047 bash[21449]: audit 2024-04-14T15:32:34.699538+0000 mon.a (mon.0) 899 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:32:35.841 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:35 smithi047 bash[21449]: audit 2024-04-14T15:32:34.710086+0000 mon.a (mon.0) 900 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:35.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:35 smithi110 bash[22161]: audit 2024-04-14T15:32:34.691570+0000 mon.a (mon.0) 897 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:32:35.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:35 smithi110 bash[22161]: audit 2024-04-14T15:32:34.697485+0000 mon.a (mon.0) 898 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:32:35.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:35 smithi110 bash[22161]: audit 2024-04-14T15:32:34.699538+0000 mon.a (mon.0) 899 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:32:35.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:35 smithi110 bash[22161]: audit 2024-04-14T15:32:34.710086+0000 mon.a (mon.0) 900 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:36.057 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:35 smithi138 bash[22282]: audit 2024-04-14T15:32:34.691570+0000 mon.a (mon.0) 897 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:32:36.057 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:35 smithi138 bash[22282]: audit 2024-04-14T15:32:34.697485+0000 mon.a (mon.0) 898 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:32:36.057 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:35 smithi138 bash[22282]: audit 2024-04-14T15:32:34.699538+0000 mon.a (mon.0) 899 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:32:36.057 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:35 smithi138 bash[22282]: audit 2024-04-14T15:32:34.710086+0000 mon.a (mon.0) 900 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:36.833 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:36 smithi047 bash[21449]: cluster 2024-04-14T15:32:34.596212+0000 mgr.a (mgr.14152) 333 : cluster [DBG] pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:36.834 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:36 smithi047 bash[21449]: audit 2024-04-14T15:32:35.894903+0000 mon.a (mon.0) 901 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:36.834 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:36 smithi047 bash[21449]: audit 2024-04-14T15:32:35.900003+0000 mon.a (mon.0) 902 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:36.834 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:36 smithi047 bash[21449]: audit 2024-04-14T15:32:35.905397+0000 mon.a (mon.0) 903 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:36.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:36 smithi110 bash[22161]: cluster 2024-04-14T15:32:34.596212+0000 mgr.a (mgr.14152) 333 : cluster [DBG] pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:36.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:36 smithi110 bash[22161]: audit 2024-04-14T15:32:35.894903+0000 mon.a (mon.0) 901 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:36.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:36 smithi110 bash[22161]: audit 2024-04-14T15:32:35.900003+0000 mon.a (mon.0) 902 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:36.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:36 smithi110 bash[22161]: audit 2024-04-14T15:32:35.905397+0000 mon.a (mon.0) 903 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:37.057 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:36 smithi138 bash[22282]: cluster 2024-04-14T15:32:34.596212+0000 mgr.a (mgr.14152) 333 : cluster [DBG] pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:37.057 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:36 smithi138 bash[22282]: audit 2024-04-14T15:32:35.894903+0000 mon.a (mon.0) 901 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:37.057 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:36 smithi138 bash[22282]: audit 2024-04-14T15:32:35.900003+0000 mon.a (mon.0) 902 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:37.058 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:36 smithi138 bash[22282]: audit 2024-04-14T15:32:35.905397+0000 mon.a (mon.0) 903 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:37.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:37 smithi047 bash[21449]: cluster 2024-04-14T15:32:36.596751+0000 mgr.a (mgr.14152) 334 : cluster [DBG] pgmap v293: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:37.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:37 smithi110 bash[22161]: cluster 2024-04-14T15:32:36.596751+0000 mgr.a (mgr.14152) 334 : cluster [DBG] pgmap v293: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:38.057 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:37 smithi138 bash[22282]: cluster 2024-04-14T15:32:36.596751+0000 mgr.a (mgr.14152) 334 : cluster [DBG] pgmap v293: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:38.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:38 smithi047 bash[21449]: audit 2024-04-14T15:32:37.661514+0000 mon.a (mon.0) 904 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:38.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:38 smithi047 bash[21449]: audit 2024-04-14T15:32:37.667510+0000 mon.a (mon.0) 905 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:38.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:38 smithi047 bash[21449]: audit 2024-04-14T15:32:37.674245+0000 mon.a (mon.0) 906 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:39.057 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:38 smithi138 bash[22282]: audit 2024-04-14T15:32:37.661514+0000 mon.a (mon.0) 904 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:39.057 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:38 smithi138 bash[22282]: audit 2024-04-14T15:32:37.667510+0000 mon.a (mon.0) 905 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:39.058 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:38 smithi138 bash[22282]: audit 2024-04-14T15:32:37.674245+0000 mon.a (mon.0) 906 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:39.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:38 smithi110 bash[22161]: audit 2024-04-14T15:32:37.661514+0000 mon.a (mon.0) 904 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:39.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:38 smithi110 bash[22161]: audit 2024-04-14T15:32:37.667510+0000 mon.a (mon.0) 905 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:39.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:38 smithi110 bash[22161]: audit 2024-04-14T15:32:37.674245+0000 mon.a (mon.0) 906 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:39.790 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:39 smithi047 bash[21449]: cluster 2024-04-14T15:32:38.597135+0000 mgr.a (mgr.14152) 335 : cluster [DBG] pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:40.057 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:39 smithi138 bash[22282]: cluster 2024-04-14T15:32:38.597135+0000 mgr.a (mgr.14152) 335 : cluster [DBG] pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:40.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:39 smithi110 bash[22161]: cluster 2024-04-14T15:32:38.597135+0000 mgr.a (mgr.14152) 335 : cluster [DBG] pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:42.057 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:41 smithi138 bash[22282]: cluster 2024-04-14T15:32:40.597634+0000 mgr.a (mgr.14152) 336 : cluster [DBG] pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:42.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:41 smithi110 bash[22161]: cluster 2024-04-14T15:32:40.597634+0000 mgr.a (mgr.14152) 336 : cluster [DBG] pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:42.206 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:41 smithi047 bash[21449]: cluster 2024-04-14T15:32:40.597634+0000 mgr.a (mgr.14152) 336 : cluster [DBG] pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:43.774 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:43 smithi047 bash[21449]: cluster 2024-04-14T15:32:42.598219+0000 mgr.a (mgr.14152) 337 : cluster [DBG] pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:43.807 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:43 smithi138 bash[22282]: cluster 2024-04-14T15:32:42.598219+0000 mgr.a (mgr.14152) 337 : cluster [DBG] pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:44.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:43 smithi110 bash[22161]: cluster 2024-04-14T15:32:42.598219+0000 mgr.a (mgr.14152) 337 : cluster [DBG] pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:44.756 INFO:teuthology.orchestra.run.smithi047.stdout:111669149734 2024-04-14T15:32:44.756 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph osd last-stat-seq osd.3 2024-04-14T15:32:45.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:45 smithi047 bash[21449]: cluster 2024-04-14T15:32:44.598632+0000 mgr.a (mgr.14152) 338 : cluster [DBG] pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:46.057 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:45 smithi138 bash[22282]: cluster 2024-04-14T15:32:44.598632+0000 mgr.a (mgr.14152) 338 : cluster [DBG] pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:46.120 INFO:teuthology.orchestra.run.smithi047.stdout:146028888091 2024-04-14T15:32:46.121 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph osd last-stat-seq osd.4 2024-04-14T15:32:46.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:45 smithi110 bash[22161]: cluster 2024-04-14T15:32:44.598632+0000 mgr.a (mgr.14152) 338 : cluster [DBG] pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:46.285 INFO:teuthology.orchestra.run.smithi047.stdout:180388626449 2024-04-14T15:32:46.285 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph osd last-stat-seq osd.5 2024-04-14T15:32:46.817 INFO:teuthology.orchestra.run.smithi047.stdout:77309411377 2024-04-14T15:32:46.818 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph osd last-stat-seq osd.2 2024-04-14T15:32:47.220 INFO:teuthology.orchestra.run.smithi047.stdout:34359738437 2024-04-14T15:32:47.221 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph osd last-stat-seq osd.0 2024-04-14T15:32:47.232 INFO:teuthology.orchestra.run.smithi047.stdout:55834574907 2024-04-14T15:32:47.232 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph osd last-stat-seq osd.1 2024-04-14T15:32:47.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:47 smithi047 bash[21449]: cluster 2024-04-14T15:32:46.599207+0000 mgr.a (mgr.14152) 339 : cluster [DBG] pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:48.057 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:47 smithi138 bash[22282]: cluster 2024-04-14T15:32:46.599207+0000 mgr.a (mgr.14152) 339 : cluster [DBG] pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:48.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:47 smithi110 bash[22161]: cluster 2024-04-14T15:32:46.599207+0000 mgr.a (mgr.14152) 339 : cluster [DBG] pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:49.500 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T15:32:49.727 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:49 smithi110 bash[22161]: cluster 2024-04-14T15:32:48.599783+0000 mgr.a (mgr.14152) 340 : cluster [DBG] pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:49.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:49 smithi047 bash[21449]: cluster 2024-04-14T15:32:48.599783+0000 mgr.a (mgr.14152) 340 : cluster [DBG] pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:50.057 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:49 smithi138 bash[22282]: cluster 2024-04-14T15:32:48.599783+0000 mgr.a (mgr.14152) 340 : cluster [DBG] pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:50.507 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T15:32:50.507 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T15:32:51.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:51 smithi110 bash[22161]: cluster 2024-04-14T15:32:50.600323+0000 mgr.a (mgr.14152) 341 : cluster [DBG] pgmap v300: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:51.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:51 smithi047 bash[21449]: cluster 2024-04-14T15:32:50.600323+0000 mgr.a (mgr.14152) 341 : cluster [DBG] pgmap v300: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:52.057 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:51 smithi138 bash[22282]: cluster 2024-04-14T15:32:50.600323+0000 mgr.a (mgr.14152) 341 : cluster [DBG] pgmap v300: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:52.467 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T15:32:52.467 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T15:32:52.468 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T15:32:53.057 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:52 smithi138 bash[22282]: audit 2024-04-14T15:32:51.798832+0000 mon.a (mon.0) 907 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:53.057 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:52 smithi138 bash[22282]: audit 2024-04-14T15:32:51.808103+0000 mon.a (mon.0) 908 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:53.057 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:52 smithi138 bash[22282]: audit 2024-04-14T15:32:51.818408+0000 mon.a (mon.0) 909 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:53.123 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:52 smithi047 bash[21449]: audit 2024-04-14T15:32:51.798832+0000 mon.a (mon.0) 907 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:53.123 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:52 smithi047 bash[21449]: audit 2024-04-14T15:32:51.808103+0000 mon.a (mon.0) 908 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:53.123 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:52 smithi047 bash[21449]: audit 2024-04-14T15:32:51.818408+0000 mon.a (mon.0) 909 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:53.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:52 smithi110 bash[22161]: audit 2024-04-14T15:32:51.798832+0000 mon.a (mon.0) 907 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:53.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:52 smithi110 bash[22161]: audit 2024-04-14T15:32:51.808103+0000 mon.a (mon.0) 908 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:53.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:52 smithi110 bash[22161]: audit 2024-04-14T15:32:51.818408+0000 mon.a (mon.0) 909 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:53.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:53 smithi047 bash[21449]: cluster 2024-04-14T15:32:52.600839+0000 mgr.a (mgr.14152) 342 : cluster [DBG] pgmap v301: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:54.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:53 smithi110 bash[22161]: cluster 2024-04-14T15:32:52.600839+0000 mgr.a (mgr.14152) 342 : cluster [DBG] pgmap v301: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:54.307 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:53 smithi138 bash[22282]: cluster 2024-04-14T15:32:52.600839+0000 mgr.a (mgr.14152) 342 : cluster [DBG] pgmap v301: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:56.099 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:55 smithi110 bash[22161]: cluster 2024-04-14T15:32:54.601390+0000 mgr.a (mgr.14152) 343 : cluster [DBG] pgmap v302: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:56.206 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:55 smithi047 bash[21449]: cluster 2024-04-14T15:32:54.601390+0000 mgr.a (mgr.14152) 343 : cluster [DBG] pgmap v302: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:56.307 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:55 smithi138 bash[22282]: cluster 2024-04-14T15:32:54.601390+0000 mgr.a (mgr.14152) 343 : cluster [DBG] pgmap v302: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:57.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:57 smithi110 bash[22161]: audit 2024-04-14T15:32:56.088589+0000 mon.a (mon.0) 910 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:57.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:57 smithi110 bash[22161]: audit 2024-04-14T15:32:56.095010+0000 mon.a (mon.0) 911 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:57.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:57 smithi110 bash[22161]: audit 2024-04-14T15:32:56.102468+0000 mon.a (mon.0) 912 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:57.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:57 smithi047 bash[21449]: audit 2024-04-14T15:32:56.088589+0000 mon.a (mon.0) 910 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:57.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:57 smithi047 bash[21449]: audit 2024-04-14T15:32:56.095010+0000 mon.a (mon.0) 911 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:57.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:57 smithi047 bash[21449]: audit 2024-04-14T15:32:56.102468+0000 mon.a (mon.0) 912 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:57.557 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:57 smithi138 bash[22282]: audit 2024-04-14T15:32:56.088589+0000 mon.a (mon.0) 910 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:57.557 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:57 smithi138 bash[22282]: audit 2024-04-14T15:32:56.095010+0000 mon.a (mon.0) 911 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:57.557 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:57 smithi138 bash[22282]: audit 2024-04-14T15:32:56.102468+0000 mon.a (mon.0) 912 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:58.251 INFO:teuthology.orchestra.run.smithi047.stdout:111669149737 2024-04-14T15:32:58.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:58 smithi110 bash[22161]: cluster 2024-04-14T15:32:56.601955+0000 mgr.a (mgr.14152) 344 : cluster [DBG] pgmap v303: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:58.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:58 smithi110 bash[22161]: audit 2024-04-14T15:32:57.845587+0000 mon.a (mon.0) 913 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:58.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:58 smithi110 bash[22161]: audit 2024-04-14T15:32:57.852259+0000 mon.a (mon.0) 914 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:58.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:58 smithi110 bash[22161]: audit 2024-04-14T15:32:57.857754+0000 mon.a (mon.0) 915 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:58.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:58 smithi047 bash[21449]: cluster 2024-04-14T15:32:56.601955+0000 mgr.a (mgr.14152) 344 : cluster [DBG] pgmap v303: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:58.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:58 smithi047 bash[21449]: audit 2024-04-14T15:32:57.845587+0000 mon.a (mon.0) 913 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:58.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:58 smithi047 bash[21449]: audit 2024-04-14T15:32:57.852259+0000 mon.a (mon.0) 914 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:58.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:58 smithi047 bash[21449]: audit 2024-04-14T15:32:57.857754+0000 mon.a (mon.0) 915 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:58.557 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:58 smithi138 bash[22282]: cluster 2024-04-14T15:32:56.601955+0000 mgr.a (mgr.14152) 344 : cluster [DBG] pgmap v303: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:32:58.557 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:58 smithi138 bash[22282]: audit 2024-04-14T15:32:57.845587+0000 mon.a (mon.0) 913 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:58.557 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:58 smithi138 bash[22282]: audit 2024-04-14T15:32:57.852259+0000 mon.a (mon.0) 914 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:58.557 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:58 smithi138 bash[22282]: audit 2024-04-14T15:32:57.857754+0000 mon.a (mon.0) 915 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:32:59.206 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:32:59 smithi047 bash[21449]: audit 2024-04-14T15:32:58.256022+0000 mon.a (mon.0) 916 : audit [DBG] from='client.? 172.21.15.47:0/1020847508' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-04-14T15:32:59.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:32:59 smithi110 bash[22161]: audit 2024-04-14T15:32:58.256022+0000 mon.a (mon.0) 916 : audit [DBG] from='client.? 172.21.15.47:0/1020847508' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-04-14T15:32:59.557 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:32:59 smithi138 bash[22282]: audit 2024-04-14T15:32:58.256022+0000 mon.a (mon.0) 916 : audit [DBG] from='client.? 172.21.15.47:0/1020847508' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-04-14T15:33:00.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:00 smithi110 bash[22161]: cluster 2024-04-14T15:32:58.602527+0000 mgr.a (mgr.14152) 345 : cluster [DBG] pgmap v304: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:00.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:00 smithi047 bash[21449]: cluster 2024-04-14T15:32:58.602527+0000 mgr.a (mgr.14152) 345 : cluster [DBG] pgmap v304: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:00.557 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:00 smithi138 bash[22282]: cluster 2024-04-14T15:32:58.602527+0000 mgr.a (mgr.14152) 345 : cluster [DBG] pgmap v304: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:01.014 INFO:tasks.cephadm.ceph_manager.ceph:need seq 111669149734 got 111669149737 for osd.3 2024-04-14T15:33:01.014 DEBUG:teuthology.parallel:result is None 2024-04-14T15:33:01.386 INFO:teuthology.orchestra.run.smithi047.stdout:180388626452 2024-04-14T15:33:01.589 INFO:teuthology.orchestra.run.smithi047.stdout:146028888095 2024-04-14T15:33:02.357 INFO:teuthology.orchestra.run.smithi047.stdout:34359738440 2024-04-14T15:33:02.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:02 smithi110 bash[22161]: cluster 2024-04-14T15:33:00.603014+0000 mgr.a (mgr.14152) 346 : cluster [DBG] pgmap v305: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:02.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:02 smithi110 bash[22161]: audit 2024-04-14T15:33:01.391834+0000 mon.a (mon.0) 917 : audit [DBG] from='client.? 172.21.15.47:0/3178864422' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-04-14T15:33:02.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:02 smithi110 bash[22161]: audit 2024-04-14T15:33:01.594486+0000 mon.a (mon.0) 918 : audit [DBG] from='client.? 172.21.15.47:0/46344758' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-04-14T15:33:02.437 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:02 smithi047 bash[21449]: cluster 2024-04-14T15:33:00.603014+0000 mgr.a (mgr.14152) 346 : cluster [DBG] pgmap v305: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:02.437 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:02 smithi047 bash[21449]: audit 2024-04-14T15:33:01.391834+0000 mon.a (mon.0) 917 : audit [DBG] from='client.? 172.21.15.47:0/3178864422' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-04-14T15:33:02.437 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:02 smithi047 bash[21449]: audit 2024-04-14T15:33:01.594486+0000 mon.a (mon.0) 918 : audit [DBG] from='client.? 172.21.15.47:0/46344758' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-04-14T15:33:02.557 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:02 smithi138 bash[22282]: cluster 2024-04-14T15:33:00.603014+0000 mgr.a (mgr.14152) 346 : cluster [DBG] pgmap v305: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:02.557 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:02 smithi138 bash[22282]: audit 2024-04-14T15:33:01.391834+0000 mon.a (mon.0) 917 : audit [DBG] from='client.? 172.21.15.47:0/3178864422' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-04-14T15:33:02.557 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:02 smithi138 bash[22282]: audit 2024-04-14T15:33:01.594486+0000 mon.a (mon.0) 918 : audit [DBG] from='client.? 172.21.15.47:0/46344758' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-04-14T15:33:02.660 INFO:teuthology.orchestra.run.smithi047.stdout:55834574910 2024-04-14T15:33:03.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:03 smithi110 bash[22161]: audit 2024-04-14T15:33:02.362047+0000 mon.a (mon.0) 919 : audit [DBG] from='client.? 172.21.15.47:0/3539900099' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-04-14T15:33:03.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:03 smithi110 bash[22161]: audit 2024-04-14T15:33:02.665364+0000 mon.a (mon.0) 920 : audit [DBG] from='client.? 172.21.15.47:0/612676502' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-04-14T15:33:03.442 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:03 smithi047 bash[21449]: audit 2024-04-14T15:33:02.362047+0000 mon.a (mon.0) 919 : audit [DBG] from='client.? 172.21.15.47:0/3539900099' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-04-14T15:33:03.442 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:03 smithi047 bash[21449]: audit 2024-04-14T15:33:02.665364+0000 mon.a (mon.0) 920 : audit [DBG] from='client.? 172.21.15.47:0/612676502' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-04-14T15:33:03.443 INFO:teuthology.orchestra.run.smithi047.stdout:77309411381 2024-04-14T15:33:03.546 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:03 smithi138 bash[22282]: audit 2024-04-14T15:33:02.362047+0000 mon.a (mon.0) 919 : audit [DBG] from='client.? 172.21.15.47:0/3539900099' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-04-14T15:33:03.547 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:03 smithi138 bash[22282]: audit 2024-04-14T15:33:02.665364+0000 mon.a (mon.0) 920 : audit [DBG] from='client.? 172.21.15.47:0/612676502' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-04-14T15:33:03.554 INFO:tasks.cephadm.ceph_manager.ceph:need seq 180388626449 got 180388626452 for osd.5 2024-04-14T15:33:03.554 DEBUG:teuthology.parallel:result is None 2024-04-14T15:33:03.905 INFO:tasks.cephadm.ceph_manager.ceph:need seq 146028888091 got 146028888095 for osd.4 2024-04-14T15:33:03.905 DEBUG:teuthology.parallel:result is None 2024-04-14T15:33:04.163 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:04 smithi047 bash[21449]: cluster 2024-04-14T15:33:02.603630+0000 mgr.a (mgr.14152) 347 : cluster [DBG] pgmap v306: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:04.163 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:04 smithi047 bash[21449]: audit 2024-04-14T15:33:03.448904+0000 mon.a (mon.0) 921 : audit [DBG] from='client.? 172.21.15.47:0/430294566' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-04-14T15:33:04.307 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:04 smithi138 bash[22282]: cluster 2024-04-14T15:33:02.603630+0000 mgr.a (mgr.14152) 347 : cluster [DBG] pgmap v306: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:04.307 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:04 smithi138 bash[22282]: audit 2024-04-14T15:33:03.448904+0000 mon.a (mon.0) 921 : audit [DBG] from='client.? 172.21.15.47:0/430294566' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-04-14T15:33:04.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:04 smithi110 bash[22161]: cluster 2024-04-14T15:33:02.603630+0000 mgr.a (mgr.14152) 347 : cluster [DBG] pgmap v306: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:04.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:04 smithi110 bash[22161]: audit 2024-04-14T15:33:03.448904+0000 mon.a (mon.0) 921 : audit [DBG] from='client.? 172.21.15.47:0/430294566' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-04-14T15:33:05.334 INFO:tasks.cephadm.ceph_manager.ceph:need seq 34359738437 got 34359738440 for osd.0 2024-04-14T15:33:05.334 DEBUG:teuthology.parallel:result is None 2024-04-14T15:33:05.452 INFO:tasks.cephadm.ceph_manager.ceph:need seq 55834574907 got 55834574910 for osd.1 2024-04-14T15:33:05.452 DEBUG:teuthology.parallel:result is None 2024-04-14T15:33:05.698 INFO:tasks.cephadm.ceph_manager.ceph:need seq 77309411377 got 77309411381 for osd.2 2024-04-14T15:33:05.699 DEBUG:teuthology.parallel:result is None 2024-04-14T15:33:05.699 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-04-14T15:33:05.699 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph pg dump --format=json 2024-04-14T15:33:06.307 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:06 smithi138 bash[22282]: cluster 2024-04-14T15:33:04.604365+0000 mgr.a (mgr.14152) 348 : cluster [DBG] pgmap v307: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:06.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:06 smithi110 bash[22161]: cluster 2024-04-14T15:33:04.604365+0000 mgr.a (mgr.14152) 348 : cluster [DBG] pgmap v307: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:06.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:06 smithi047 bash[21449]: cluster 2024-04-14T15:33:04.604365+0000 mgr.a (mgr.14152) 348 : cluster [DBG] pgmap v307: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:08.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:08 smithi110 bash[22161]: cluster 2024-04-14T15:33:06.604987+0000 mgr.a (mgr.14152) 349 : cluster [DBG] pgmap v308: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:08.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:08 smithi047 bash[21449]: cluster 2024-04-14T15:33:06.604987+0000 mgr.a (mgr.14152) 349 : cluster [DBG] pgmap v308: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:08.557 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:08 smithi138 bash[22282]: cluster 2024-04-14T15:33:06.604987+0000 mgr.a (mgr.14152) 349 : cluster [DBG] pgmap v308: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:09.821 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T15:33:10.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:10 smithi110 bash[22161]: cluster 2024-04-14T15:33:08.605558+0000 mgr.a (mgr.14152) 350 : cluster [DBG] pgmap v309: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:10.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:10 smithi047 bash[21449]: cluster 2024-04-14T15:33:08.605558+0000 mgr.a (mgr.14152) 350 : cluster [DBG] pgmap v309: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:10.557 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:10 smithi138 bash[22282]: cluster 2024-04-14T15:33:08.605558+0000 mgr.a (mgr.14152) 350 : cluster [DBG] pgmap v309: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:12.307 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:12 smithi138 bash[22282]: cluster 2024-04-14T15:33:10.605972+0000 mgr.a (mgr.14152) 351 : cluster [DBG] pgmap v310: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:12.307 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:12 smithi138 bash[22282]: audit 2024-04-14T15:33:12.030607+0000 mon.a (mon.0) 922 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:12.307 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:12 smithi138 bash[22282]: audit 2024-04-14T15:33:12.042183+0000 mon.a (mon.0) 923 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:12.307 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:12 smithi138 bash[22282]: audit 2024-04-14T15:33:12.053265+0000 mon.a (mon.0) 924 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:12.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:12 smithi110 bash[22161]: cluster 2024-04-14T15:33:10.605972+0000 mgr.a (mgr.14152) 351 : cluster [DBG] pgmap v310: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:12.413 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:12 smithi110 bash[22161]: audit 2024-04-14T15:33:12.030607+0000 mon.a (mon.0) 922 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:12.413 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:12 smithi110 bash[22161]: audit 2024-04-14T15:33:12.042183+0000 mon.a (mon.0) 923 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:12.413 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:12 smithi110 bash[22161]: audit 2024-04-14T15:33:12.053265+0000 mon.a (mon.0) 924 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:12.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:12 smithi047 bash[21449]: cluster 2024-04-14T15:33:10.605972+0000 mgr.a (mgr.14152) 351 : cluster [DBG] pgmap v310: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:12.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:12 smithi047 bash[21449]: audit 2024-04-14T15:33:12.030607+0000 mon.a (mon.0) 922 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:12.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:12 smithi047 bash[21449]: audit 2024-04-14T15:33:12.042183+0000 mon.a (mon.0) 923 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:12.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:12 smithi047 bash[21449]: audit 2024-04-14T15:33:12.053265+0000 mon.a (mon.0) 924 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:12.532 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-04-14T15:33:12.536 INFO:teuthology.orchestra.run.smithi047.stderr:dumped all 2024-04-14T15:33:13.241 INFO:teuthology.orchestra.run.smithi047.stdout:{"pg_ready":true,"pg_map":{"version":310,"stamp":"2024-04-14T15:33:10.605794+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":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":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":6,"num_per_pool_osds":6,"num_per_pool_omap_osds":3,"kb":562470912,"kb_used":170488,"kb_used_data":4188,"kb_used_omap":9,"kb_used_meta":166198,"kb_avail":562300424,"statfs":{"total":575970213888,"available":575795634176,"internally_reserved":0,"allocated":4288512,"data_stored":2750106,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9568,"internal_metadata":170187424},"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.003534"},"pg_stats":[{"pgid":"1.0","version":"21'137","reported_seq":258,"reported_epoch":46,"state":"active+clean","last_fresh":"2024-04-14T15:31:36.860957+0000","last_change":"2024-04-14T15:31:36.860248+0000","last_active":"2024-04-14T15:31:36.860957+0000","last_peered":"2024-04-14T15:31:36.860957+0000","last_clean":"2024-04-14T15:31:36.860957+0000","last_became_active":"2024-04-14T15:31:36.859286+0000","last_became_peered":"2024-04-14T15:31:36.859286+0000","last_unstale":"2024-04-14T15:31:36.860957+0000","last_undegraded":"2024-04-14T15:31:36.860957+0000","last_fullsized":"2024-04-14T15:31:36.860957+0000","mapping_epoch":45,"log_start":"0'0","ondisk_log_start":"0'0","created":20,"last_epoch_clean":46,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-04-14T15:28:58.470340+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-04-14T15:28:58.470340+0000","last_clean_scrub_stamp":"2024-04-14T15:28:58.470340+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-15T23:07:13.712547+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":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"up":[3,5,2],"acting":[3,5,2],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":3,"acting_primary":3,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":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":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":2969600,"data_stored":2951840,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":137,"ondisk_log_size":137,"up":3,"acting":3,"num_store_stats":6}],"osd_stats":[{"osd":5,"up_from":42,"seq":180388626454,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28016,"kb_used_data":988,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717136,"statfs":{"total":95995035648,"available":95966347264,"internally_reserved":0,"allocated":1011712,"data_stored":753535,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,4],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":4,"up_from":34,"seq":146028888097,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27428,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717724,"statfs":{"total":95995035648,"available":95966949376,"internally_reserved":0,"allocated":417792,"data_stored":163167,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":3,"up_from":26,"seq":111669149740,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":32172,"kb_used_data":988,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93712980,"statfs":{"total":95995035648,"available":95962091520,"internally_reserved":0,"allocated":1011712,"data_stored":753535,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":31914439},"hb_peers":[0,1,2,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":2,"up_from":18,"seq":77309411382,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28008,"kb_used_data":988,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717144,"statfs":{"total":95995035648,"available":95966355456,"internally_reserved":0,"allocated":1011712,"data_stored":753535,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":0,"up_from":8,"seq":34359738442,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27428,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717724,"statfs":{"total":95995035648,"available":95966949376,"internally_reserved":0,"allocated":417792,"data_stored":163167,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[1,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":1,"up_from":13,"seq":55834574912,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27436,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717716,"statfs":{"total":95995035648,"available":95966941184,"internally_reserved":0,"allocated":417792,"data_stored":163167,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":4,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":5,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2024-04-14T15:33:13.242 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph pg dump --format=json 2024-04-14T15:33:13.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:13 smithi110 bash[22161]: audit 2024-04-14T15:33:12.535593+0000 mgr.a (mgr.14152) 352 : audit [DBG] from='client.14439 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-14T15:33:13.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:13 smithi047 bash[21449]: audit 2024-04-14T15:33:12.535593+0000 mgr.a (mgr.14152) 352 : audit [DBG] from='client.14439 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-14T15:33:13.557 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:13 smithi138 bash[22282]: audit 2024-04-14T15:33:12.535593+0000 mgr.a (mgr.14152) 352 : audit [DBG] from='client.14439 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-14T15:33:14.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:14 smithi047 bash[21449]: cluster 2024-04-14T15:33:12.606580+0000 mgr.a (mgr.14152) 353 : cluster [DBG] pgmap v311: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:14.557 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:14 smithi138 bash[22282]: cluster 2024-04-14T15:33:12.606580+0000 mgr.a (mgr.14152) 353 : cluster [DBG] pgmap v311: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:14.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:14 smithi110 bash[22161]: cluster 2024-04-14T15:33:12.606580+0000 mgr.a (mgr.14152) 353 : cluster [DBG] pgmap v311: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:16.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:16 smithi047 bash[21449]: cluster 2024-04-14T15:33:14.607128+0000 mgr.a (mgr.14152) 354 : cluster [DBG] pgmap v312: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:16.557 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:16 smithi138 bash[22282]: cluster 2024-04-14T15:33:14.607128+0000 mgr.a (mgr.14152) 354 : cluster [DBG] pgmap v312: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:16.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:16 smithi110 bash[22161]: cluster 2024-04-14T15:33:14.607128+0000 mgr.a (mgr.14152) 354 : cluster [DBG] pgmap v312: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:17.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:17 smithi110 bash[22161]: audit 2024-04-14T15:33:16.313063+0000 mon.a (mon.0) 925 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:17.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:17 smithi110 bash[22161]: audit 2024-04-14T15:33:16.322567+0000 mon.a (mon.0) 926 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:17.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:17 smithi110 bash[22161]: audit 2024-04-14T15:33:16.333217+0000 mon.a (mon.0) 927 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:17.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:17 smithi047 bash[21449]: audit 2024-04-14T15:33:16.313063+0000 mon.a (mon.0) 925 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:17.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:17 smithi047 bash[21449]: audit 2024-04-14T15:33:16.322567+0000 mon.a (mon.0) 926 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:17.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:17 smithi047 bash[21449]: audit 2024-04-14T15:33:16.333217+0000 mon.a (mon.0) 927 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:17.807 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:17 smithi138 bash[22282]: audit 2024-04-14T15:33:16.313063+0000 mon.a (mon.0) 925 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:17.807 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:17 smithi138 bash[22282]: audit 2024-04-14T15:33:16.322567+0000 mon.a (mon.0) 926 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:17.807 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:17 smithi138 bash[22282]: audit 2024-04-14T15:33:16.333217+0000 mon.a (mon.0) 927 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:17.979 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T15:33:18.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:18 smithi110 bash[22161]: cluster 2024-04-14T15:33:16.607673+0000 mgr.a (mgr.14152) 355 : cluster [DBG] pgmap v313: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:18.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:18 smithi110 bash[22161]: audit 2024-04-14T15:33:18.031023+0000 mon.a (mon.0) 928 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:18.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:18 smithi110 bash[22161]: audit 2024-04-14T15:33:18.035660+0000 mon.a (mon.0) 929 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:18.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:18 smithi110 bash[22161]: audit 2024-04-14T15:33:18.040427+0000 mon.a (mon.0) 930 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:18.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:18 smithi047 bash[21449]: cluster 2024-04-14T15:33:16.607673+0000 mgr.a (mgr.14152) 355 : cluster [DBG] pgmap v313: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:18.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:18 smithi047 bash[21449]: audit 2024-04-14T15:33:18.031023+0000 mon.a (mon.0) 928 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:18.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:18 smithi047 bash[21449]: audit 2024-04-14T15:33:18.035660+0000 mon.a (mon.0) 929 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:18.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:18 smithi047 bash[21449]: audit 2024-04-14T15:33:18.040427+0000 mon.a (mon.0) 930 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:18.807 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:18 smithi138 bash[22282]: cluster 2024-04-14T15:33:16.607673+0000 mgr.a (mgr.14152) 355 : cluster [DBG] pgmap v313: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:18.807 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:18 smithi138 bash[22282]: audit 2024-04-14T15:33:18.031023+0000 mon.a (mon.0) 928 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:18.807 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:18 smithi138 bash[22282]: audit 2024-04-14T15:33:18.035660+0000 mon.a (mon.0) 929 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:18.807 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:18 smithi138 bash[22282]: audit 2024-04-14T15:33:18.040427+0000 mon.a (mon.0) 930 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:20.584 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:20 smithi047 bash[21449]: cluster 2024-04-14T15:33:18.608265+0000 mgr.a (mgr.14152) 356 : cluster [DBG] pgmap v314: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:20.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:20 smithi110 bash[22161]: cluster 2024-04-14T15:33:18.608265+0000 mgr.a (mgr.14152) 356 : cluster [DBG] pgmap v314: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:20.807 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:20 smithi138 bash[22282]: cluster 2024-04-14T15:33:18.608265+0000 mgr.a (mgr.14152) 356 : cluster [DBG] pgmap v314: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:21.243 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-04-14T15:33:21.246 INFO:teuthology.orchestra.run.smithi047.stderr:dumped all 2024-04-14T15:33:22.278 INFO:teuthology.orchestra.run.smithi047.stdout:{"pg_ready":true,"pg_map":{"version":315,"stamp":"2024-04-14T15:33:20.608531+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":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":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":6,"num_per_pool_osds":6,"num_per_pool_omap_osds":3,"kb":562470912,"kb_used":170488,"kb_used_data":4188,"kb_used_omap":9,"kb_used_meta":166198,"kb_avail":562300424,"statfs":{"total":575970213888,"available":575795634176,"internally_reserved":0,"allocated":4288512,"data_stored":2750106,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9568,"internal_metadata":170187424},"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.003235"},"pg_stats":[{"pgid":"1.0","version":"21'137","reported_seq":258,"reported_epoch":46,"state":"active+clean","last_fresh":"2024-04-14T15:31:36.860957+0000","last_change":"2024-04-14T15:31:36.860248+0000","last_active":"2024-04-14T15:31:36.860957+0000","last_peered":"2024-04-14T15:31:36.860957+0000","last_clean":"2024-04-14T15:31:36.860957+0000","last_became_active":"2024-04-14T15:31:36.859286+0000","last_became_peered":"2024-04-14T15:31:36.859286+0000","last_unstale":"2024-04-14T15:31:36.860957+0000","last_undegraded":"2024-04-14T15:31:36.860957+0000","last_fullsized":"2024-04-14T15:31:36.860957+0000","mapping_epoch":45,"log_start":"0'0","ondisk_log_start":"0'0","created":20,"last_epoch_clean":46,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-04-14T15:28:58.470340+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-04-14T15:28:58.470340+0000","last_clean_scrub_stamp":"2024-04-14T15:28:58.470340+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-15T23:07:13.712547+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":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"up":[3,5,2],"acting":[3,5,2],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":3,"acting_primary":3,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":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":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":2969600,"data_stored":2951840,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":137,"ondisk_log_size":137,"up":3,"acting":3,"num_store_stats":6}],"osd_stats":[{"osd":5,"up_from":42,"seq":180388626456,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28016,"kb_used_data":988,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717136,"statfs":{"total":95995035648,"available":95966347264,"internally_reserved":0,"allocated":1011712,"data_stored":753535,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,4],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":4,"up_from":34,"seq":146028888099,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27428,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717724,"statfs":{"total":95995035648,"available":95966949376,"internally_reserved":0,"allocated":417792,"data_stored":163167,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":3,"up_from":26,"seq":111669149742,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":32172,"kb_used_data":988,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93712980,"statfs":{"total":95995035648,"available":95962091520,"internally_reserved":0,"allocated":1011712,"data_stored":753535,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":31914439},"hb_peers":[0,1,2,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":2,"up_from":18,"seq":77309411384,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28008,"kb_used_data":988,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717144,"statfs":{"total":95995035648,"available":95966355456,"internally_reserved":0,"allocated":1011712,"data_stored":753535,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":0,"up_from":8,"seq":34359738444,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27428,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717724,"statfs":{"total":95995035648,"available":95966949376,"internally_reserved":0,"allocated":417792,"data_stored":163167,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[1,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":1,"up_from":13,"seq":55834574914,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27436,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717716,"statfs":{"total":95995035648,"available":95966941184,"internally_reserved":0,"allocated":417792,"data_stored":163167,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":4,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":5,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2024-04-14T15:33:22.279 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-04-14T15:33:22.279 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-04-14T15:33:22.279 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-04-14T15:33:22.279 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- ceph health --format=json 2024-04-14T15:33:22.551 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:22 smithi047 bash[21449]: cluster 2024-04-14T15:33:20.608693+0000 mgr.a (mgr.14152) 357 : cluster [DBG] pgmap v315: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:22.551 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:22 smithi047 bash[21449]: audit 2024-04-14T15:33:21.247286+0000 mgr.a (mgr.14152) 358 : audit [DBG] from='client.14445 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-14T15:33:22.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:22 smithi110 bash[22161]: cluster 2024-04-14T15:33:20.608693+0000 mgr.a (mgr.14152) 357 : cluster [DBG] pgmap v315: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:22.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:22 smithi110 bash[22161]: audit 2024-04-14T15:33:21.247286+0000 mgr.a (mgr.14152) 358 : audit [DBG] from='client.14445 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-14T15:33:22.807 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:22 smithi138 bash[22282]: cluster 2024-04-14T15:33:20.608693+0000 mgr.a (mgr.14152) 357 : cluster [DBG] pgmap v315: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:22.807 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:22 smithi138 bash[22282]: audit 2024-04-14T15:33:21.247286+0000 mgr.a (mgr.14152) 358 : audit [DBG] from='client.14445 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-14T15:33:24.599 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:24 smithi138 bash[22282]: cluster 2024-04-14T15:33:22.609022+0000 mgr.a (mgr.14152) 359 : cluster [DBG] pgmap v316: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:24.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:24 smithi110 bash[22161]: cluster 2024-04-14T15:33:22.609022+0000 mgr.a (mgr.14152) 359 : cluster [DBG] pgmap v316: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:24.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:24 smithi047 bash[21449]: cluster 2024-04-14T15:33:22.609022+0000 mgr.a (mgr.14152) 359 : cluster [DBG] pgmap v316: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:26.557 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:26 smithi138 bash[22282]: cluster 2024-04-14T15:33:24.609581+0000 mgr.a (mgr.14152) 360 : cluster [DBG] pgmap v317: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:26.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:26 smithi110 bash[22161]: cluster 2024-04-14T15:33:24.609581+0000 mgr.a (mgr.14152) 360 : cluster [DBG] pgmap v317: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:26.702 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T15:33:26.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:26 smithi047 bash[21449]: cluster 2024-04-14T15:33:24.609581+0000 mgr.a (mgr.14152) 360 : cluster [DBG] pgmap v317: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:28.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:28 smithi110 bash[22161]: cluster 2024-04-14T15:33:26.610147+0000 mgr.a (mgr.14152) 361 : cluster [DBG] pgmap v318: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:28.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:28 smithi047 bash[21449]: cluster 2024-04-14T15:33:26.610147+0000 mgr.a (mgr.14152) 361 : cluster [DBG] pgmap v318: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:28.807 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:28 smithi138 bash[22282]: cluster 2024-04-14T15:33:26.610147+0000 mgr.a (mgr.14152) 361 : cluster [DBG] pgmap v318: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:29.607 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-04-14T15:33:29.607 INFO:teuthology.orchestra.run.smithi047.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-04-14T15:33:30.274 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-04-14T15:33:30.274 INFO:tasks.cephadm:Setup complete, yielding 2024-04-14T15:33:30.275 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-04-14T15:33:30.286 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi047.front.sepia.ceph.com 2024-04-14T15:33:30.286 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 -- bash -c 'set -ex 2024-04-14T15:33:30.286 DEBUG:teuthology.orchestra.run.smithi047:> HOSTNAMES=$(ceph orch host ls --format json | jq -r '"'"'.[] | .hostname'"'"') 2024-04-14T15:33:30.287 DEBUG:teuthology.orchestra.run.smithi047:> for host in $HOSTNAMES; do 2024-04-14T15:33:30.287 DEBUG:teuthology.orchestra.run.smithi047:> # find the hostname for "host.c" which will have no mgr 2024-04-14T15:33:30.287 DEBUG:teuthology.orchestra.run.smithi047:> HAS_MGRS=$(ceph orch ps --hostname ${host} --format json | jq '"'"'any(.daemon_type == "mgr")'"'"') 2024-04-14T15:33:30.287 DEBUG:teuthology.orchestra.run.smithi047:> if [ "$HAS_MGRS" == "false" ]; then 2024-04-14T15:33:30.287 DEBUG:teuthology.orchestra.run.smithi047:> HOST_C="${host}" 2024-04-14T15:33:30.287 DEBUG:teuthology.orchestra.run.smithi047:> fi 2024-04-14T15:33:30.287 DEBUG:teuthology.orchestra.run.smithi047:> done 2024-04-14T15:33:30.287 DEBUG:teuthology.orchestra.run.smithi047:> # One last thing to worry about before draining the host 2024-04-14T15:33:30.287 DEBUG:teuthology.orchestra.run.smithi047:> # is that the teuthology test tends to put the explicit 2024-04-14T15:33:30.287 DEBUG:teuthology.orchestra.run.smithi047:> # hostnames in the placement for the mon service. 2024-04-14T15:33:30.287 DEBUG:teuthology.orchestra.run.smithi047:> # We want to make sure we can drain without providing 2024-04-14T15:33:30.287 DEBUG:teuthology.orchestra.run.smithi047:> # --force and there is a check for the host being removed 2024-04-14T15:33:30.287 DEBUG:teuthology.orchestra.run.smithi047:> # being listed explicitly in the placements. Therefore, 2024-04-14T15:33:30.287 DEBUG:teuthology.orchestra.run.smithi047:> # we should remove it from the mon placement. 2024-04-14T15:33:30.288 DEBUG:teuthology.orchestra.run.smithi047:> ceph orch ls mon --export > mon.yaml 2024-04-14T15:33:30.288 DEBUG:teuthology.orchestra.run.smithi047:> sed /"$HOST_C"/d mon.yaml > mon_adjusted.yaml 2024-04-14T15:33:30.288 DEBUG:teuthology.orchestra.run.smithi047:> ceph orch apply -i mon_adjusted.yaml 2024-04-14T15:33:30.288 DEBUG:teuthology.orchestra.run.smithi047:> # now drain that host 2024-04-14T15:33:30.288 DEBUG:teuthology.orchestra.run.smithi047:> ceph orch host drain $HOST_C --zap-osd-devices 2024-04-14T15:33:30.288 DEBUG:teuthology.orchestra.run.smithi047:> # wait for drain to complete 2024-04-14T15:33:30.288 DEBUG:teuthology.orchestra.run.smithi047:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2024-04-14T15:33:30.288 DEBUG:teuthology.orchestra.run.smithi047:> while [ "$HOST_C_DAEMONS" != "No daemons reported" ]; do 2024-04-14T15:33:30.288 DEBUG:teuthology.orchestra.run.smithi047:> sleep 15 2024-04-14T15:33:30.288 DEBUG:teuthology.orchestra.run.smithi047:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2024-04-14T15:33:30.288 DEBUG:teuthology.orchestra.run.smithi047:> done 2024-04-14T15:33:30.288 DEBUG:teuthology.orchestra.run.smithi047:> # we want to check the ability to remove the host from 2024-04-14T15:33:30.288 DEBUG:teuthology.orchestra.run.smithi047:> # the CRUSH map, so we should first verify the host is in 2024-04-14T15:33:30.288 DEBUG:teuthology.orchestra.run.smithi047:> # the CRUSH map. 2024-04-14T15:33:30.288 DEBUG:teuthology.orchestra.run.smithi047:> ceph osd getcrushmap -o compiled-crushmap 2024-04-14T15:33:30.288 DEBUG:teuthology.orchestra.run.smithi047:> crushtool -d compiled-crushmap -o crushmap.txt 2024-04-14T15:33:30.289 DEBUG:teuthology.orchestra.run.smithi047:> CRUSH_MAP=$(cat crushmap.txt) 2024-04-14T15:33:30.289 DEBUG:teuthology.orchestra.run.smithi047:> if ! grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2024-04-14T15:33:30.289 DEBUG:teuthology.orchestra.run.smithi047:> printf "Expected to see $HOST_C in CRUSH map. Saw:\n\n$CRUSH_MAP" 2024-04-14T15:33:30.289 DEBUG:teuthology.orchestra.run.smithi047:> exit 1 2024-04-14T15:33:30.289 DEBUG:teuthology.orchestra.run.smithi047:> fi 2024-04-14T15:33:30.289 DEBUG:teuthology.orchestra.run.smithi047:> # If the drain was successful, we should be able to remove the 2024-04-14T15:33:30.289 DEBUG:teuthology.orchestra.run.smithi047:> # host without force with no issues. If there are still daemons 2024-04-14T15:33:30.289 DEBUG:teuthology.orchestra.run.smithi047:> # we will get a response telling us to drain the host and a 2024-04-14T15:33:30.289 DEBUG:teuthology.orchestra.run.smithi047:> # non-zero return code 2024-04-14T15:33:30.289 DEBUG:teuthology.orchestra.run.smithi047:> ceph orch host rm $HOST_C --rm-crush-entry 2024-04-14T15:33:30.289 DEBUG:teuthology.orchestra.run.smithi047:> # verify we'"'"'ve successfully removed the host from the CRUSH map 2024-04-14T15:33:30.289 DEBUG:teuthology.orchestra.run.smithi047:> sleep 30 2024-04-14T15:33:30.289 DEBUG:teuthology.orchestra.run.smithi047:> ceph osd getcrushmap -o compiled-crushmap 2024-04-14T15:33:30.289 DEBUG:teuthology.orchestra.run.smithi047:> crushtool -d compiled-crushmap -o crushmap.txt 2024-04-14T15:33:30.289 DEBUG:teuthology.orchestra.run.smithi047:> CRUSH_MAP=$(cat crushmap.txt) 2024-04-14T15:33:30.289 DEBUG:teuthology.orchestra.run.smithi047:> if grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2024-04-14T15:33:30.290 DEBUG:teuthology.orchestra.run.smithi047:> printf "Saw $HOST_C in CRUSH map after it should have been removed.\n\n$CRUSH_MAP" 2024-04-14T15:33:30.290 DEBUG:teuthology.orchestra.run.smithi047:> exit 1 2024-04-14T15:33:30.290 DEBUG:teuthology.orchestra.run.smithi047:> fi 2024-04-14T15:33:30.290 DEBUG:teuthology.orchestra.run.smithi047:> ' 2024-04-14T15:33:30.481 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:30 smithi110 bash[22161]: cluster 2024-04-14T15:33:28.610731+0000 mgr.a (mgr.14152) 362 : cluster [DBG] pgmap v319: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:30.481 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:30 smithi110 bash[22161]: audit 2024-04-14T15:33:29.612250+0000 mon.a (mon.0) 931 : audit [DBG] from='client.? 172.21.15.47:0/2946998751' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-04-14T15:33:30.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:30 smithi047 bash[21449]: cluster 2024-04-14T15:33:28.610731+0000 mgr.a (mgr.14152) 362 : cluster [DBG] pgmap v319: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:30.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:30 smithi047 bash[21449]: audit 2024-04-14T15:33:29.612250+0000 mon.a (mon.0) 931 : audit [DBG] from='client.? 172.21.15.47:0/2946998751' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-04-14T15:33:30.806 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:30 smithi138 bash[22282]: cluster 2024-04-14T15:33:28.610731+0000 mgr.a (mgr.14152) 362 : cluster [DBG] pgmap v319: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:30.807 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:30 smithi138 bash[22282]: audit 2024-04-14T15:33:29.612250+0000 mon.a (mon.0) 931 : audit [DBG] from='client.? 172.21.15.47:0/2946998751' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-04-14T15:33:32.557 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:32 smithi138 bash[22282]: cluster 2024-04-14T15:33:30.611356+0000 mgr.a (mgr.14152) 363 : cluster [DBG] pgmap v320: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:32.557 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:32 smithi138 bash[22282]: audit 2024-04-14T15:33:32.264626+0000 mon.a (mon.0) 932 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:32.557 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:32 smithi138 bash[22282]: audit 2024-04-14T15:33:32.273947+0000 mon.a (mon.0) 933 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:32.557 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:32 smithi138 bash[22282]: audit 2024-04-14T15:33:32.284154+0000 mon.a (mon.0) 934 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:32.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:32 smithi110 bash[22161]: cluster 2024-04-14T15:33:30.611356+0000 mgr.a (mgr.14152) 363 : cluster [DBG] pgmap v320: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:32.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:32 smithi110 bash[22161]: audit 2024-04-14T15:33:32.264626+0000 mon.a (mon.0) 932 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:32.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:32 smithi110 bash[22161]: audit 2024-04-14T15:33:32.273947+0000 mon.a (mon.0) 933 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:32.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:32 smithi110 bash[22161]: audit 2024-04-14T15:33:32.284154+0000 mon.a (mon.0) 934 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:32.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:32 smithi047 bash[21449]: cluster 2024-04-14T15:33:30.611356+0000 mgr.a (mgr.14152) 363 : cluster [DBG] pgmap v320: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:32.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:32 smithi047 bash[21449]: audit 2024-04-14T15:33:32.264626+0000 mon.a (mon.0) 932 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:32.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:32 smithi047 bash[21449]: audit 2024-04-14T15:33:32.273947+0000 mon.a (mon.0) 933 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:32.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:32 smithi047 bash[21449]: audit 2024-04-14T15:33:32.284154+0000 mon.a (mon.0) 934 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:34.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:34 smithi110 bash[22161]: cluster 2024-04-14T15:33:32.611928+0000 mgr.a (mgr.14152) 364 : cluster [DBG] pgmap v321: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:34.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:34 smithi047 bash[21449]: cluster 2024-04-14T15:33:32.611928+0000 mgr.a (mgr.14152) 364 : cluster [DBG] pgmap v321: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:34.806 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:34 smithi138 bash[22282]: cluster 2024-04-14T15:33:32.611928+0000 mgr.a (mgr.14152) 364 : cluster [DBG] pgmap v321: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:35.027 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T15:33:35.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:35 smithi110 bash[22161]: audit 2024-04-14T15:33:34.820110+0000 mon.a (mon.0) 935 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:33:35.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:35 smithi110 bash[22161]: audit 2024-04-14T15:33:34.826019+0000 mon.a (mon.0) 936 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:33:35.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:35 smithi110 bash[22161]: audit 2024-04-14T15:33:34.827961+0000 mon.a (mon.0) 937 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:33:35.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:35 smithi110 bash[22161]: audit 2024-04-14T15:33:34.838523+0000 mon.a (mon.0) 938 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:35.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:35 smithi047 bash[21449]: audit 2024-04-14T15:33:34.820110+0000 mon.a (mon.0) 935 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:33:35.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:35 smithi047 bash[21449]: audit 2024-04-14T15:33:34.826019+0000 mon.a (mon.0) 936 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:33:35.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:35 smithi047 bash[21449]: audit 2024-04-14T15:33:34.827961+0000 mon.a (mon.0) 937 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:33:35.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:35 smithi047 bash[21449]: audit 2024-04-14T15:33:34.838523+0000 mon.a (mon.0) 938 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:35.806 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:35 smithi138 bash[22282]: audit 2024-04-14T15:33:34.820110+0000 mon.a (mon.0) 935 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:33:35.807 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:35 smithi138 bash[22282]: audit 2024-04-14T15:33:34.826019+0000 mon.a (mon.0) 936 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:33:35.807 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:35 smithi138 bash[22282]: audit 2024-04-14T15:33:34.827961+0000 mon.a (mon.0) 937 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:33:35.807 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:35 smithi138 bash[22282]: audit 2024-04-14T15:33:34.838523+0000 mon.a (mon.0) 938 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:36.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:36 smithi110 bash[22161]: cluster 2024-04-14T15:33:34.612526+0000 mgr.a (mgr.14152) 365 : cluster [DBG] pgmap v322: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:36.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:36 smithi047 bash[21449]: cluster 2024-04-14T15:33:34.612526+0000 mgr.a (mgr.14152) 365 : cluster [DBG] pgmap v322: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:36.806 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:36 smithi138 bash[22282]: cluster 2024-04-14T15:33:34.612526+0000 mgr.a (mgr.14152) 365 : cluster [DBG] pgmap v322: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:37.806 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:37 smithi138 bash[22282]: audit 2024-04-14T15:33:36.479539+0000 mon.a (mon.0) 939 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:37.807 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:37 smithi138 bash[22282]: audit 2024-04-14T15:33:36.484202+0000 mon.a (mon.0) 940 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:37.807 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:37 smithi138 bash[22282]: audit 2024-04-14T15:33:36.490517+0000 mon.a (mon.0) 941 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:37.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:37 smithi110 bash[22161]: audit 2024-04-14T15:33:36.479539+0000 mon.a (mon.0) 939 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:37.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:37 smithi110 bash[22161]: audit 2024-04-14T15:33:36.484202+0000 mon.a (mon.0) 940 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:37.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:37 smithi110 bash[22161]: audit 2024-04-14T15:33:36.490517+0000 mon.a (mon.0) 941 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:37.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:37 smithi047 bash[21449]: audit 2024-04-14T15:33:36.479539+0000 mon.a (mon.0) 939 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:37.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:37 smithi047 bash[21449]: audit 2024-04-14T15:33:36.484202+0000 mon.a (mon.0) 940 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:37.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:37 smithi047 bash[21449]: audit 2024-04-14T15:33:36.490517+0000 mon.a (mon.0) 941 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:38.743 INFO:teuthology.orchestra.run.smithi047.stderr:++ ceph orch host ls --format json 2024-04-14T15:33:38.743 INFO:teuthology.orchestra.run.smithi047.stderr:++ jq -r '.[] | .hostname' 2024-04-14T15:33:38.806 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:38 smithi138 bash[22282]: cluster 2024-04-14T15:33:36.612977+0000 mgr.a (mgr.14152) 366 : cluster [DBG] pgmap v323: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:38.806 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:38 smithi138 bash[22282]: audit 2024-04-14T15:33:38.215555+0000 mon.a (mon.0) 942 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:38.806 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:38 smithi138 bash[22282]: audit 2024-04-14T15:33:38.222656+0000 mon.a (mon.0) 943 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:38.807 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:38 smithi138 bash[22282]: audit 2024-04-14T15:33:38.231008+0000 mon.a (mon.0) 944 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:38.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:38 smithi110 bash[22161]: cluster 2024-04-14T15:33:36.612977+0000 mgr.a (mgr.14152) 366 : cluster [DBG] pgmap v323: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:38.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:38 smithi110 bash[22161]: audit 2024-04-14T15:33:38.215555+0000 mon.a (mon.0) 942 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:38.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:38 smithi110 bash[22161]: audit 2024-04-14T15:33:38.222656+0000 mon.a (mon.0) 943 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:38.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:38 smithi110 bash[22161]: audit 2024-04-14T15:33:38.231008+0000 mon.a (mon.0) 944 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:38.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:38 smithi047 bash[21449]: cluster 2024-04-14T15:33:36.612977+0000 mgr.a (mgr.14152) 366 : cluster [DBG] pgmap v323: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:38.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:38 smithi047 bash[21449]: audit 2024-04-14T15:33:38.215555+0000 mon.a (mon.0) 942 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:38.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:38 smithi047 bash[21449]: audit 2024-04-14T15:33:38.222656+0000 mon.a (mon.0) 943 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:38.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:38 smithi047 bash[21449]: audit 2024-04-14T15:33:38.231008+0000 mon.a (mon.0) 944 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:39.113 INFO:teuthology.orchestra.run.smithi047.stderr:+ HOSTNAMES='smithi047 2024-04-14T15:33:39.113 INFO:teuthology.orchestra.run.smithi047.stderr:smithi110 2024-04-14T15:33:39.113 INFO:teuthology.orchestra.run.smithi047.stderr:smithi138' 2024-04-14T15:33:39.113 INFO:teuthology.orchestra.run.smithi047.stderr:+ for host in $HOSTNAMES 2024-04-14T15:33:39.113 INFO:teuthology.orchestra.run.smithi047.stderr:++ ceph orch ps --hostname smithi047 --format json 2024-04-14T15:33:39.113 INFO:teuthology.orchestra.run.smithi047.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-04-14T15:33:39.494 INFO:teuthology.orchestra.run.smithi047.stderr:+ HAS_MGRS=true 2024-04-14T15:33:39.494 INFO:teuthology.orchestra.run.smithi047.stderr:+ '[' true == false ']' 2024-04-14T15:33:39.494 INFO:teuthology.orchestra.run.smithi047.stderr:+ for host in $HOSTNAMES 2024-04-14T15:33:39.494 INFO:teuthology.orchestra.run.smithi047.stderr:++ ceph orch ps --hostname smithi110 --format json 2024-04-14T15:33:39.494 INFO:teuthology.orchestra.run.smithi047.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-04-14T15:33:39.864 INFO:teuthology.orchestra.run.smithi047.stderr:+ HAS_MGRS=true 2024-04-14T15:33:39.864 INFO:teuthology.orchestra.run.smithi047.stderr:+ '[' true == false ']' 2024-04-14T15:33:39.864 INFO:teuthology.orchestra.run.smithi047.stderr:+ for host in $HOSTNAMES 2024-04-14T15:33:39.864 INFO:teuthology.orchestra.run.smithi047.stderr:++ ceph orch ps --hostname smithi138 --format json 2024-04-14T15:33:39.864 INFO:teuthology.orchestra.run.smithi047.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-04-14T15:33:40.241 INFO:teuthology.orchestra.run.smithi047.stderr:+ HAS_MGRS=false 2024-04-14T15:33:40.241 INFO:teuthology.orchestra.run.smithi047.stderr:+ '[' false == false ']' 2024-04-14T15:33:40.241 INFO:teuthology.orchestra.run.smithi047.stderr:+ HOST_C=smithi138 2024-04-14T15:33:40.241 INFO:teuthology.orchestra.run.smithi047.stderr:+ ceph orch ls mon --export 2024-04-14T15:33:40.602 INFO:teuthology.orchestra.run.smithi047.stderr:+ sed /smithi138/d mon.yaml 2024-04-14T15:33:40.603 INFO:teuthology.orchestra.run.smithi047.stderr:+ ceph orch apply -i mon_adjusted.yaml 2024-04-14T15:33:40.806 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:40 smithi138 bash[22282]: cluster 2024-04-14T15:33:38.613466+0000 mgr.a (mgr.14152) 367 : cluster [DBG] pgmap v324: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:40.807 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:40 smithi138 bash[22282]: audit 2024-04-14T15:33:39.104240+0000 mgr.a (mgr.14152) 368 : audit [DBG] from='client.14457 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-14T15:33:40.807 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:40 smithi138 bash[22282]: audit 2024-04-14T15:33:39.482179+0000 mgr.a (mgr.14152) 369 : audit [DBG] from='client.14463 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi047", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-14T15:33:40.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:40 smithi110 bash[22161]: cluster 2024-04-14T15:33:38.613466+0000 mgr.a (mgr.14152) 367 : cluster [DBG] pgmap v324: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:40.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:40 smithi110 bash[22161]: audit 2024-04-14T15:33:39.104240+0000 mgr.a (mgr.14152) 368 : audit [DBG] from='client.14457 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-14T15:33:40.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:40 smithi110 bash[22161]: audit 2024-04-14T15:33:39.482179+0000 mgr.a (mgr.14152) 369 : audit [DBG] from='client.14463 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi047", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-14T15:33:40.945 INFO:teuthology.orchestra.run.smithi047.stdout:Scheduled mon update... 2024-04-14T15:33:40.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:40 smithi047 bash[21449]: cluster 2024-04-14T15:33:38.613466+0000 mgr.a (mgr.14152) 367 : cluster [DBG] pgmap v324: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:40.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:40 smithi047 bash[21449]: audit 2024-04-14T15:33:39.104240+0000 mgr.a (mgr.14152) 368 : audit [DBG] from='client.14457 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-14T15:33:40.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:40 smithi047 bash[21449]: audit 2024-04-14T15:33:39.482179+0000 mgr.a (mgr.14152) 369 : audit [DBG] from='client.14463 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi047", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-14T15:33:40.959 INFO:teuthology.orchestra.run.smithi047.stderr:+ ceph orch host drain smithi138 --zap-osd-devices 2024-04-14T15:33:42.056 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:41 smithi138 systemd[1]: ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@mon.c.service: Deactivated successfully. 2024-04-14T15:33:43.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:43 smithi110 bash[22161]: cluster 2024-04-14T15:33:40.613819+0000 mgr.a (mgr.14152) 373 : cluster [DBG] pgmap v325: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:43.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:43 smithi110 bash[22161]: audit 2024-04-14T15:33:40.938198+0000 mgr.a (mgr.14152) 374 : audit [DBG] from='client.14487 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:33:43.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:43 smithi110 bash[22161]: cephadm 2024-04-14T15:33:40.944607+0000 mgr.a (mgr.14152) 375 : cephadm [INF] Saving service mon spec with placement smithi047:172.21.15.47=a;smithi110:172.21.15.110=b;count:3 2024-04-14T15:33:43.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:43 smithi110 bash[22161]: cephadm 2024-04-14T15:33:40.986037+0000 mgr.a (mgr.14152) 376 : cephadm [INF] Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-04-14T15:33:43.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:43 smithi110 bash[22161]: cephadm 2024-04-14T15:33:40.986110+0000 mgr.a (mgr.14152) 377 : cephadm [INF] Removing monitor c from monmap... 2024-04-14T15:33:43.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:43 smithi110 bash[22161]: cluster 2024-04-14T15:33:40.986374+0000 mon.b (mon.1) 17 : cluster [INF] mon.b calling monitor election 2024-04-14T15:33:43.397 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:43 smithi110 bash[22161]: audit 2024-04-14T15:33:40.987709+0000 mon.a (mon.0) 953 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd='[{"prefix": "mon rm", "name": "c"}]': finished 2024-04-14T15:33:43.397 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:43 smithi110 bash[22161]: audit 2024-04-14T15:33:40.991218+0000 mon.a (mon.0) 954 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-14T15:33:43.397 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:43 smithi110 bash[22161]: audit 2024-04-14T15:33:40.992411+0000 mon.a (mon.0) 955 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:33:43.397 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:43 smithi110 bash[22161]: cluster 2024-04-14T15:33:42.991837+0000 mon.a (mon.0) 956 : cluster [INF] mon.a calling monitor election 2024-04-14T15:33:43.397 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:43 smithi110 bash[22161]: cluster 2024-04-14T15:33:43.017471+0000 mon.a (mon.0) 957 : cluster [INF] mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-04-14T15:33:43.397 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:43 smithi110 bash[22161]: cluster 2024-04-14T15:33:43.023913+0000 mon.a (mon.0) 958 : cluster [DBG] monmap epoch 4 2024-04-14T15:33:43.397 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:43 smithi110 bash[22161]: cluster 2024-04-14T15:33:43.023947+0000 mon.a (mon.0) 959 : cluster [DBG] fsid af942ef8-fa72-11ee-bc8e-c7b262605968 2024-04-14T15:33:43.397 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:43 smithi110 bash[22161]: cluster 2024-04-14T15:33:43.023969+0000 mon.a (mon.0) 960 : cluster [DBG] last_changed 2024-04-14T15:33:40.986375+0000 2024-04-14T15:33:43.397 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:43 smithi110 bash[22161]: cluster 2024-04-14T15:33:43.023987+0000 mon.a (mon.0) 961 : cluster [DBG] created 2024-04-14T15:22:58.674104+0000 2024-04-14T15:33:43.397 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:43 smithi110 bash[22161]: cluster 2024-04-14T15:33:43.024010+0000 mon.a (mon.0) 962 : cluster [DBG] min_mon_release 19 (squid) 2024-04-14T15:33:43.397 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:43 smithi110 bash[22161]: cluster 2024-04-14T15:33:43.024037+0000 mon.a (mon.0) 963 : cluster [DBG] election_strategy: 1 2024-04-14T15:33:43.397 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:43 smithi110 bash[22161]: cluster 2024-04-14T15:33:43.024060+0000 mon.a (mon.0) 964 : cluster [DBG] 0: [v2:172.21.15.47:3300/0,v1:172.21.15.47:6789/0] mon.a 2024-04-14T15:33:43.397 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:43 smithi110 bash[22161]: cluster 2024-04-14T15:33:43.024086+0000 mon.a (mon.0) 965 : cluster [DBG] 1: [v2:172.21.15.110:3300/0,v1:172.21.15.110:6789/0] mon.b 2024-04-14T15:33:43.398 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:43 smithi110 bash[22161]: cluster 2024-04-14T15:33:43.025115+0000 mon.a (mon.0) 966 : cluster [DBG] fsmap 2024-04-14T15:33:43.398 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:43 smithi110 bash[22161]: cluster 2024-04-14T15:33:43.025179+0000 mon.a (mon.0) 967 : cluster [DBG] osdmap e46: 6 total, 6 up, 6 in 2024-04-14T15:33:43.398 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:43 smithi110 bash[22161]: cluster 2024-04-14T15:33:43.025833+0000 mon.a (mon.0) 968 : cluster [DBG] mgrmap e15: a(active, since 9m), standbys: b 2024-04-14T15:33:43.398 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:43 smithi110 bash[22161]: cluster 2024-04-14T15:33:43.026102+0000 mon.a (mon.0) 969 : cluster [INF] overall HEALTH_OK 2024-04-14T15:33:43.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:43 smithi047 bash[21449]: cluster 2024-04-14T15:33:40.613819+0000 mgr.a (mgr.14152) 373 : cluster [DBG] pgmap v325: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:43.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:43 smithi047 bash[21449]: audit 2024-04-14T15:33:40.938198+0000 mgr.a (mgr.14152) 374 : audit [DBG] from='client.14487 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:33:43.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:43 smithi047 bash[21449]: cephadm 2024-04-14T15:33:40.944607+0000 mgr.a (mgr.14152) 375 : cephadm [INF] Saving service mon spec with placement smithi047:172.21.15.47=a;smithi110:172.21.15.110=b;count:3 2024-04-14T15:33:43.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:43 smithi047 bash[21449]: cephadm 2024-04-14T15:33:40.986037+0000 mgr.a (mgr.14152) 376 : cephadm [INF] Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-04-14T15:33:43.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:43 smithi047 bash[21449]: cephadm 2024-04-14T15:33:40.986110+0000 mgr.a (mgr.14152) 377 : cephadm [INF] Removing monitor c from monmap... 2024-04-14T15:33:43.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:43 smithi047 bash[21449]: cluster 2024-04-14T15:33:40.986374+0000 mon.b (mon.1) 17 : cluster [INF] mon.b calling monitor election 2024-04-14T15:33:43.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:43 smithi047 bash[21449]: audit 2024-04-14T15:33:40.987709+0000 mon.a (mon.0) 953 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd='[{"prefix": "mon rm", "name": "c"}]': finished 2024-04-14T15:33:43.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:43 smithi047 bash[21449]: audit 2024-04-14T15:33:40.991218+0000 mon.a (mon.0) 954 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-14T15:33:43.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:43 smithi047 bash[21449]: audit 2024-04-14T15:33:40.992411+0000 mon.a (mon.0) 955 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T15:33:43.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:43 smithi047 bash[21449]: cluster 2024-04-14T15:33:42.991837+0000 mon.a (mon.0) 956 : cluster [INF] mon.a calling monitor election 2024-04-14T15:33:43.457 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:43 smithi047 bash[21449]: cluster 2024-04-14T15:33:43.017471+0000 mon.a (mon.0) 957 : cluster [INF] mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-04-14T15:33:43.458 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:43 smithi047 bash[21449]: cluster 2024-04-14T15:33:43.023913+0000 mon.a (mon.0) 958 : cluster [DBG] monmap epoch 4 2024-04-14T15:33:43.458 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:43 smithi047 bash[21449]: cluster 2024-04-14T15:33:43.023947+0000 mon.a (mon.0) 959 : cluster [DBG] fsid af942ef8-fa72-11ee-bc8e-c7b262605968 2024-04-14T15:33:43.458 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:43 smithi047 bash[21449]: cluster 2024-04-14T15:33:43.023969+0000 mon.a (mon.0) 960 : cluster [DBG] last_changed 2024-04-14T15:33:40.986375+0000 2024-04-14T15:33:43.458 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:43 smithi047 bash[21449]: cluster 2024-04-14T15:33:43.023987+0000 mon.a (mon.0) 961 : cluster [DBG] created 2024-04-14T15:22:58.674104+0000 2024-04-14T15:33:43.458 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:43 smithi047 bash[21449]: cluster 2024-04-14T15:33:43.024010+0000 mon.a (mon.0) 962 : cluster [DBG] min_mon_release 19 (squid) 2024-04-14T15:33:43.458 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:43 smithi047 bash[21449]: cluster 2024-04-14T15:33:43.024037+0000 mon.a (mon.0) 963 : cluster [DBG] election_strategy: 1 2024-04-14T15:33:43.458 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:43 smithi047 bash[21449]: cluster 2024-04-14T15:33:43.024060+0000 mon.a (mon.0) 964 : cluster [DBG] 0: [v2:172.21.15.47:3300/0,v1:172.21.15.47:6789/0] mon.a 2024-04-14T15:33:43.458 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:43 smithi047 bash[21449]: cluster 2024-04-14T15:33:43.024086+0000 mon.a (mon.0) 965 : cluster [DBG] 1: [v2:172.21.15.110:3300/0,v1:172.21.15.110:6789/0] mon.b 2024-04-14T15:33:43.458 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:43 smithi047 bash[21449]: cluster 2024-04-14T15:33:43.025115+0000 mon.a (mon.0) 966 : cluster [DBG] fsmap 2024-04-14T15:33:43.458 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:43 smithi047 bash[21449]: cluster 2024-04-14T15:33:43.025179+0000 mon.a (mon.0) 967 : cluster [DBG] osdmap e46: 6 total, 6 up, 6 in 2024-04-14T15:33:43.458 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:43 smithi047 bash[21449]: cluster 2024-04-14T15:33:43.025833+0000 mon.a (mon.0) 968 : cluster [DBG] mgrmap e15: a(active, since 9m), standbys: b 2024-04-14T15:33:43.458 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:43 smithi047 bash[21449]: cluster 2024-04-14T15:33:43.026102+0000 mon.a (mon.0) 969 : cluster [INF] overall HEALTH_OK 2024-04-14T15:33:44.341 INFO:teuthology.orchestra.run.smithi047.stdout:Scheduled to remove the following daemons from host 'smithi138' 2024-04-14T15:33:44.341 INFO:teuthology.orchestra.run.smithi047.stdout:type id 2024-04-14T15:33:44.341 INFO:teuthology.orchestra.run.smithi047.stdout:-------------------- --------------- 2024-04-14T15:33:44.341 INFO:teuthology.orchestra.run.smithi047.stdout:agent smithi138 2024-04-14T15:33:44.341 INFO:teuthology.orchestra.run.smithi047.stdout:mon c 2024-04-14T15:33:44.341 INFO:teuthology.orchestra.run.smithi047.stdout:osd 4 2024-04-14T15:33:44.341 INFO:teuthology.orchestra.run.smithi047.stdout:osd 5 2024-04-14T15:33:44.357 INFO:teuthology.orchestra.run.smithi047.stderr:++ ceph orch ps --hostname smithi138 2024-04-14T15:33:44.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:44 smithi110 bash[22161]: cluster 2024-04-14T15:33:42.614313+0000 mgr.a (mgr.14152) 378 : cluster [DBG] pgmap v326: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:44.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:44 smithi110 bash[22161]: cephadm 2024-04-14T15:33:43.028538+0000 mgr.a (mgr.14152) 379 : cephadm [INF] Removing daemon mon.c from smithi138 -- ports [] 2024-04-14T15:33:44.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:44 smithi047 bash[21449]: cluster 2024-04-14T15:33:42.614313+0000 mgr.a (mgr.14152) 378 : cluster [DBG] pgmap v326: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:44.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:44 smithi047 bash[21449]: cephadm 2024-04-14T15:33:43.028538+0000 mgr.a (mgr.14152) 379 : cephadm [INF] Removing daemon mon.c from smithi138 -- ports [] 2024-04-14T15:33:44.728 INFO:teuthology.orchestra.run.smithi047.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-04-14T15:33:44.728 INFO:teuthology.orchestra.run.smithi047.stderr:agent.smithi138 smithi138 running 12s ago 8m - - 2024-04-14T15:33:44.729 INFO:teuthology.orchestra.run.smithi047.stderr:mon.c smithi138 running (7m) 12s ago 7m 33.1M 2048M 19.0.0-2778-ga971fd5f b96c509eef84 366c2e871e99 2024-04-14T15:33:44.729 INFO:teuthology.orchestra.run.smithi047.stderr:osd.4 smithi138 running (3m) 12s ago 3m 37.1M 19.8G 19.0.0-2778-ga971fd5f b96c509eef84 902ee9f74f0a 2024-04-14T15:33:44.729 INFO:teuthology.orchestra.run.smithi047.stderr:osd.5 smithi138 running (2m) 12s ago 2m 37.1M 19.8G 19.0.0-2778-ga971fd5f b96c509eef84 53042091fab6 ' 2024-04-14T15:33:44.729 INFO:teuthology.orchestra.run.smithi047.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-04-14T15:33:44.729 INFO:teuthology.orchestra.run.smithi047.stderr:agent.smithi138 smithi138 running 12s ago 8m - - 2024-04-14T15:33:44.729 INFO:teuthology.orchestra.run.smithi047.stderr:mon.c smithi138 running (7m) 12s ago 7m 33.1M 2048M 19.0.0-2778-ga971fd5f b96c509eef84 366c2e871e99 2024-04-14T15:33:44.729 INFO:teuthology.orchestra.run.smithi047.stderr:osd.4 smithi138 running (3m) 12s ago 3m 37.1M 19.8G 19.0.0-2778-ga971fd5f b96c509eef84 902ee9f74f0a 2024-04-14T15:33:44.729 INFO:teuthology.orchestra.run.smithi047.stderr:osd.5 smithi138 running (2m) 12s ago 2m 37.1M 19.8G 19.0.0-2778-ga971fd5f b96c509eef84 53042091fab6 ' '!=' 'No daemons reported' ']' 2024-04-14T15:33:44.729 INFO:teuthology.orchestra.run.smithi047.stderr:+ sleep 15 2024-04-14T15:33:45.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:45 smithi110 bash[22161]: audit 2024-04-14T15:33:44.325767+0000 mgr.a (mgr.14152) 380 : audit [DBG] from='client.14490 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi138", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:33:45.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:45 smithi110 bash[22161]: audit 2024-04-14T15:33:44.332634+0000 mon.a (mon.0) 970 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:45.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:45 smithi110 bash[22161]: cephadm 2024-04-14T15:33:44.333310+0000 mgr.a (mgr.14152) 381 : cephadm [INF] Added label _no_schedule to host smithi138 2024-04-14T15:33:45.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:45 smithi110 bash[22161]: audit 2024-04-14T15:33:44.339017+0000 mon.a (mon.0) 971 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:45.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:45 smithi110 bash[22161]: cephadm 2024-04-14T15:33:44.339504+0000 mgr.a (mgr.14152) 382 : cephadm [INF] Added label _no_conf_keyring to host smithi138 2024-04-14T15:33:45.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:45 smithi110 bash[22161]: audit 2024-04-14T15:33:44.341927+0000 mon.a (mon.0) 972 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-04-14T15:33:45.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:45 smithi110 bash[22161]: cephadm 2024-04-14T15:33:44.343079+0000 mgr.a (mgr.14152) 383 : cephadm [INF] osd.4 crush weight is 0.0872955322265625 2024-04-14T15:33:45.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:45 smithi110 bash[22161]: audit 2024-04-14T15:33:44.344653+0000 mon.a (mon.0) 973 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-04-14T15:33:45.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:45 smithi110 bash[22161]: cephadm 2024-04-14T15:33:44.345816+0000 mgr.a (mgr.14152) 384 : cephadm [INF] osd.5 crush weight is 0.0872955322265625 2024-04-14T15:33:45.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:45 smithi047 bash[21449]: audit 2024-04-14T15:33:44.325767+0000 mgr.a (mgr.14152) 380 : audit [DBG] from='client.14490 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi138", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:33:45.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:45 smithi047 bash[21449]: audit 2024-04-14T15:33:44.332634+0000 mon.a (mon.0) 970 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:45.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:45 smithi047 bash[21449]: cephadm 2024-04-14T15:33:44.333310+0000 mgr.a (mgr.14152) 381 : cephadm [INF] Added label _no_schedule to host smithi138 2024-04-14T15:33:45.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:45 smithi047 bash[21449]: audit 2024-04-14T15:33:44.339017+0000 mon.a (mon.0) 971 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:45.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:45 smithi047 bash[21449]: cephadm 2024-04-14T15:33:44.339504+0000 mgr.a (mgr.14152) 382 : cephadm [INF] Added label _no_conf_keyring to host smithi138 2024-04-14T15:33:45.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:45 smithi047 bash[21449]: audit 2024-04-14T15:33:44.341927+0000 mon.a (mon.0) 972 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-04-14T15:33:45.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:45 smithi047 bash[21449]: cephadm 2024-04-14T15:33:44.343079+0000 mgr.a (mgr.14152) 383 : cephadm [INF] osd.4 crush weight is 0.0872955322265625 2024-04-14T15:33:45.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:45 smithi047 bash[21449]: audit 2024-04-14T15:33:44.344653+0000 mon.a (mon.0) 973 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-04-14T15:33:45.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:45 smithi047 bash[21449]: cephadm 2024-04-14T15:33:44.345816+0000 mgr.a (mgr.14152) 384 : cephadm [INF] osd.5 crush weight is 0.0872955322265625 2024-04-14T15:33:46.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:46 smithi110 bash[22161]: cluster 2024-04-14T15:33:44.614943+0000 mgr.a (mgr.14152) 385 : cluster [DBG] pgmap v327: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:46.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:46 smithi110 bash[22161]: audit 2024-04-14T15:33:44.714302+0000 mgr.a (mgr.14152) 386 : audit [DBG] from='client.14494 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi138", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:33:46.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:46 smithi047 bash[21449]: cluster 2024-04-14T15:33:44.614943+0000 mgr.a (mgr.14152) 385 : cluster [DBG] pgmap v327: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:46.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:46 smithi047 bash[21449]: audit 2024-04-14T15:33:44.714302+0000 mgr.a (mgr.14152) 386 : audit [DBG] from='client.14494 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi138", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:33:48.306 INFO:journalctl@ceph.mon.c.smithi138.stdout:Apr 14 15:33:48 smithi138 systemd[1]: /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-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-14T15:33:48.307 INFO:journalctl@ceph.osd.4.smithi138.stdout:Apr 14 15:33:48 smithi138 systemd[1]: /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-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-14T15:33:48.307 INFO:journalctl@ceph.osd.5.smithi138.stdout:Apr 14 15:33:48 smithi138 systemd[1]: /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-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-14T15:33:48.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:48 smithi110 bash[22161]: cluster 2024-04-14T15:33:46.615526+0000 mgr.a (mgr.14152) 387 : cluster [DBG] pgmap v328: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:48.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:48 smithi110 bash[22161]: audit 2024-04-14T15:33:48.315745+0000 mon.a (mon.0) 974 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:48.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:48 smithi110 bash[22161]: audit 2024-04-14T15:33:48.323426+0000 mon.a (mon.0) 975 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:48.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:48 smithi047 bash[21449]: cluster 2024-04-14T15:33:46.615526+0000 mgr.a (mgr.14152) 387 : cluster [DBG] pgmap v328: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:48.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:48 smithi047 bash[21449]: audit 2024-04-14T15:33:48.315745+0000 mon.a (mon.0) 974 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:48.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:48 smithi047 bash[21449]: audit 2024-04-14T15:33:48.323426+0000 mon.a (mon.0) 975 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:49.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:49 smithi110 bash[22161]: audit 2024-04-14T15:33:48.424909+0000 mon.a (mon.0) 976 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:33:49.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:49 smithi047 bash[21449]: audit 2024-04-14T15:33:48.424909+0000 mon.a (mon.0) 976 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:33:50.600 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:50 smithi110 bash[22161]: cluster 2024-04-14T15:33:48.616108+0000 mgr.a (mgr.14152) 388 : cluster [DBG] pgmap v329: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:50.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:50 smithi047 bash[21449]: cluster 2024-04-14T15:33:48.616108+0000 mgr.a (mgr.14152) 388 : cluster [DBG] pgmap v329: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:52.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:52 smithi110 bash[22161]: cluster 2024-04-14T15:33:50.616666+0000 mgr.a (mgr.14152) 389 : cluster [DBG] pgmap v330: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:52.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:52 smithi110 bash[22161]: audit 2024-04-14T15:33:51.982443+0000 mon.a (mon.0) 977 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:52.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:52 smithi047 bash[21449]: cluster 2024-04-14T15:33:50.616666+0000 mgr.a (mgr.14152) 389 : cluster [DBG] pgmap v330: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:52.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:52 smithi047 bash[21449]: audit 2024-04-14T15:33:51.982443+0000 mon.a (mon.0) 977 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:53.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:53 smithi110 bash[22161]: audit 2024-04-14T15:33:52.496912+0000 mon.a (mon.0) 978 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:53.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:53 smithi110 bash[22161]: audit 2024-04-14T15:33:52.505416+0000 mon.a (mon.0) 979 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:53.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:53 smithi110 bash[22161]: audit 2024-04-14T15:33:52.515662+0000 mon.a (mon.0) 980 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:53.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:53 smithi110 bash[22161]: audit 2024-04-14T15:33:53.368552+0000 mon.a (mon.0) 981 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:53.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:53 smithi110 bash[22161]: audit 2024-04-14T15:33:53.376951+0000 mon.a (mon.0) 982 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:53.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:53 smithi047 bash[21449]: audit 2024-04-14T15:33:52.496912+0000 mon.a (mon.0) 978 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:53.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:53 smithi047 bash[21449]: audit 2024-04-14T15:33:52.505416+0000 mon.a (mon.0) 979 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:53.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:53 smithi047 bash[21449]: audit 2024-04-14T15:33:52.515662+0000 mon.a (mon.0) 980 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:53.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:53 smithi047 bash[21449]: audit 2024-04-14T15:33:53.368552+0000 mon.a (mon.0) 981 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:53.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:53 smithi047 bash[21449]: audit 2024-04-14T15:33:53.376951+0000 mon.a (mon.0) 982 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:54.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:54 smithi110 bash[22161]: cluster 2024-04-14T15:33:52.617202+0000 mgr.a (mgr.14152) 390 : cluster [DBG] pgmap v331: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:54.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:54 smithi110 bash[22161]: audit 2024-04-14T15:33:53.852794+0000 mon.a (mon.0) 983 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:54.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:54 smithi110 bash[22161]: audit 2024-04-14T15:33:53.861266+0000 mon.a (mon.0) 984 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:54.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:54 smithi047 bash[21449]: cluster 2024-04-14T15:33:52.617202+0000 mgr.a (mgr.14152) 390 : cluster [DBG] pgmap v331: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:54.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:54 smithi047 bash[21449]: audit 2024-04-14T15:33:53.852794+0000 mon.a (mon.0) 983 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:54.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:54 smithi047 bash[21449]: audit 2024-04-14T15:33:53.861266+0000 mon.a (mon.0) 984 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:56.699 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:56 smithi110 bash[22161]: cluster 2024-04-14T15:33:54.617826+0000 mgr.a (mgr.14152) 391 : cluster [DBG] pgmap v332: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:56.699 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:56 smithi110 bash[22161]: audit 2024-04-14T15:33:55.403946+0000 mon.a (mon.0) 985 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:56.699 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:56 smithi110 bash[22161]: audit 2024-04-14T15:33:55.412318+0000 mon.a (mon.0) 986 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:56.699 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:56 smithi110 bash[22161]: audit 2024-04-14T15:33:55.422101+0000 mon.a (mon.0) 987 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:56.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:56 smithi047 bash[21449]: cluster 2024-04-14T15:33:54.617826+0000 mgr.a (mgr.14152) 391 : cluster [DBG] pgmap v332: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:56.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:56 smithi047 bash[21449]: audit 2024-04-14T15:33:55.403946+0000 mon.a (mon.0) 985 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:56.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:56 smithi047 bash[21449]: audit 2024-04-14T15:33:55.412318+0000 mon.a (mon.0) 986 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:56.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:56 smithi047 bash[21449]: audit 2024-04-14T15:33:55.422101+0000 mon.a (mon.0) 987 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:57.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:57 smithi047 bash[21449]: cluster 2024-04-14T15:33:56.618209+0000 mgr.a (mgr.14152) 392 : cluster [DBG] pgmap v333: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:57.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:57 smithi047 bash[21449]: audit 2024-04-14T15:33:56.683341+0000 mon.a (mon.0) 988 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:57.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:57 smithi047 bash[21449]: audit 2024-04-14T15:33:56.691577+0000 mon.a (mon.0) 989 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:57.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:57 smithi047 bash[21449]: audit 2024-04-14T15:33:56.701568+0000 mon.a (mon.0) 990 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:58.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:57 smithi110 bash[22161]: cluster 2024-04-14T15:33:56.618209+0000 mgr.a (mgr.14152) 392 : cluster [DBG] pgmap v333: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:33:58.146 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:57 smithi110 bash[22161]: audit 2024-04-14T15:33:56.683341+0000 mon.a (mon.0) 988 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:58.146 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:57 smithi110 bash[22161]: audit 2024-04-14T15:33:56.691577+0000 mon.a (mon.0) 989 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:58.146 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:57 smithi110 bash[22161]: audit 2024-04-14T15:33:56.701568+0000 mon.a (mon.0) 990 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:59.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:59 smithi047 bash[21449]: audit 2024-04-14T15:33:58.424138+0000 mon.a (mon.0) 991 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:59.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:59 smithi047 bash[21449]: audit 2024-04-14T15:33:58.432325+0000 mon.a (mon.0) 992 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:59.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:33:59 smithi047 bash[21449]: audit 2024-04-14T15:33:58.442488+0000 mon.a (mon.0) 993 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:59.731 INFO:teuthology.orchestra.run.smithi047.stderr:++ ceph orch ps --hostname smithi138 2024-04-14T15:33:59.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:59 smithi110 bash[22161]: audit 2024-04-14T15:33:58.424138+0000 mon.a (mon.0) 991 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:59.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:59 smithi110 bash[22161]: audit 2024-04-14T15:33:58.432325+0000 mon.a (mon.0) 992 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:33:59.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:33:59 smithi110 bash[22161]: audit 2024-04-14T15:33:58.442488+0000 mon.a (mon.0) 993 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:00.114 INFO:teuthology.orchestra.run.smithi047.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-04-14T15:34:00.115 INFO:teuthology.orchestra.run.smithi047.stderr:agent.smithi138 smithi138 running 4s ago 8m - - 2024-04-14T15:34:00.115 INFO:teuthology.orchestra.run.smithi047.stderr:osd.4 smithi138 running (3m) 4s ago 3m 37.4M 19.8G 19.0.0-2778-ga971fd5f b96c509eef84 902ee9f74f0a 2024-04-14T15:34:00.115 INFO:teuthology.orchestra.run.smithi047.stderr:osd.5 smithi138 running (2m) 4s ago 2m 37.2M 19.8G 19.0.0-2778-ga971fd5f b96c509eef84 53042091fab6 ' 2024-04-14T15:34:00.115 INFO:teuthology.orchestra.run.smithi047.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-04-14T15:34:00.115 INFO:teuthology.orchestra.run.smithi047.stderr:agent.smithi138 smithi138 running 4s ago 8m - - 2024-04-14T15:34:00.115 INFO:teuthology.orchestra.run.smithi047.stderr:osd.4 smithi138 running (3m) 4s ago 3m 37.4M 19.8G 19.0.0-2778-ga971fd5f b96c509eef84 902ee9f74f0a 2024-04-14T15:34:00.115 INFO:teuthology.orchestra.run.smithi047.stderr:osd.5 smithi138 running (2m) 4s ago 2m 37.2M 19.8G 19.0.0-2778-ga971fd5f b96c509eef84 53042091fab6 ' '!=' 'No daemons reported' ']' 2024-04-14T15:34:00.115 INFO:teuthology.orchestra.run.smithi047.stderr:+ sleep 15 2024-04-14T15:34:00.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:00 smithi047 bash[21449]: cluster 2024-04-14T15:33:58.618735+0000 mgr.a (mgr.14152) 393 : cluster [DBG] pgmap v334: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:34:00.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:00 smithi110 bash[22161]: cluster 2024-04-14T15:33:58.618735+0000 mgr.a (mgr.14152) 393 : cluster [DBG] pgmap v334: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:34:01.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:01 smithi047 bash[21449]: audit 2024-04-14T15:34:00.099094+0000 mgr.a (mgr.14152) 394 : audit [DBG] from='client.14498 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi138", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:34:01.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:01 smithi110 bash[22161]: audit 2024-04-14T15:34:00.099094+0000 mgr.a (mgr.14152) 394 : audit [DBG] from='client.14498 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi138", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:34:02.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:02 smithi047 bash[21449]: cluster 2024-04-14T15:34:00.619312+0000 mgr.a (mgr.14152) 395 : cluster [DBG] pgmap v335: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:34:02.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:02 smithi047 bash[21449]: audit 2024-04-14T15:34:02.207005+0000 mon.a (mon.0) 994 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:02.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:02 smithi047 bash[21449]: audit 2024-04-14T15:34:02.215582+0000 mon.a (mon.0) 995 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:02.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:02 smithi047 bash[21449]: audit 2024-04-14T15:34:02.217376+0000 mon.a (mon.0) 996 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:34:02.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:02 smithi047 bash[21449]: audit 2024-04-14T15:34:02.219409+0000 mon.a (mon.0) 997 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:34:02.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:02 smithi110 bash[22161]: cluster 2024-04-14T15:34:00.619312+0000 mgr.a (mgr.14152) 395 : cluster [DBG] pgmap v335: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:34:02.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:02 smithi110 bash[22161]: audit 2024-04-14T15:34:02.207005+0000 mon.a (mon.0) 994 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:02.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:02 smithi110 bash[22161]: audit 2024-04-14T15:34:02.215582+0000 mon.a (mon.0) 995 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:02.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:02 smithi110 bash[22161]: audit 2024-04-14T15:34:02.217376+0000 mon.a (mon.0) 996 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:34:02.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:02 smithi110 bash[22161]: audit 2024-04-14T15:34:02.219409+0000 mon.a (mon.0) 997 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:34:03.733 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:03 smithi047 bash[21449]: cephadm 2024-04-14T15:34:02.198178+0000 mgr.a (mgr.14152) 396 : cephadm [INF] Detected new or changed devices on smithi138 2024-04-14T15:34:03.733 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:03 smithi047 bash[21449]: cephadm 2024-04-14T15:34:02.222022+0000 mgr.a (mgr.14152) 397 : cephadm [INF] Updating smithi047:/etc/ceph/ceph.conf 2024-04-14T15:34:03.733 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:03 smithi047 bash[21449]: cephadm 2024-04-14T15:34:02.222868+0000 mgr.a (mgr.14152) 398 : cephadm [INF] Updating smithi110:/etc/ceph/ceph.conf 2024-04-14T15:34:03.733 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:03 smithi047 bash[21449]: cephadm 2024-04-14T15:34:02.224199+0000 mgr.a (mgr.14152) 399 : cephadm [INF] Removing smithi138:/var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T15:34:03.733 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:03 smithi047 bash[21449]: cephadm 2024-04-14T15:34:02.339903+0000 mgr.a (mgr.14152) 400 : cephadm [INF] Removing smithi138:/etc/ceph/ceph.client.admin.keyring 2024-04-14T15:34:03.733 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:03 smithi047 bash[21449]: cephadm 2024-04-14T15:34:02.405051+0000 mgr.a (mgr.14152) 401 : cephadm [INF] Removing smithi138:/var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/config/ceph.client.admin.keyring 2024-04-14T15:34:03.733 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:03 smithi047 bash[21449]: audit 2024-04-14T15:34:02.477644+0000 mon.a (mon.0) 998 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:03.733 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:03 smithi047 bash[21449]: audit 2024-04-14T15:34:02.485513+0000 mon.a (mon.0) 999 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:03.733 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:03 smithi047 bash[21449]: cephadm 2024-04-14T15:34:02.538638+0000 mgr.a (mgr.14152) 402 : cephadm [INF] Updating smithi047:/var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T15:34:03.734 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:03 smithi047 bash[21449]: cephadm 2024-04-14T15:34:02.540331+0000 mgr.a (mgr.14152) 403 : cephadm [INF] Updating smithi110:/var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T15:34:03.734 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:03 smithi047 bash[21449]: audit 2024-04-14T15:34:02.710448+0000 mon.a (mon.0) 1000 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:03.734 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:03 smithi047 bash[21449]: audit 2024-04-14T15:34:02.715647+0000 mon.a (mon.0) 1001 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:03.734 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:03 smithi047 bash[21449]: audit 2024-04-14T15:34:02.719335+0000 mon.a (mon.0) 1002 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:03.734 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:03 smithi047 bash[21449]: audit 2024-04-14T15:34:02.723299+0000 mon.a (mon.0) 1003 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:03.734 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:03 smithi047 bash[21449]: audit 2024-04-14T15:34:02.726126+0000 mon.a (mon.0) 1004 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-14T15:34:03.734 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:03 smithi047 bash[21449]: audit 2024-04-14T15:34:02.727930+0000 mon.a (mon.0) 1005 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-14T15:34:03.734 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:03 smithi047 bash[21449]: audit 2024-04-14T15:34:02.729551+0000 mon.a (mon.0) 1006 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-04-14T15:34:03.734 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:03 smithi047 bash[21449]: audit 2024-04-14T15:34:02.731039+0000 mon.a (mon.0) 1007 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]: dispatch 2024-04-14T15:34:03.734 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:03 smithi047 bash[21449]: debug 2024-04-14T15:34:03.735+0000 7f5b67a35700 -1 mon.a@0(leader).osd e47 definitely_dead 0 2024-04-14T15:34:03.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:03 smithi110 bash[22161]: cephadm 2024-04-14T15:34:02.198178+0000 mgr.a (mgr.14152) 396 : cephadm [INF] Detected new or changed devices on smithi138 2024-04-14T15:34:03.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:03 smithi110 bash[22161]: cephadm 2024-04-14T15:34:02.222022+0000 mgr.a (mgr.14152) 397 : cephadm [INF] Updating smithi047:/etc/ceph/ceph.conf 2024-04-14T15:34:03.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:03 smithi110 bash[22161]: cephadm 2024-04-14T15:34:02.222868+0000 mgr.a (mgr.14152) 398 : cephadm [INF] Updating smithi110:/etc/ceph/ceph.conf 2024-04-14T15:34:03.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:03 smithi110 bash[22161]: cephadm 2024-04-14T15:34:02.224199+0000 mgr.a (mgr.14152) 399 : cephadm [INF] Removing smithi138:/var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T15:34:03.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:03 smithi110 bash[22161]: cephadm 2024-04-14T15:34:02.339903+0000 mgr.a (mgr.14152) 400 : cephadm [INF] Removing smithi138:/etc/ceph/ceph.client.admin.keyring 2024-04-14T15:34:03.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:03 smithi110 bash[22161]: cephadm 2024-04-14T15:34:02.405051+0000 mgr.a (mgr.14152) 401 : cephadm [INF] Removing smithi138:/var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/config/ceph.client.admin.keyring 2024-04-14T15:34:03.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:03 smithi110 bash[22161]: audit 2024-04-14T15:34:02.477644+0000 mon.a (mon.0) 998 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:03.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:03 smithi110 bash[22161]: audit 2024-04-14T15:34:02.485513+0000 mon.a (mon.0) 999 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:03.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:03 smithi110 bash[22161]: cephadm 2024-04-14T15:34:02.538638+0000 mgr.a (mgr.14152) 402 : cephadm [INF] Updating smithi047:/var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T15:34:03.897 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:03 smithi110 bash[22161]: cephadm 2024-04-14T15:34:02.540331+0000 mgr.a (mgr.14152) 403 : cephadm [INF] Updating smithi110:/var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T15:34:03.897 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:03 smithi110 bash[22161]: audit 2024-04-14T15:34:02.710448+0000 mon.a (mon.0) 1000 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:03.897 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:03 smithi110 bash[22161]: audit 2024-04-14T15:34:02.715647+0000 mon.a (mon.0) 1001 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:03.897 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:03 smithi110 bash[22161]: audit 2024-04-14T15:34:02.719335+0000 mon.a (mon.0) 1002 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:03.897 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:03 smithi110 bash[22161]: audit 2024-04-14T15:34:02.723299+0000 mon.a (mon.0) 1003 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:03.897 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:03 smithi110 bash[22161]: audit 2024-04-14T15:34:02.726126+0000 mon.a (mon.0) 1004 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-14T15:34:03.897 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:03 smithi110 bash[22161]: audit 2024-04-14T15:34:02.727930+0000 mon.a (mon.0) 1005 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-14T15:34:03.897 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:03 smithi110 bash[22161]: audit 2024-04-14T15:34:02.729551+0000 mon.a (mon.0) 1006 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-04-14T15:34:03.897 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:03 smithi110 bash[22161]: audit 2024-04-14T15:34:02.731039+0000 mon.a (mon.0) 1007 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]: dispatch 2024-04-14T15:34:04.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:04 smithi110 bash[22161]: cluster 2024-04-14T15:34:02.619836+0000 mgr.a (mgr.14152) 404 : cluster [DBG] pgmap v336: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:34:04.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:04 smithi110 bash[22161]: audit 2024-04-14T15:34:02.726335+0000 mgr.a (mgr.14152) 405 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-14T15:34:04.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:04 smithi110 bash[22161]: audit 2024-04-14T15:34:02.728135+0000 mgr.a (mgr.14152) 406 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-14T15:34:04.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:04 smithi110 bash[22161]: audit 2024-04-14T15:34:02.729748+0000 mgr.a (mgr.14152) 407 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-04-14T15:34:04.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:04 smithi110 bash[22161]: audit 2024-04-14T15:34:03.724182+0000 mon.a (mon.0) 1008 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-04-14T15:34:04.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:04 smithi110 bash[22161]: cluster 2024-04-14T15:34:03.729378+0000 mon.a (mon.0) 1009 : cluster [DBG] osdmap e47: 6 total, 6 up, 6 in 2024-04-14T15:34:04.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:04 smithi110 bash[22161]: audit 2024-04-14T15:34:03.731406+0000 mon.a (mon.0) 1010 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-14T15:34:04.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:04 smithi110 bash[22161]: audit 2024-04-14T15:34:03.734378+0000 mon.a (mon.0) 1011 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-04-14T15:34:04.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:04 smithi110 bash[22161]: audit 2024-04-14T15:34:03.737069+0000 mon.a (mon.0) 1012 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["4"]}]: dispatch 2024-04-14T15:34:04.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:04 smithi047 bash[21449]: cluster 2024-04-14T15:34:02.619836+0000 mgr.a (mgr.14152) 404 : cluster [DBG] pgmap v336: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:34:04.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:04 smithi047 bash[21449]: audit 2024-04-14T15:34:02.726335+0000 mgr.a (mgr.14152) 405 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-14T15:34:04.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:04 smithi047 bash[21449]: audit 2024-04-14T15:34:02.728135+0000 mgr.a (mgr.14152) 406 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-14T15:34:04.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:04 smithi047 bash[21449]: audit 2024-04-14T15:34:02.729748+0000 mgr.a (mgr.14152) 407 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-04-14T15:34:04.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:04 smithi047 bash[21449]: audit 2024-04-14T15:34:03.724182+0000 mon.a (mon.0) 1008 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-04-14T15:34:04.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:04 smithi047 bash[21449]: cluster 2024-04-14T15:34:03.729378+0000 mon.a (mon.0) 1009 : cluster [DBG] osdmap e47: 6 total, 6 up, 6 in 2024-04-14T15:34:04.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:04 smithi047 bash[21449]: audit 2024-04-14T15:34:03.731406+0000 mon.a (mon.0) 1010 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-14T15:34:04.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:04 smithi047 bash[21449]: audit 2024-04-14T15:34:03.734378+0000 mon.a (mon.0) 1011 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-04-14T15:34:04.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:04 smithi047 bash[21449]: audit 2024-04-14T15:34:03.737069+0000 mon.a (mon.0) 1012 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["4"]}]: dispatch 2024-04-14T15:34:05.556 INFO:journalctl@ceph.osd.4.smithi138.stdout:Apr 14 15:34:05 smithi138 systemd[1]: Stopping Ceph osd.4 for af942ef8-fa72-11ee-bc8e-c7b262605968... 2024-04-14T15:34:05.557 INFO:journalctl@ceph.osd.4.smithi138.stdout:Apr 14 15:34:05 smithi138 bash[28739]: debug 2024-04-14T15:34:05.284+0000 7f7d94cf3700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-osd -n osd.4 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug (PID: 1) UID: 0 2024-04-14T15:34:05.557 INFO:journalctl@ceph.osd.4.smithi138.stdout:Apr 14 15:34:05 smithi138 bash[28739]: debug 2024-04-14T15:34:05.284+0000 7f7d94cf3700 -1 osd.4 47 *** Got signal Terminated *** 2024-04-14T15:34:05.557 INFO:journalctl@ceph.osd.4.smithi138.stdout:Apr 14 15:34:05 smithi138 bash[28739]: debug 2024-04-14T15:34:05.284+0000 7f7d94cf3700 -1 osd.4 47 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-04-14T15:34:05.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:05 smithi110 bash[22161]: cephadm 2024-04-14T15:34:03.730501+0000 mgr.a (mgr.14152) 408 : cephadm [INF] osd.5 weight is now 0.0 2024-04-14T15:34:05.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:05 smithi110 bash[22161]: audit 2024-04-14T15:34:03.731824+0000 mgr.a (mgr.14152) 409 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-14T15:34:05.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:05 smithi110 bash[22161]: audit 2024-04-14T15:34:03.734720+0000 mgr.a (mgr.14152) 410 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-04-14T15:34:05.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:05 smithi110 bash[22161]: cluster 2024-04-14T15:34:04.724394+0000 mon.a (mon.0) 1013 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-04-14T15:34:05.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:05 smithi110 bash[22161]: audit 2024-04-14T15:34:04.726642+0000 mon.a (mon.0) 1014 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-04-14T15:34:05.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:05 smithi110 bash[22161]: cluster 2024-04-14T15:34:04.731921+0000 mon.a (mon.0) 1015 : cluster [DBG] osdmap e48: 6 total, 5 up, 6 in 2024-04-14T15:34:05.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:05 smithi047 bash[21449]: cephadm 2024-04-14T15:34:03.730501+0000 mgr.a (mgr.14152) 408 : cephadm [INF] osd.5 weight is now 0.0 2024-04-14T15:34:05.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:05 smithi047 bash[21449]: audit 2024-04-14T15:34:03.731824+0000 mgr.a (mgr.14152) 409 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-14T15:34:05.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:05 smithi047 bash[21449]: audit 2024-04-14T15:34:03.734720+0000 mgr.a (mgr.14152) 410 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-04-14T15:34:05.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:05 smithi047 bash[21449]: cluster 2024-04-14T15:34:04.724394+0000 mon.a (mon.0) 1013 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-04-14T15:34:05.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:05 smithi047 bash[21449]: audit 2024-04-14T15:34:04.726642+0000 mon.a (mon.0) 1014 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-04-14T15:34:05.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:05 smithi047 bash[21449]: cluster 2024-04-14T15:34:04.731921+0000 mon.a (mon.0) 1015 : cluster [DBG] osdmap e48: 6 total, 5 up, 6 in 2024-04-14T15:34:06.556 INFO:journalctl@ceph.osd.4.smithi138.stdout:Apr 14 15:34:06 smithi138 bash[37748]: ceph-af942ef8-fa72-11ee-bc8e-c7b262605968-osd-4 2024-04-14T15:34:06.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:06 smithi110 bash[22161]: cluster 2024-04-14T15:34:04.620358+0000 mgr.a (mgr.14152) 411 : cluster [DBG] pgmap v338: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:34:06.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:06 smithi110 bash[22161]: cephadm 2024-04-14T15:34:04.733282+0000 mgr.a (mgr.14152) 412 : cephadm [INF] osd.4 now down 2024-04-14T15:34:06.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:06 smithi110 bash[22161]: cephadm 2024-04-14T15:34:04.733870+0000 mgr.a (mgr.14152) 413 : cephadm [INF] Removing daemon osd.4 from smithi138 -- ports [] 2024-04-14T15:34:06.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:06 smithi110 bash[22161]: cluster 2024-04-14T15:34:05.733323+0000 mon.a (mon.0) 1016 : cluster [DBG] osdmap e49: 6 total, 5 up, 6 in 2024-04-14T15:34:06.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:06 smithi047 bash[21449]: cluster 2024-04-14T15:34:04.620358+0000 mgr.a (mgr.14152) 411 : cluster [DBG] pgmap v338: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:34:06.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:06 smithi047 bash[21449]: cephadm 2024-04-14T15:34:04.733282+0000 mgr.a (mgr.14152) 412 : cephadm [INF] osd.4 now down 2024-04-14T15:34:06.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:06 smithi047 bash[21449]: cephadm 2024-04-14T15:34:04.733870+0000 mgr.a (mgr.14152) 413 : cephadm [INF] Removing daemon osd.4 from smithi138 -- ports [] 2024-04-14T15:34:06.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:06 smithi047 bash[21449]: cluster 2024-04-14T15:34:05.733323+0000 mon.a (mon.0) 1016 : cluster [DBG] osdmap e49: 6 total, 5 up, 6 in 2024-04-14T15:34:07.056 INFO:journalctl@ceph.osd.4.smithi138.stdout:Apr 14 15:34:06 smithi138 bash[37823]: Error response from daemon: No such container: ceph-af942ef8-fa72-11ee-bc8e-c7b262605968-osd-4 2024-04-14T15:34:08.145 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:07 smithi110 bash[22161]: cluster 2024-04-14T15:34:06.620882+0000 mgr.a (mgr.14152) 414 : cluster [DBG] pgmap v341: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:34:08.146 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:07 smithi110 bash[22161]: cluster 2024-04-14T15:34:06.735825+0000 mon.a (mon.0) 1017 : cluster [DBG] osdmap e50: 6 total, 5 up, 6 in 2024-04-14T15:34:08.206 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:07 smithi047 bash[21449]: cluster 2024-04-14T15:34:06.620882+0000 mgr.a (mgr.14152) 414 : cluster [DBG] pgmap v341: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:34:08.206 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:07 smithi047 bash[21449]: cluster 2024-04-14T15:34:06.735825+0000 mon.a (mon.0) 1017 : cluster [DBG] osdmap e50: 6 total, 5 up, 6 in 2024-04-14T15:34:09.226 INFO:journalctl@ceph.osd.5.smithi138.stdout:Apr 14 15:34:08 smithi138 systemd[1]: /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-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-14T15:34:09.227 INFO:journalctl@ceph.osd.4.smithi138.stdout:Apr 14 15:34:08 smithi138 systemd[1]: ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@osd.4.service: Deactivated successfully. 2024-04-14T15:34:09.227 INFO:journalctl@ceph.osd.4.smithi138.stdout:Apr 14 15:34:08 smithi138 systemd[1]: Stopped Ceph osd.4 for af942ef8-fa72-11ee-bc8e-c7b262605968. 2024-04-14T15:34:09.227 INFO:journalctl@ceph.osd.4.smithi138.stdout:Apr 14 15:34:09 smithi138 systemd[1]: /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-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-14T15:34:10.146 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:09 smithi110 bash[22161]: cluster 2024-04-14T15:34:08.621438+0000 mgr.a (mgr.14152) 415 : cluster [DBG] pgmap v343: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:34:10.146 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:09 smithi110 bash[22161]: cephadm 2024-04-14T15:34:09.161105+0000 mgr.a (mgr.14152) 416 : cephadm [INF] Removing key for osd.4 2024-04-14T15:34:10.146 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:09 smithi110 bash[22161]: audit 2024-04-14T15:34:09.161743+0000 mon.a (mon.0) 1018 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.4"}]: dispatch 2024-04-14T15:34:10.146 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:09 smithi110 bash[22161]: audit 2024-04-14T15:34:09.164552+0000 mon.a (mon.0) 1019 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-04-14T15:34:10.146 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:09 smithi110 bash[22161]: cephadm 2024-04-14T15:34:09.169740+0000 mgr.a (mgr.14152) 417 : cephadm [INF] Successfully removed osd.4 on smithi138 2024-04-14T15:34:10.146 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:09 smithi110 bash[22161]: audit 2024-04-14T15:34:09.170360+0000 mon.a (mon.0) 1020 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]: dispatch 2024-04-14T15:34:10.146 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:09 smithi110 bash[22161]: cluster 2024-04-14T15:34:09.171700+0000 mon.a (mon.0) 1021 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-04-14T15:34:10.146 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:09 smithi110 bash[22161]: cluster 2024-04-14T15:34:09.171780+0000 mon.a (mon.0) 1022 : cluster [INF] Cluster is now healthy 2024-04-14T15:34:10.146 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:09 smithi110 bash[22161]: audit 2024-04-14T15:34:09.173790+0000 mon.a (mon.0) 1023 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-04-14T15:34:10.147 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:09 smithi110 bash[22161]: cluster 2024-04-14T15:34:09.178555+0000 mon.a (mon.0) 1024 : cluster [DBG] osdmap e51: 5 total, 5 up, 5 in 2024-04-14T15:34:10.147 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:09 smithi110 bash[22161]: cephadm 2024-04-14T15:34:09.179722+0000 mgr.a (mgr.14152) 418 : cephadm [INF] Successfully purged osd.4 on smithi138 2024-04-14T15:34:10.147 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:09 smithi110 bash[22161]: cephadm 2024-04-14T15:34:09.179998+0000 mgr.a (mgr.14152) 419 : cephadm [INF] Zapping devices for osd.4 on smithi138 2024-04-14T15:34:10.206 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:09 smithi047 bash[21449]: cluster 2024-04-14T15:34:08.621438+0000 mgr.a (mgr.14152) 415 : cluster [DBG] pgmap v343: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-14T15:34:10.206 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:09 smithi047 bash[21449]: cephadm 2024-04-14T15:34:09.161105+0000 mgr.a (mgr.14152) 416 : cephadm [INF] Removing key for osd.4 2024-04-14T15:34:10.206 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:09 smithi047 bash[21449]: audit 2024-04-14T15:34:09.161743+0000 mon.a (mon.0) 1018 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.4"}]: dispatch 2024-04-14T15:34:10.207 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:09 smithi047 bash[21449]: audit 2024-04-14T15:34:09.164552+0000 mon.a (mon.0) 1019 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-04-14T15:34:10.207 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:09 smithi047 bash[21449]: cephadm 2024-04-14T15:34:09.169740+0000 mgr.a (mgr.14152) 417 : cephadm [INF] Successfully removed osd.4 on smithi138 2024-04-14T15:34:10.207 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:09 smithi047 bash[21449]: audit 2024-04-14T15:34:09.170360+0000 mon.a (mon.0) 1020 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]: dispatch 2024-04-14T15:34:10.207 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:09 smithi047 bash[21449]: cluster 2024-04-14T15:34:09.171700+0000 mon.a (mon.0) 1021 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-04-14T15:34:10.207 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:09 smithi047 bash[21449]: cluster 2024-04-14T15:34:09.171780+0000 mon.a (mon.0) 1022 : cluster [INF] Cluster is now healthy 2024-04-14T15:34:10.207 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:09 smithi047 bash[21449]: audit 2024-04-14T15:34:09.173790+0000 mon.a (mon.0) 1023 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-04-14T15:34:10.207 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:09 smithi047 bash[21449]: cluster 2024-04-14T15:34:09.178555+0000 mon.a (mon.0) 1024 : cluster [DBG] osdmap e51: 5 total, 5 up, 5 in 2024-04-14T15:34:10.207 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:09 smithi047 bash[21449]: cephadm 2024-04-14T15:34:09.179722+0000 mgr.a (mgr.14152) 418 : cephadm [INF] Successfully purged osd.4 on smithi138 2024-04-14T15:34:10.207 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:09 smithi047 bash[21449]: cephadm 2024-04-14T15:34:09.179998+0000 mgr.a (mgr.14152) 419 : cephadm [INF] Zapping devices for osd.4 on smithi138 2024-04-14T15:34:11.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:11 smithi110 bash[22161]: cluster 2024-04-14T15:34:10.180519+0000 mon.a (mon.0) 1025 : cluster [DBG] osdmap e52: 5 total, 5 up, 5 in 2024-04-14T15:34:11.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:11 smithi047 bash[21449]: cluster 2024-04-14T15:34:10.180519+0000 mon.a (mon.0) 1025 : cluster [DBG] osdmap e52: 5 total, 5 up, 5 in 2024-04-14T15:34:12.432 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:12 smithi110 bash[22161]: cluster 2024-04-14T15:34:10.621995+0000 mgr.a (mgr.14152) 420 : cluster [DBG] pgmap v346: 1 pgs: 1 remapped+peering; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:34:12.432 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:12 smithi110 bash[22161]: cluster 2024-04-14T15:34:11.188984+0000 mon.a (mon.0) 1026 : cluster [DBG] osdmap e53: 5 total, 5 up, 5 in 2024-04-14T15:34:12.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:12 smithi047 bash[21449]: cluster 2024-04-14T15:34:10.621995+0000 mgr.a (mgr.14152) 420 : cluster [DBG] pgmap v346: 1 pgs: 1 remapped+peering; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:34:12.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:12 smithi047 bash[21449]: cluster 2024-04-14T15:34:11.188984+0000 mon.a (mon.0) 1026 : cluster [DBG] osdmap e53: 5 total, 5 up, 5 in 2024-04-14T15:34:13.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:13 smithi047 bash[21449]: cluster 2024-04-14T15:34:12.197796+0000 mon.a (mon.0) 1027 : cluster [DBG] osdmap e54: 5 total, 5 up, 5 in 2024-04-14T15:34:13.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:13 smithi110 bash[22161]: cluster 2024-04-14T15:34:12.197796+0000 mon.a (mon.0) 1027 : cluster [DBG] osdmap e54: 5 total, 5 up, 5 in 2024-04-14T15:34:14.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:14 smithi047 bash[21449]: cluster 2024-04-14T15:34:12.622514+0000 mgr.a (mgr.14152) 421 : cluster [DBG] pgmap v349: 1 pgs: 1 remapped+peering; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:34:14.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:14 smithi047 bash[21449]: cluster 2024-04-14T15:34:13.209326+0000 mon.a (mon.0) 1028 : cluster [DBG] osdmap e55: 5 total, 5 up, 5 in 2024-04-14T15:34:14.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:14 smithi110 bash[22161]: cluster 2024-04-14T15:34:12.622514+0000 mgr.a (mgr.14152) 421 : cluster [DBG] pgmap v349: 1 pgs: 1 remapped+peering; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail 2024-04-14T15:34:14.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:14 smithi110 bash[22161]: cluster 2024-04-14T15:34:13.209326+0000 mon.a (mon.0) 1028 : cluster [DBG] osdmap e55: 5 total, 5 up, 5 in 2024-04-14T15:34:15.116 INFO:teuthology.orchestra.run.smithi047.stderr:++ ceph orch ps --hostname smithi138 2024-04-14T15:34:15.482 INFO:teuthology.orchestra.run.smithi047.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-04-14T15:34:15.483 INFO:teuthology.orchestra.run.smithi047.stderr:agent.smithi138 smithi138 running 20s ago 8m - - 2024-04-14T15:34:15.483 INFO:teuthology.orchestra.run.smithi047.stderr:osd.5 smithi138 running (2m) 20s ago 2m 37.2M 19.8G 19.0.0-2778-ga971fd5f b96c509eef84 53042091fab6 ' 2024-04-14T15:34:15.483 INFO:teuthology.orchestra.run.smithi047.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-04-14T15:34:15.483 INFO:teuthology.orchestra.run.smithi047.stderr:agent.smithi138 smithi138 running 20s ago 8m - - 2024-04-14T15:34:15.483 INFO:teuthology.orchestra.run.smithi047.stderr:osd.5 smithi138 running (2m) 20s ago 2m 37.2M 19.8G 19.0.0-2778-ga971fd5f b96c509eef84 53042091fab6 ' '!=' 'No daemons reported' ']' 2024-04-14T15:34:15.483 INFO:teuthology.orchestra.run.smithi047.stderr:+ sleep 15 2024-04-14T15:34:16.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:16 smithi110 bash[22161]: cluster 2024-04-14T15:34:14.623078+0000 mgr.a (mgr.14152) 422 : cluster [DBG] pgmap v351: 1 pgs: 1 active+clean; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail; 130 KiB/s, 0 objects/s recovering 2024-04-14T15:34:16.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:16 smithi110 bash[22161]: audit 2024-04-14T15:34:15.463712+0000 mgr.a (mgr.14152) 423 : audit [DBG] from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi138", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:34:16.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:16 smithi110 bash[22161]: audit 2024-04-14T15:34:15.550807+0000 mon.a (mon.0) 1029 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:16.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:16 smithi110 bash[22161]: audit 2024-04-14T15:34:15.558278+0000 mon.a (mon.0) 1030 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:16.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:16 smithi110 bash[22161]: audit 2024-04-14T15:34:15.567616+0000 mon.a (mon.0) 1031 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:16.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:16 smithi047 bash[21449]: cluster 2024-04-14T15:34:14.623078+0000 mgr.a (mgr.14152) 422 : cluster [DBG] pgmap v351: 1 pgs: 1 active+clean; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail; 130 KiB/s, 0 objects/s recovering 2024-04-14T15:34:16.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:16 smithi047 bash[21449]: audit 2024-04-14T15:34:15.463712+0000 mgr.a (mgr.14152) 423 : audit [DBG] from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi138", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:34:16.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:16 smithi047 bash[21449]: audit 2024-04-14T15:34:15.550807+0000 mon.a (mon.0) 1029 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:16.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:16 smithi047 bash[21449]: audit 2024-04-14T15:34:15.558278+0000 mon.a (mon.0) 1030 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:16.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:16 smithi047 bash[21449]: audit 2024-04-14T15:34:15.567616+0000 mon.a (mon.0) 1031 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:17.904 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:17 smithi047 bash[21449]: debug 2024-04-14T15:34:17.771+0000 7f5b67a35700 -1 mon.a@0(leader).osd e55 definitely_dead 0 2024-04-14T15:34:18.206 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:17 smithi047 bash[21449]: cluster 2024-04-14T15:34:16.623644+0000 mgr.a (mgr.14152) 424 : cluster [DBG] pgmap v352: 1 pgs: 1 active+clean; 577 KiB data, 141 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-04-14T15:34:18.206 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:17 smithi047 bash[21449]: audit 2024-04-14T15:34:16.908939+0000 mon.a (mon.0) 1032 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:18.206 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:17 smithi047 bash[21449]: audit 2024-04-14T15:34:16.915383+0000 mon.a (mon.0) 1033 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:18.207 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:17 smithi047 bash[21449]: audit 2024-04-14T15:34:16.921944+0000 mon.a (mon.0) 1034 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:18.207 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:17 smithi047 bash[21449]: audit 2024-04-14T15:34:17.559334+0000 mon.a (mon.0) 1035 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:18.207 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:17 smithi047 bash[21449]: audit 2024-04-14T15:34:17.563351+0000 mon.a (mon.0) 1036 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:18.207 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:17 smithi047 bash[21449]: audit 2024-04-14T15:34:17.568040+0000 mon.a (mon.0) 1037 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:18.207 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:17 smithi047 bash[21449]: audit 2024-04-14T15:34:17.767870+0000 mon.a (mon.0) 1038 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-14T15:34:18.207 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:17 smithi047 bash[21449]: audit 2024-04-14T15:34:17.771090+0000 mon.a (mon.0) 1039 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-04-14T15:34:18.207 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:17 smithi047 bash[21449]: audit 2024-04-14T15:34:17.773589+0000 mon.a (mon.0) 1040 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["5"]}]: dispatch 2024-04-14T15:34:18.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:17 smithi110 bash[22161]: cluster 2024-04-14T15:34:16.623644+0000 mgr.a (mgr.14152) 424 : cluster [DBG] pgmap v352: 1 pgs: 1 active+clean; 577 KiB data, 141 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-04-14T15:34:18.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:17 smithi110 bash[22161]: audit 2024-04-14T15:34:16.908939+0000 mon.a (mon.0) 1032 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:18.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:17 smithi110 bash[22161]: audit 2024-04-14T15:34:16.915383+0000 mon.a (mon.0) 1033 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:18.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:17 smithi110 bash[22161]: audit 2024-04-14T15:34:16.921944+0000 mon.a (mon.0) 1034 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:18.397 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:17 smithi110 bash[22161]: audit 2024-04-14T15:34:17.559334+0000 mon.a (mon.0) 1035 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:18.397 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:17 smithi110 bash[22161]: audit 2024-04-14T15:34:17.563351+0000 mon.a (mon.0) 1036 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:18.397 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:17 smithi110 bash[22161]: audit 2024-04-14T15:34:17.568040+0000 mon.a (mon.0) 1037 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:18.397 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:17 smithi110 bash[22161]: audit 2024-04-14T15:34:17.767870+0000 mon.a (mon.0) 1038 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-14T15:34:18.397 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:17 smithi110 bash[22161]: audit 2024-04-14T15:34:17.771090+0000 mon.a (mon.0) 1039 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-04-14T15:34:18.397 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:17 smithi110 bash[22161]: audit 2024-04-14T15:34:17.773589+0000 mon.a (mon.0) 1040 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["5"]}]: dispatch 2024-04-14T15:34:18.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:18 smithi047 bash[21449]: cephadm 2024-04-14T15:34:17.767043+0000 mgr.a (mgr.14152) 425 : cephadm [INF] Successfully zapped devices for osd.4 on smithi138 2024-04-14T15:34:18.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:18 smithi047 bash[21449]: audit 2024-04-14T15:34:17.768327+0000 mgr.a (mgr.14152) 426 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-14T15:34:18.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:18 smithi047 bash[21449]: audit 2024-04-14T15:34:17.771440+0000 mgr.a (mgr.14152) 427 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-04-14T15:34:18.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:18 smithi047 bash[21449]: cluster 2024-04-14T15:34:18.566719+0000 mon.a (mon.0) 1041 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-04-14T15:34:18.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:18 smithi047 bash[21449]: cluster 2024-04-14T15:34:18.566767+0000 mon.a (mon.0) 1042 : cluster [WRN] Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-04-14T15:34:18.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:18 smithi047 bash[21449]: audit 2024-04-14T15:34:18.568728+0000 mon.a (mon.0) 1043 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-04-14T15:34:18.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:18 smithi047 bash[21449]: cluster 2024-04-14T15:34:18.574052+0000 mon.a (mon.0) 1044 : cluster [DBG] osdmap e56: 5 total, 4 up, 5 in 2024-04-14T15:34:18.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:18 smithi047 bash[21449]: cephadm 2024-04-14T15:34:18.574960+0000 mgr.a (mgr.14152) 428 : cephadm [INF] osd.5 now down 2024-04-14T15:34:18.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:18 smithi047 bash[21449]: cephadm 2024-04-14T15:34:18.575309+0000 mgr.a (mgr.14152) 429 : cephadm [INF] Removing daemon osd.5 from smithi138 -- ports [] 2024-04-14T15:34:18.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:18 smithi047 bash[21449]: audit 2024-04-14T15:34:18.677876+0000 mon.a (mon.0) 1045 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:18.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:18 smithi047 bash[21449]: audit 2024-04-14T15:34:18.686862+0000 mon.a (mon.0) 1046 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:18.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:18 smithi047 bash[21449]: audit 2024-04-14T15:34:18.696912+0000 mon.a (mon.0) 1047 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:19.306 INFO:journalctl@ceph.osd.5.smithi138.stdout:Apr 14 15:34:18 smithi138 systemd[1]: Stopping Ceph osd.5 for af942ef8-fa72-11ee-bc8e-c7b262605968... 2024-04-14T15:34:19.307 INFO:journalctl@ceph.osd.5.smithi138.stdout:Apr 14 15:34:19 smithi138 bash[32563]: debug 2024-04-14T15:34:19.084+0000 7f5eec1f5700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-osd -n osd.5 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug (PID: 1) UID: 0 2024-04-14T15:34:19.307 INFO:journalctl@ceph.osd.5.smithi138.stdout:Apr 14 15:34:19 smithi138 bash[32563]: debug 2024-04-14T15:34:19.084+0000 7f5eec1f5700 -1 osd.5 55 *** Got signal Terminated *** 2024-04-14T15:34:19.307 INFO:journalctl@ceph.osd.5.smithi138.stdout:Apr 14 15:34:19 smithi138 bash[32563]: debug 2024-04-14T15:34:19.084+0000 7f5eec1f5700 -1 osd.5 55 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-04-14T15:34:19.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:18 smithi110 bash[22161]: cephadm 2024-04-14T15:34:17.767043+0000 mgr.a (mgr.14152) 425 : cephadm [INF] Successfully zapped devices for osd.4 on smithi138 2024-04-14T15:34:19.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:18 smithi110 bash[22161]: audit 2024-04-14T15:34:17.768327+0000 mgr.a (mgr.14152) 426 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-14T15:34:19.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:18 smithi110 bash[22161]: audit 2024-04-14T15:34:17.771440+0000 mgr.a (mgr.14152) 427 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-04-14T15:34:19.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:18 smithi110 bash[22161]: cluster 2024-04-14T15:34:18.566719+0000 mon.a (mon.0) 1041 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-04-14T15:34:19.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:18 smithi110 bash[22161]: cluster 2024-04-14T15:34:18.566767+0000 mon.a (mon.0) 1042 : cluster [WRN] Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-04-14T15:34:19.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:18 smithi110 bash[22161]: audit 2024-04-14T15:34:18.568728+0000 mon.a (mon.0) 1043 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-04-14T15:34:19.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:18 smithi110 bash[22161]: cluster 2024-04-14T15:34:18.574052+0000 mon.a (mon.0) 1044 : cluster [DBG] osdmap e56: 5 total, 4 up, 5 in 2024-04-14T15:34:19.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:18 smithi110 bash[22161]: cephadm 2024-04-14T15:34:18.574960+0000 mgr.a (mgr.14152) 428 : cephadm [INF] osd.5 now down 2024-04-14T15:34:19.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:18 smithi110 bash[22161]: cephadm 2024-04-14T15:34:18.575309+0000 mgr.a (mgr.14152) 429 : cephadm [INF] Removing daemon osd.5 from smithi138 -- ports [] 2024-04-14T15:34:19.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:18 smithi110 bash[22161]: audit 2024-04-14T15:34:18.677876+0000 mon.a (mon.0) 1045 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:19.397 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:18 smithi110 bash[22161]: audit 2024-04-14T15:34:18.686862+0000 mon.a (mon.0) 1046 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:19.397 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:18 smithi110 bash[22161]: audit 2024-04-14T15:34:18.696912+0000 mon.a (mon.0) 1047 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:20.380 INFO:journalctl@ceph.osd.5.smithi138.stdout:Apr 14 15:34:20 smithi138 bash[38540]: ceph-af942ef8-fa72-11ee-bc8e-c7b262605968-osd-5 2024-04-14T15:34:20.380 INFO:journalctl@ceph.osd.5.smithi138.stdout:Apr 14 15:34:20 smithi138 bash[38604]: Error response from daemon: No such container: ceph-af942ef8-fa72-11ee-bc8e-c7b262605968-osd-5 2024-04-14T15:34:20.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:20 smithi110 bash[22161]: cluster 2024-04-14T15:34:18.624029+0000 mgr.a (mgr.14152) 430 : cluster [DBG] pgmap v354: 1 pgs: 1 active+clean; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail; 90 KiB/s, 0 objects/s recovering 2024-04-14T15:34:20.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:20 smithi047 bash[21449]: cluster 2024-04-14T15:34:18.624029+0000 mgr.a (mgr.14152) 430 : cluster [DBG] pgmap v354: 1 pgs: 1 active+clean; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail; 90 KiB/s, 0 objects/s recovering 2024-04-14T15:34:22.306 INFO:journalctl@ceph.osd.5.smithi138.stdout:Apr 14 15:34:22 smithi138 systemd[1]: ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@osd.5.service: Deactivated successfully. 2024-04-14T15:34:22.307 INFO:journalctl@ceph.osd.5.smithi138.stdout:Apr 14 15:34:22 smithi138 systemd[1]: Stopped Ceph osd.5 for af942ef8-fa72-11ee-bc8e-c7b262605968. 2024-04-14T15:34:22.307 INFO:journalctl@ceph.osd.5.smithi138.stdout:Apr 14 15:34:22 smithi138 systemd[1]: /etc/systemd/system/ceph-af942ef8-fa72-11ee-bc8e-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-14T15:34:22.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:22 smithi110 bash[22161]: cluster 2024-04-14T15:34:20.624539+0000 mgr.a (mgr.14152) 431 : cluster [DBG] pgmap v355: 1 pgs: 1 active+clean; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-04-14T15:34:22.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:22 smithi110 bash[22161]: audit 2024-04-14T15:34:22.351492+0000 mon.a (mon.0) 1048 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.5"}]: dispatch 2024-04-14T15:34:22.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:22 smithi110 bash[22161]: audit 2024-04-14T15:34:22.354445+0000 mon.a (mon.0) 1049 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-04-14T15:34:22.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:22 smithi110 bash[22161]: audit 2024-04-14T15:34:22.360214+0000 mon.a (mon.0) 1050 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]: dispatch 2024-04-14T15:34:22.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:22 smithi110 bash[22161]: cluster 2024-04-14T15:34:22.361425+0000 mon.a (mon.0) 1051 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-04-14T15:34:22.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:22 smithi110 bash[22161]: cluster 2024-04-14T15:34:22.361478+0000 mon.a (mon.0) 1052 : cluster [INF] Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-04-14T15:34:22.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:22 smithi110 bash[22161]: cluster 2024-04-14T15:34:22.361508+0000 mon.a (mon.0) 1053 : cluster [INF] Cluster is now healthy 2024-04-14T15:34:22.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:22 smithi110 bash[22161]: audit 2024-04-14T15:34:22.363376+0000 mon.a (mon.0) 1054 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-04-14T15:34:22.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:22 smithi110 bash[22161]: cluster 2024-04-14T15:34:22.368355+0000 mon.a (mon.0) 1055 : cluster [DBG] osdmap e57: 4 total, 4 up, 4 in 2024-04-14T15:34:22.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:22 smithi047 bash[21449]: cluster 2024-04-14T15:34:20.624539+0000 mgr.a (mgr.14152) 431 : cluster [DBG] pgmap v355: 1 pgs: 1 active+clean; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-04-14T15:34:22.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:22 smithi047 bash[21449]: audit 2024-04-14T15:34:22.351492+0000 mon.a (mon.0) 1048 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.5"}]: dispatch 2024-04-14T15:34:22.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:22 smithi047 bash[21449]: audit 2024-04-14T15:34:22.354445+0000 mon.a (mon.0) 1049 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-04-14T15:34:22.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:22 smithi047 bash[21449]: audit 2024-04-14T15:34:22.360214+0000 mon.a (mon.0) 1050 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]: dispatch 2024-04-14T15:34:22.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:22 smithi047 bash[21449]: cluster 2024-04-14T15:34:22.361425+0000 mon.a (mon.0) 1051 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-04-14T15:34:22.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:22 smithi047 bash[21449]: cluster 2024-04-14T15:34:22.361478+0000 mon.a (mon.0) 1052 : cluster [INF] Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-04-14T15:34:22.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:22 smithi047 bash[21449]: cluster 2024-04-14T15:34:22.361508+0000 mon.a (mon.0) 1053 : cluster [INF] Cluster is now healthy 2024-04-14T15:34:22.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:22 smithi047 bash[21449]: audit 2024-04-14T15:34:22.363376+0000 mon.a (mon.0) 1054 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-04-14T15:34:22.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:22 smithi047 bash[21449]: cluster 2024-04-14T15:34:22.368355+0000 mon.a (mon.0) 1055 : cluster [DBG] osdmap e57: 4 total, 4 up, 4 in 2024-04-14T15:34:23.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:23 smithi110 bash[22161]: cephadm 2024-04-14T15:34:22.350854+0000 mgr.a (mgr.14152) 432 : cephadm [INF] Removing key for osd.5 2024-04-14T15:34:23.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:23 smithi110 bash[22161]: cephadm 2024-04-14T15:34:22.359612+0000 mgr.a (mgr.14152) 433 : cephadm [INF] Successfully removed osd.5 on smithi138 2024-04-14T15:34:23.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:23 smithi110 bash[22161]: cephadm 2024-04-14T15:34:22.369573+0000 mgr.a (mgr.14152) 434 : cephadm [INF] Successfully purged osd.5 on smithi138 2024-04-14T15:34:23.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:23 smithi110 bash[22161]: cephadm 2024-04-14T15:34:22.369827+0000 mgr.a (mgr.14152) 435 : cephadm [INF] Zapping devices for osd.5 on smithi138 2024-04-14T15:34:23.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:23 smithi047 bash[21449]: cephadm 2024-04-14T15:34:22.350854+0000 mgr.a (mgr.14152) 432 : cephadm [INF] Removing key for osd.5 2024-04-14T15:34:23.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:23 smithi047 bash[21449]: cephadm 2024-04-14T15:34:22.359612+0000 mgr.a (mgr.14152) 433 : cephadm [INF] Successfully removed osd.5 on smithi138 2024-04-14T15:34:23.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:23 smithi047 bash[21449]: cephadm 2024-04-14T15:34:22.369573+0000 mgr.a (mgr.14152) 434 : cephadm [INF] Successfully purged osd.5 on smithi138 2024-04-14T15:34:23.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:23 smithi047 bash[21449]: cephadm 2024-04-14T15:34:22.369827+0000 mgr.a (mgr.14152) 435 : cephadm [INF] Zapping devices for osd.5 on smithi138 2024-04-14T15:34:24.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:24 smithi110 bash[22161]: cluster 2024-04-14T15:34:22.625090+0000 mgr.a (mgr.14152) 436 : cluster [DBG] pgmap v357: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:34:24.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:24 smithi047 bash[21449]: cluster 2024-04-14T15:34:22.625090+0000 mgr.a (mgr.14152) 436 : cluster [DBG] pgmap v357: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:34:26.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:26 smithi110 bash[22161]: cluster 2024-04-14T15:34:24.625640+0000 mgr.a (mgr.14152) 437 : cluster [DBG] pgmap v358: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:34:26.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:26 smithi047 bash[21449]: cluster 2024-04-14T15:34:24.625640+0000 mgr.a (mgr.14152) 437 : cluster [DBG] pgmap v358: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:34:28.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:28 smithi110 bash[22161]: cluster 2024-04-14T15:34:26.626196+0000 mgr.a (mgr.14152) 438 : cluster [DBG] pgmap v359: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:34:28.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:28 smithi110 bash[22161]: audit 2024-04-14T15:34:28.558609+0000 mon.a (mon.0) 1056 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:28.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:28 smithi047 bash[21449]: cluster 2024-04-14T15:34:26.626196+0000 mgr.a (mgr.14152) 438 : cluster [DBG] pgmap v359: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:34:28.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:28 smithi047 bash[21449]: audit 2024-04-14T15:34:28.558609+0000 mon.a (mon.0) 1056 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:29.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:29 smithi110 bash[22161]: cephadm 2024-04-14T15:34:28.551746+0000 mgr.a (mgr.14152) 439 : cephadm [INF] Successfully zapped devices for osd.5 on smithi138 2024-04-14T15:34:29.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:29 smithi110 bash[22161]: cephadm 2024-04-14T15:34:28.561838+0000 mgr.a (mgr.14152) 440 : cephadm [INF] Removing daemon agent.smithi138 from smithi138 -- ports [] 2024-04-14T15:34:29.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:29 smithi110 bash[22161]: audit 2024-04-14T15:34:29.280843+0000 mon.a (mon.0) 1057 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "client.agent.smithi138"}]: dispatch 2024-04-14T15:34:29.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:29 smithi110 bash[22161]: audit 2024-04-14T15:34:29.283650+0000 mon.a (mon.0) 1058 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "client.agent.smithi138"}]': finished 2024-04-14T15:34:29.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:29 smithi110 bash[22161]: audit 2024-04-14T15:34:29.295400+0000 mon.a (mon.0) 1059 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:29.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:29 smithi110 bash[22161]: audit 2024-04-14T15:34:29.302376+0000 mon.a (mon.0) 1060 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:29.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:29 smithi110 bash[22161]: audit 2024-04-14T15:34:29.405484+0000 mon.a (mon.0) 1061 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:34:29.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:29 smithi047 bash[21449]: cephadm 2024-04-14T15:34:28.551746+0000 mgr.a (mgr.14152) 439 : cephadm [INF] Successfully zapped devices for osd.5 on smithi138 2024-04-14T15:34:29.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:29 smithi047 bash[21449]: cephadm 2024-04-14T15:34:28.561838+0000 mgr.a (mgr.14152) 440 : cephadm [INF] Removing daemon agent.smithi138 from smithi138 -- ports [] 2024-04-14T15:34:29.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:29 smithi047 bash[21449]: audit 2024-04-14T15:34:29.280843+0000 mon.a (mon.0) 1057 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "client.agent.smithi138"}]: dispatch 2024-04-14T15:34:29.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:29 smithi047 bash[21449]: audit 2024-04-14T15:34:29.283650+0000 mon.a (mon.0) 1058 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "client.agent.smithi138"}]': finished 2024-04-14T15:34:29.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:29 smithi047 bash[21449]: audit 2024-04-14T15:34:29.295400+0000 mon.a (mon.0) 1059 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:29.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:29 smithi047 bash[21449]: audit 2024-04-14T15:34:29.302376+0000 mon.a (mon.0) 1060 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:29.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:29 smithi047 bash[21449]: audit 2024-04-14T15:34:29.405484+0000 mon.a (mon.0) 1061 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:34:30.486 INFO:teuthology.orchestra.run.smithi047.stderr:++ ceph orch ps --hostname smithi138 2024-04-14T15:34:30.858 INFO:teuthology.orchestra.run.smithi047.stderr:+ HOST_C_DAEMONS='No daemons reported' 2024-04-14T15:34:30.858 INFO:teuthology.orchestra.run.smithi047.stderr:+ '[' 'No daemons reported' '!=' 'No daemons reported' ']' 2024-04-14T15:34:30.858 INFO:teuthology.orchestra.run.smithi047.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2024-04-14T15:34:30.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:30 smithi110 bash[22161]: cluster 2024-04-14T15:34:28.626767+0000 mgr.a (mgr.14152) 441 : cluster [DBG] pgmap v360: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:34:30.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:30 smithi110 bash[22161]: cephadm 2024-04-14T15:34:29.280246+0000 mgr.a (mgr.14152) 442 : cephadm [INF] Removing key for client.agent.smithi138 2024-04-14T15:34:30.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:30 smithi110 bash[22161]: audit 2024-04-14T15:34:29.985351+0000 mon.a (mon.0) 1062 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:30.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:30 smithi110 bash[22161]: audit 2024-04-14T15:34:29.992279+0000 mon.a (mon.0) 1063 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:30.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:30 smithi047 bash[21449]: cluster 2024-04-14T15:34:28.626767+0000 mgr.a (mgr.14152) 441 : cluster [DBG] pgmap v360: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:34:30.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:30 smithi047 bash[21449]: cephadm 2024-04-14T15:34:29.280246+0000 mgr.a (mgr.14152) 442 : cephadm [INF] Removing key for client.agent.smithi138 2024-04-14T15:34:30.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:30 smithi047 bash[21449]: audit 2024-04-14T15:34:29.985351+0000 mon.a (mon.0) 1062 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:30.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:30 smithi047 bash[21449]: audit 2024-04-14T15:34:29.992279+0000 mon.a (mon.0) 1063 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:31.197 INFO:teuthology.orchestra.run.smithi047.stderr:17 2024-04-14T15:34:31.208 INFO:teuthology.orchestra.run.smithi047.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2024-04-14T15:34:31.227 INFO:teuthology.orchestra.run.smithi047.stderr:++ cat crushmap.txt 2024-04-14T15:34:31.228 INFO:teuthology.orchestra.run.smithi047.stderr:+ CRUSH_MAP='# begin crush map 2024-04-14T15:34:31.228 INFO:teuthology.orchestra.run.smithi047.stderr:tunable choose_local_tries 0 2024-04-14T15:34:31.228 INFO:teuthology.orchestra.run.smithi047.stderr:tunable choose_local_fallback_tries 0 2024-04-14T15:34:31.228 INFO:teuthology.orchestra.run.smithi047.stderr:tunable choose_total_tries 50 2024-04-14T15:34:31.228 INFO:teuthology.orchestra.run.smithi047.stderr:tunable chooseleaf_descend_once 1 2024-04-14T15:34:31.229 INFO:teuthology.orchestra.run.smithi047.stderr:tunable chooseleaf_vary_r 1 2024-04-14T15:34:31.229 INFO:teuthology.orchestra.run.smithi047.stderr:tunable chooseleaf_stable 1 2024-04-14T15:34:31.229 INFO:teuthology.orchestra.run.smithi047.stderr:tunable straw_calc_version 1 2024-04-14T15:34:31.229 INFO:teuthology.orchestra.run.smithi047.stderr:tunable allowed_bucket_algs 54 2024-04-14T15:34:31.229 INFO:teuthology.orchestra.run.smithi047.stderr: 2024-04-14T15:34:31.229 INFO:teuthology.orchestra.run.smithi047.stderr:# devices 2024-04-14T15:34:31.229 INFO:teuthology.orchestra.run.smithi047.stderr:device 0 osd.0 class ssd 2024-04-14T15:34:31.229 INFO:teuthology.orchestra.run.smithi047.stderr:device 1 osd.1 class ssd 2024-04-14T15:34:31.229 INFO:teuthology.orchestra.run.smithi047.stderr:device 2 osd.2 class ssd 2024-04-14T15:34:31.229 INFO:teuthology.orchestra.run.smithi047.stderr:device 3 osd.3 class ssd 2024-04-14T15:34:31.229 INFO:teuthology.orchestra.run.smithi047.stderr: 2024-04-14T15:34:31.229 INFO:teuthology.orchestra.run.smithi047.stderr:# types 2024-04-14T15:34:31.229 INFO:teuthology.orchestra.run.smithi047.stderr:type 0 osd 2024-04-14T15:34:31.230 INFO:teuthology.orchestra.run.smithi047.stderr:type 1 host 2024-04-14T15:34:31.230 INFO:teuthology.orchestra.run.smithi047.stderr:type 2 chassis 2024-04-14T15:34:31.230 INFO:teuthology.orchestra.run.smithi047.stderr:type 3 rack 2024-04-14T15:34:31.230 INFO:teuthology.orchestra.run.smithi047.stderr:type 4 row 2024-04-14T15:34:31.230 INFO:teuthology.orchestra.run.smithi047.stderr:type 5 pdu 2024-04-14T15:34:31.230 INFO:teuthology.orchestra.run.smithi047.stderr:type 6 pod 2024-04-14T15:34:31.230 INFO:teuthology.orchestra.run.smithi047.stderr:type 7 room 2024-04-14T15:34:31.230 INFO:teuthology.orchestra.run.smithi047.stderr:type 8 datacenter 2024-04-14T15:34:31.230 INFO:teuthology.orchestra.run.smithi047.stderr:type 9 zone 2024-04-14T15:34:31.230 INFO:teuthology.orchestra.run.smithi047.stderr:type 10 region 2024-04-14T15:34:31.230 INFO:teuthology.orchestra.run.smithi047.stderr:type 11 root 2024-04-14T15:34:31.230 INFO:teuthology.orchestra.run.smithi047.stderr: 2024-04-14T15:34:31.230 INFO:teuthology.orchestra.run.smithi047.stderr:# buckets 2024-04-14T15:34:31.230 INFO:teuthology.orchestra.run.smithi047.stderr:host smithi047 { 2024-04-14T15:34:31.230 INFO:teuthology.orchestra.run.smithi047.stderr: id -3 # do not change unnecessarily 2024-04-14T15:34:31.231 INFO:teuthology.orchestra.run.smithi047.stderr: id -4 class ssd # do not change unnecessarily 2024-04-14T15:34:31.231 INFO:teuthology.orchestra.run.smithi047.stderr: # weight 0.17459 2024-04-14T15:34:31.231 INFO:teuthology.orchestra.run.smithi047.stderr: alg straw2 2024-04-14T15:34:31.231 INFO:teuthology.orchestra.run.smithi047.stderr: hash 0 # rjenkins1 2024-04-14T15:34:31.231 INFO:teuthology.orchestra.run.smithi047.stderr: item osd.0 weight 0.08730 2024-04-14T15:34:31.231 INFO:teuthology.orchestra.run.smithi047.stderr: item osd.1 weight 0.08730 2024-04-14T15:34:31.231 INFO:teuthology.orchestra.run.smithi047.stderr:} 2024-04-14T15:34:31.231 INFO:teuthology.orchestra.run.smithi047.stderr:host smithi110 { 2024-04-14T15:34:31.231 INFO:teuthology.orchestra.run.smithi047.stderr: id -5 # do not change unnecessarily 2024-04-14T15:34:31.231 INFO:teuthology.orchestra.run.smithi047.stderr: id -6 class ssd # do not change unnecessarily 2024-04-14T15:34:31.231 INFO:teuthology.orchestra.run.smithi047.stderr: # weight 0.17459 2024-04-14T15:34:31.231 INFO:teuthology.orchestra.run.smithi047.stderr: alg straw2 2024-04-14T15:34:31.231 INFO:teuthology.orchestra.run.smithi047.stderr: hash 0 # rjenkins1 2024-04-14T15:34:31.231 INFO:teuthology.orchestra.run.smithi047.stderr: item osd.2 weight 0.08730 2024-04-14T15:34:31.232 INFO:teuthology.orchestra.run.smithi047.stderr: item osd.3 weight 0.08730 2024-04-14T15:34:31.232 INFO:teuthology.orchestra.run.smithi047.stderr:} 2024-04-14T15:34:31.232 INFO:teuthology.orchestra.run.smithi047.stderr:host smithi138 { 2024-04-14T15:34:31.232 INFO:teuthology.orchestra.run.smithi047.stderr: id -7 # do not change unnecessarily 2024-04-14T15:34:31.232 INFO:teuthology.orchestra.run.smithi047.stderr: id -8 class ssd # do not change unnecessarily 2024-04-14T15:34:31.232 INFO:teuthology.orchestra.run.smithi047.stderr: # weight 0.00000 2024-04-14T15:34:31.232 INFO:teuthology.orchestra.run.smithi047.stderr: alg straw2 2024-04-14T15:34:31.232 INFO:teuthology.orchestra.run.smithi047.stderr: hash 0 # rjenkins1 2024-04-14T15:34:31.232 INFO:teuthology.orchestra.run.smithi047.stderr:} 2024-04-14T15:34:31.232 INFO:teuthology.orchestra.run.smithi047.stderr:root default { 2024-04-14T15:34:31.232 INFO:teuthology.orchestra.run.smithi047.stderr: id -1 # do not change unnecessarily 2024-04-14T15:34:31.232 INFO:teuthology.orchestra.run.smithi047.stderr: id -2 class ssd # do not change unnecessarily 2024-04-14T15:34:31.232 INFO:teuthology.orchestra.run.smithi047.stderr: # weight 0.34918 2024-04-14T15:34:31.232 INFO:teuthology.orchestra.run.smithi047.stderr: alg straw2 2024-04-14T15:34:31.233 INFO:teuthology.orchestra.run.smithi047.stderr: hash 0 # rjenkins1 2024-04-14T15:34:31.233 INFO:teuthology.orchestra.run.smithi047.stderr: item smithi047 weight 0.17459 2024-04-14T15:34:31.233 INFO:teuthology.orchestra.run.smithi047.stderr: item smithi110 weight 0.17459 2024-04-14T15:34:31.233 INFO:teuthology.orchestra.run.smithi047.stderr: item smithi138 weight 0.00000 2024-04-14T15:34:31.233 INFO:teuthology.orchestra.run.smithi047.stderr:} 2024-04-14T15:34:31.233 INFO:teuthology.orchestra.run.smithi047.stderr: 2024-04-14T15:34:31.233 INFO:teuthology.orchestra.run.smithi047.stderr:# rules 2024-04-14T15:34:31.233 INFO:teuthology.orchestra.run.smithi047.stderr:rule replicated_rule { 2024-04-14T15:34:31.233 INFO:teuthology.orchestra.run.smithi047.stderr: id 0 2024-04-14T15:34:31.233 INFO:teuthology.orchestra.run.smithi047.stderr: type replicated 2024-04-14T15:34:31.233 INFO:teuthology.orchestra.run.smithi047.stderr: step take default 2024-04-14T15:34:31.233 INFO:teuthology.orchestra.run.smithi047.stderr: step choose firstn 0 type osd 2024-04-14T15:34:31.233 INFO:teuthology.orchestra.run.smithi047.stderr: step emit 2024-04-14T15:34:31.233 INFO:teuthology.orchestra.run.smithi047.stderr:} 2024-04-14T15:34:31.234 INFO:teuthology.orchestra.run.smithi047.stderr: 2024-04-14T15:34:31.234 INFO:teuthology.orchestra.run.smithi047.stderr:# end crush map' 2024-04-14T15:34:31.234 INFO:teuthology.orchestra.run.smithi047.stderr:+ grep -q smithi138 2024-04-14T15:34:31.234 INFO:teuthology.orchestra.run.smithi047.stderr:+ ceph orch host rm smithi138 --rm-crush-entry 2024-04-14T15:34:31.963 INFO:teuthology.orchestra.run.smithi047.stdout:Removed host 'smithi138' 2024-04-14T15:34:31.984 INFO:teuthology.orchestra.run.smithi047.stderr:+ sleep 30 2024-04-14T15:34:32.112 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:31 smithi110 bash[22161]: cluster 2024-04-14T15:34:30.627111+0000 mgr.a (mgr.14152) 443 : cluster [DBG] pgmap v361: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:34:32.113 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:31 smithi110 bash[22161]: audit 2024-04-14T15:34:30.846129+0000 mgr.a (mgr.14152) 444 : audit [DBG] from='client.14506 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi138", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:34:32.113 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:31 smithi110 bash[22161]: audit 2024-04-14T15:34:30.935400+0000 mon.a (mon.0) 1064 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:32.113 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:31 smithi110 bash[22161]: audit 2024-04-14T15:34:30.942937+0000 mon.a (mon.0) 1065 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:32.113 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:31 smithi110 bash[22161]: audit 2024-04-14T15:34:31.199048+0000 mon.a (mon.0) 1066 : audit [DBG] from='client.? 172.21.15.47:0/784255841' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-04-14T15:34:32.113 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:31 smithi110 bash[22161]: audit 2024-04-14T15:34:31.576579+0000 mgr.a (mgr.14152) 445 : audit [DBG] from='client.14514 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi138", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:34:32.113 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:31 smithi110 bash[22161]: audit 2024-04-14T15:34:31.577461+0000 mon.a (mon.0) 1067 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd crush remove", "name": "smithi138"}]: dispatch 2024-04-14T15:34:32.206 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:31 smithi047 bash[21449]: cluster 2024-04-14T15:34:30.627111+0000 mgr.a (mgr.14152) 443 : cluster [DBG] pgmap v361: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:34:32.206 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:31 smithi047 bash[21449]: audit 2024-04-14T15:34:30.846129+0000 mgr.a (mgr.14152) 444 : audit [DBG] from='client.14506 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi138", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:34:32.206 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:31 smithi047 bash[21449]: audit 2024-04-14T15:34:30.935400+0000 mon.a (mon.0) 1064 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:32.206 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:31 smithi047 bash[21449]: audit 2024-04-14T15:34:30.942937+0000 mon.a (mon.0) 1065 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:32.206 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:31 smithi047 bash[21449]: audit 2024-04-14T15:34:31.199048+0000 mon.a (mon.0) 1066 : audit [DBG] from='client.? 172.21.15.47:0/784255841' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-04-14T15:34:32.207 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:31 smithi047 bash[21449]: audit 2024-04-14T15:34:31.576579+0000 mgr.a (mgr.14152) 445 : audit [DBG] from='client.14514 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi138", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T15:34:32.207 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:31 smithi047 bash[21449]: audit 2024-04-14T15:34:31.577461+0000 mon.a (mon.0) 1067 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "osd crush remove", "name": "smithi138"}]: dispatch 2024-04-14T15:34:32.207 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:34:31 smithi047 bash[21702]: debug 2024-04-14T15:34:31.963+0000 7f8067298700 -1 log_channel(cephadm) log [ERR] : host smithi138 `cephadm ceph-volume` failed: Cannot decode JSON: 2024-04-14T15:34:32.207 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:34:31 smithi047 bash[21702]: Traceback (most recent call last): 2024-04-14T15:34:32.207 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:34:31 smithi047 bash[21702]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1530, in _run_cephadm_json 2024-04-14T15:34:32.207 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:34:31 smithi047 bash[21702]: return json.loads(''.join(out)) 2024-04-14T15:34:32.207 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:34:31 smithi047 bash[21702]: File "/lib64/python3.6/json/__init__.py", line 354, in loads 2024-04-14T15:34:32.208 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:34:31 smithi047 bash[21702]: return _default_decoder.decode(s) 2024-04-14T15:34:32.208 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:34:31 smithi047 bash[21702]: File "/lib64/python3.6/json/decoder.py", line 339, in decode 2024-04-14T15:34:32.208 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:34:31 smithi047 bash[21702]: obj, end = self.raw_decode(s, idx=_w(s, 0).end()) 2024-04-14T15:34:32.208 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:34:31 smithi047 bash[21702]: File "/lib64/python3.6/json/decoder.py", line 357, in raw_decode 2024-04-14T15:34:32.208 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:34:31 smithi047 bash[21702]: raise JSONDecodeError("Expecting value", s, err.value) from None 2024-04-14T15:34:32.208 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:34:31 smithi047 bash[21702]: json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0) 2024-04-14T15:34:32.208 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21702]: debug 2024-04-14T15:34:32.011+0000 7f806d2a4700 -1 log_channel(cephadm) log [ERR] : executing refresh((['smithi047', 'smithi110', 'smithi138'],)) failed. 2024-04-14T15:34:32.208 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21702]: Traceback (most recent call last): 2024-04-14T15:34:32.208 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21702]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 97, in do_work 2024-04-14T15:34:32.208 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21702]: return f(*arg) 2024-04-14T15:34:32.208 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21702]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 316, in refresh 2024-04-14T15:34:32.208 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21702]: and not self.mgr.inventory.has_label(host, SpecialHostLabels.NO_MEMORY_AUTOTUNE) 2024-04-14T15:34:32.208 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21702]: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 168, in has_label 2024-04-14T15:34:32.209 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21702]: host = self._get_stored_name(host) 2024-04-14T15:34:32.209 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21702]: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 105, in _get_stored_name 2024-04-14T15:34:32.209 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21702]: self.assert_host(host) 2024-04-14T15:34:32.209 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21702]: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 124, in assert_host 2024-04-14T15:34:32.209 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21702]: raise OrchestratorError('host %s does not exist' % host) 2024-04-14T15:34:32.209 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21702]: orchestrator._interface.OrchestratorError: host smithi138 does not exist 2024-04-14T15:34:33.146 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:32 smithi110 bash[22161]: audit 2024-04-14T15:34:31.941855+0000 mon.a (mon.0) 1068 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi138"}]': finished 2024-04-14T15:34:33.146 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:32 smithi110 bash[22161]: cluster 2024-04-14T15:34:31.946519+0000 mon.a (mon.0) 1069 : cluster [DBG] osdmap e58: 4 total, 4 up, 4 in 2024-04-14T15:34:33.146 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:32 smithi110 bash[22161]: audit 2024-04-14T15:34:31.953502+0000 mon.a (mon.0) 1070 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:33.147 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:32 smithi110 bash[22161]: audit 2024-04-14T15:34:31.954725+0000 mon.a (mon.0) 1071 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi138"}]: dispatch 2024-04-14T15:34:33.147 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:32 smithi110 bash[22161]: audit 2024-04-14T15:34:31.959762+0000 mon.a (mon.0) 1072 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi138"}]': finished 2024-04-14T15:34:33.147 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:32 smithi110 bash[22161]: cephadm 2024-04-14T15:34:31.967333+0000 mgr.a (mgr.14152) 446 : cephadm [ERR] host smithi138 `cephadm ceph-volume` failed: Cannot decode JSON: 2024-04-14T15:34:33.147 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:32 smithi110 bash[22161]: Traceback (most recent call last): 2024-04-14T15:34:33.147 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:32 smithi110 bash[22161]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1530, in _run_cephadm_json 2024-04-14T15:34:33.147 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:32 smithi110 bash[22161]: return json.loads(''.join(out)) 2024-04-14T15:34:33.147 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:32 smithi110 bash[22161]: File "/lib64/python3.6/json/__init__.py", line 354, in loads 2024-04-14T15:34:33.147 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:32 smithi110 bash[22161]: return _default_decoder.decode(s) 2024-04-14T15:34:33.147 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:32 smithi110 bash[22161]: File "/lib64/python3.6/json/decoder.py", line 339, in decode 2024-04-14T15:34:33.147 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:32 smithi110 bash[22161]: obj, end = self.raw_decode(s, idx=_w(s, 0).end()) 2024-04-14T15:34:33.148 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:32 smithi110 bash[22161]: File "/lib64/python3.6/json/decoder.py", line 357, in raw_decode 2024-04-14T15:34:33.148 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:32 smithi110 bash[22161]: raise JSONDecodeError("Expecting value", s, err.value) from None 2024-04-14T15:34:33.148 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:32 smithi110 bash[22161]: json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0) 2024-04-14T15:34:33.148 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:32 smithi110 bash[22161]: cephadm 2024-04-14T15:34:31.968225+0000 mgr.a (mgr.14152) 447 : cephadm [INF] Removed host smithi138 2024-04-14T15:34:33.148 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:32 smithi110 bash[22161]: audit 2024-04-14T15:34:31.990773+0000 mon.a (mon.0) 1073 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:33.148 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:32 smithi110 bash[22161]: cephadm 2024-04-14T15:34:32.012098+0000 mgr.a (mgr.14152) 448 : cephadm [ERR] executing refresh((['smithi047', 'smithi110', 'smithi138'],)) failed. 2024-04-14T15:34:33.148 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:32 smithi110 bash[22161]: Traceback (most recent call last): 2024-04-14T15:34:33.148 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:32 smithi110 bash[22161]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 97, in do_work 2024-04-14T15:34:33.148 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:32 smithi110 bash[22161]: return f(*arg) 2024-04-14T15:34:33.148 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:32 smithi110 bash[22161]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 316, in refresh 2024-04-14T15:34:33.148 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:32 smithi110 bash[22161]: and not self.mgr.inventory.has_label(host, SpecialHostLabels.NO_MEMORY_AUTOTUNE) 2024-04-14T15:34:33.149 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:32 smithi110 bash[22161]: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 168, in has_label 2024-04-14T15:34:33.149 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:32 smithi110 bash[22161]: host = self._get_stored_name(host) 2024-04-14T15:34:33.149 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:32 smithi110 bash[22161]: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 105, in _get_stored_name 2024-04-14T15:34:33.149 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:32 smithi110 bash[22161]: self.assert_host(host) 2024-04-14T15:34:33.149 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:32 smithi110 bash[22161]: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 124, in assert_host 2024-04-14T15:34:33.149 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:32 smithi110 bash[22161]: raise OrchestratorError('host %s does not exist' % host) 2024-04-14T15:34:33.149 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:32 smithi110 bash[22161]: orchestrator._interface.OrchestratorError: host smithi138 does not exist 2024-04-14T15:34:33.149 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:32 smithi110 bash[22161]: audit 2024-04-14T15:34:32.012966+0000 mon.a (mon.0) 1074 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:34:33.149 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:32 smithi110 bash[22161]: audit 2024-04-14T15:34:32.017314+0000 mon.a (mon.0) 1075 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:34:33.149 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:32 smithi110 bash[22161]: audit 2024-04-14T15:34:32.018575+0000 mon.a (mon.0) 1076 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:34:33.149 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:32 smithi110 bash[22161]: cluster 2024-04-14T15:34:32.021225+0000 mgr.a (mgr.14152) 449 : cluster [DBG] pgmap v363: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:34:33.149 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:32 smithi110 bash[22161]: audit 2024-04-14T15:34:32.025584+0000 mon.a (mon.0) 1077 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:33.150 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:32 smithi110 bash[22161]: cephadm 2024-04-14T15:34:32.096724+0000 mgr.a (mgr.14152) 450 : cephadm [INF] Reconfiguring mon.a (monmap changed)... 2024-04-14T15:34:33.150 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:32 smithi110 bash[22161]: audit 2024-04-14T15:34:32.097446+0000 mon.a (mon.0) 1078 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-14T15:34:33.150 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:32 smithi110 bash[22161]: audit 2024-04-14T15:34:32.099143+0000 mon.a (mon.0) 1079 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-14T15:34:33.150 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:32 smithi110 bash[22161]: audit 2024-04-14T15:34:32.101016+0000 mon.a (mon.0) 1080 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:34:33.150 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:32 smithi110 bash[22161]: cephadm 2024-04-14T15:34:32.103136+0000 mgr.a (mgr.14152) 451 : cephadm [INF] Reconfiguring daemon mon.a on smithi047 2024-04-14T15:34:33.207 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21449]: audit 2024-04-14T15:34:31.941855+0000 mon.a (mon.0) 1068 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi138"}]': finished 2024-04-14T15:34:33.207 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21449]: cluster 2024-04-14T15:34:31.946519+0000 mon.a (mon.0) 1069 : cluster [DBG] osdmap e58: 4 total, 4 up, 4 in 2024-04-14T15:34:33.207 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21449]: audit 2024-04-14T15:34:31.953502+0000 mon.a (mon.0) 1070 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:33.207 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21449]: audit 2024-04-14T15:34:31.954725+0000 mon.a (mon.0) 1071 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi138"}]: dispatch 2024-04-14T15:34:33.208 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21449]: audit 2024-04-14T15:34:31.959762+0000 mon.a (mon.0) 1072 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi138"}]': finished 2024-04-14T15:34:33.208 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21449]: cephadm 2024-04-14T15:34:31.967333+0000 mgr.a (mgr.14152) 446 : cephadm [ERR] host smithi138 `cephadm ceph-volume` failed: Cannot decode JSON: 2024-04-14T15:34:33.208 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21449]: Traceback (most recent call last): 2024-04-14T15:34:33.208 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21449]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1530, in _run_cephadm_json 2024-04-14T15:34:33.208 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21449]: return json.loads(''.join(out)) 2024-04-14T15:34:33.208 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21449]: File "/lib64/python3.6/json/__init__.py", line 354, in loads 2024-04-14T15:34:33.208 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21449]: return _default_decoder.decode(s) 2024-04-14T15:34:33.208 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21449]: File "/lib64/python3.6/json/decoder.py", line 339, in decode 2024-04-14T15:34:33.208 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21449]: obj, end = self.raw_decode(s, idx=_w(s, 0).end()) 2024-04-14T15:34:33.208 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21449]: File "/lib64/python3.6/json/decoder.py", line 357, in raw_decode 2024-04-14T15:34:33.208 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21449]: raise JSONDecodeError("Expecting value", s, err.value) from None 2024-04-14T15:34:33.209 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21449]: json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0) 2024-04-14T15:34:33.209 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21449]: cephadm 2024-04-14T15:34:31.968225+0000 mgr.a (mgr.14152) 447 : cephadm [INF] Removed host smithi138 2024-04-14T15:34:33.209 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21449]: audit 2024-04-14T15:34:31.990773+0000 mon.a (mon.0) 1073 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:33.209 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21449]: cephadm 2024-04-14T15:34:32.012098+0000 mgr.a (mgr.14152) 448 : cephadm [ERR] executing refresh((['smithi047', 'smithi110', 'smithi138'],)) failed. 2024-04-14T15:34:33.209 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21449]: Traceback (most recent call last): 2024-04-14T15:34:33.209 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21449]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 97, in do_work 2024-04-14T15:34:33.209 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21449]: return f(*arg) 2024-04-14T15:34:33.209 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21449]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 316, in refresh 2024-04-14T15:34:33.209 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21449]: and not self.mgr.inventory.has_label(host, SpecialHostLabels.NO_MEMORY_AUTOTUNE) 2024-04-14T15:34:33.209 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21449]: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 168, in has_label 2024-04-14T15:34:33.209 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21449]: host = self._get_stored_name(host) 2024-04-14T15:34:33.209 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21449]: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 105, in _get_stored_name 2024-04-14T15:34:33.209 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21449]: self.assert_host(host) 2024-04-14T15:34:33.209 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21449]: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 124, in assert_host 2024-04-14T15:34:33.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21449]: raise OrchestratorError('host %s does not exist' % host) 2024-04-14T15:34:33.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21449]: orchestrator._interface.OrchestratorError: host smithi138 does not exist 2024-04-14T15:34:33.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21449]: audit 2024-04-14T15:34:32.012966+0000 mon.a (mon.0) 1074 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T15:34:33.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21449]: audit 2024-04-14T15:34:32.017314+0000 mon.a (mon.0) 1075 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:34:33.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21449]: audit 2024-04-14T15:34:32.018575+0000 mon.a (mon.0) 1076 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T15:34:33.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21449]: cluster 2024-04-14T15:34:32.021225+0000 mgr.a (mgr.14152) 449 : cluster [DBG] pgmap v363: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:34:33.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21449]: audit 2024-04-14T15:34:32.025584+0000 mon.a (mon.0) 1077 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:33.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21449]: cephadm 2024-04-14T15:34:32.096724+0000 mgr.a (mgr.14152) 450 : cephadm [INF] Reconfiguring mon.a (monmap changed)... 2024-04-14T15:34:33.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21449]: audit 2024-04-14T15:34:32.097446+0000 mon.a (mon.0) 1078 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-14T15:34:33.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21449]: audit 2024-04-14T15:34:32.099143+0000 mon.a (mon.0) 1079 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-14T15:34:33.210 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21449]: audit 2024-04-14T15:34:32.101016+0000 mon.a (mon.0) 1080 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:34:33.211 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:32 smithi047 bash[21449]: cephadm 2024-04-14T15:34:32.103136+0000 mgr.a (mgr.14152) 451 : cephadm [INF] Reconfiguring daemon mon.a on smithi047 2024-04-14T15:34:34.206 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:33 smithi047 bash[21449]: cluster 2024-04-14T15:34:32.987459+0000 mon.a (mon.0) 1081 : cluster [WRN] Health check failed: 1 stray host(s) with 1 daemon(s) not managed by cephadm (CEPHADM_STRAY_HOST) 2024-04-14T15:34:34.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:33 smithi110 bash[22161]: cluster 2024-04-14T15:34:32.987459+0000 mon.a (mon.0) 1081 : cluster [WRN] Health check failed: 1 stray host(s) with 1 daemon(s) not managed by cephadm (CEPHADM_STRAY_HOST) 2024-04-14T15:34:35.556 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:35 smithi047 bash[21449]: cluster 2024-04-14T15:34:34.021746+0000 mgr.a (mgr.14152) 452 : cluster [DBG] pgmap v364: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:34:35.556 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:35 smithi047 bash[21449]: audit 2024-04-14T15:34:34.267214+0000 mon.a (mon.0) 1082 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:35.556 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:35 smithi047 bash[21449]: audit 2024-04-14T15:34:34.272268+0000 mon.a (mon.0) 1083 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:35.556 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:35 smithi047 bash[21449]: cephadm 2024-04-14T15:34:34.275529+0000 mgr.a (mgr.14152) 453 : cephadm [INF] Reconfiguring mgr.a (monmap changed)... 2024-04-14T15:34:35.556 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:35 smithi047 bash[21449]: audit 2024-04-14T15:34:34.275879+0000 mon.a (mon.0) 1084 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-14T15:34:35.556 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:35 smithi047 bash[21449]: audit 2024-04-14T15:34:34.276868+0000 mon.a (mon.0) 1085 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-14T15:34:35.556 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:35 smithi047 bash[21449]: audit 2024-04-14T15:34:34.277603+0000 mon.a (mon.0) 1086 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:34:35.557 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:35 smithi047 bash[21449]: cephadm 2024-04-14T15:34:34.278458+0000 mgr.a (mgr.14152) 454 : cephadm [INF] Reconfiguring daemon mgr.a on smithi047 2024-04-14T15:34:35.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:35 smithi110 bash[22161]: cluster 2024-04-14T15:34:34.021746+0000 mgr.a (mgr.14152) 452 : cluster [DBG] pgmap v364: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:34:35.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:35 smithi110 bash[22161]: audit 2024-04-14T15:34:34.267214+0000 mon.a (mon.0) 1082 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:35.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:35 smithi110 bash[22161]: audit 2024-04-14T15:34:34.272268+0000 mon.a (mon.0) 1083 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:35.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:35 smithi110 bash[22161]: cephadm 2024-04-14T15:34:34.275529+0000 mgr.a (mgr.14152) 453 : cephadm [INF] Reconfiguring mgr.a (monmap changed)... 2024-04-14T15:34:35.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:35 smithi110 bash[22161]: audit 2024-04-14T15:34:34.275879+0000 mon.a (mon.0) 1084 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-14T15:34:35.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:35 smithi110 bash[22161]: audit 2024-04-14T15:34:34.276868+0000 mon.a (mon.0) 1085 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-14T15:34:35.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:35 smithi110 bash[22161]: audit 2024-04-14T15:34:34.277603+0000 mon.a (mon.0) 1086 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:34:35.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:35 smithi110 bash[22161]: cephadm 2024-04-14T15:34:34.278458+0000 mgr.a (mgr.14152) 454 : cephadm [INF] Reconfiguring daemon mgr.a on smithi047 2024-04-14T15:34:37.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:37 smithi110 bash[22161]: cluster 2024-04-14T15:34:36.022325+0000 mgr.a (mgr.14152) 455 : cluster [DBG] pgmap v365: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:34:37.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:37 smithi110 bash[22161]: audit 2024-04-14T15:34:36.669630+0000 mon.a (mon.0) 1087 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:37.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:37 smithi110 bash[22161]: audit 2024-04-14T15:34:36.675501+0000 mon.a (mon.0) 1088 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:37.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:37 smithi110 bash[22161]: audit 2024-04-14T15:34:36.698749+0000 mon.a (mon.0) 1089 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-04-14T15:34:37.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:37 smithi110 bash[22161]: audit 2024-04-14T15:34:36.700318+0000 mon.a (mon.0) 1090 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:34:37.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:37 smithi110 bash[22161]: audit 2024-04-14T15:34:37.132098+0000 mon.a (mon.0) 1091 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:37.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:37 smithi110 bash[22161]: audit 2024-04-14T15:34:37.138083+0000 mon.a (mon.0) 1092 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:37.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:37 smithi110 bash[22161]: audit 2024-04-14T15:34:37.144808+0000 mon.a (mon.0) 1093 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:37.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:37 smithi047 bash[21449]: cluster 2024-04-14T15:34:36.022325+0000 mgr.a (mgr.14152) 455 : cluster [DBG] pgmap v365: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:34:37.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:37 smithi047 bash[21449]: audit 2024-04-14T15:34:36.669630+0000 mon.a (mon.0) 1087 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:37.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:37 smithi047 bash[21449]: audit 2024-04-14T15:34:36.675501+0000 mon.a (mon.0) 1088 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:37.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:37 smithi047 bash[21449]: audit 2024-04-14T15:34:36.698749+0000 mon.a (mon.0) 1089 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-04-14T15:34:37.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:37 smithi047 bash[21449]: audit 2024-04-14T15:34:36.700318+0000 mon.a (mon.0) 1090 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:34:37.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:37 smithi047 bash[21449]: audit 2024-04-14T15:34:37.132098+0000 mon.a (mon.0) 1091 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:37.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:37 smithi047 bash[21449]: audit 2024-04-14T15:34:37.138083+0000 mon.a (mon.0) 1092 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:37.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:37 smithi047 bash[21449]: audit 2024-04-14T15:34:37.144808+0000 mon.a (mon.0) 1093 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:38.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:38 smithi047 bash[21449]: cephadm 2024-04-14T15:34:36.698187+0000 mgr.a (mgr.14152) 456 : cephadm [INF] Reconfiguring osd.0 (monmap changed)... 2024-04-14T15:34:38.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:38 smithi047 bash[21449]: cephadm 2024-04-14T15:34:36.702679+0000 mgr.a (mgr.14152) 457 : cephadm [INF] Reconfiguring daemon osd.0 on smithi047 2024-04-14T15:34:38.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:38 smithi110 bash[22161]: cephadm 2024-04-14T15:34:36.698187+0000 mgr.a (mgr.14152) 456 : cephadm [INF] Reconfiguring osd.0 (monmap changed)... 2024-04-14T15:34:38.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:38 smithi110 bash[22161]: cephadm 2024-04-14T15:34:36.702679+0000 mgr.a (mgr.14152) 457 : cephadm [INF] Reconfiguring daemon osd.0 on smithi047 2024-04-14T15:34:39.625 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:39 smithi047 bash[21449]: cluster 2024-04-14T15:34:38.022860+0000 mgr.a (mgr.14152) 458 : cluster [DBG] pgmap v366: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:34:39.625 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:39 smithi047 bash[21449]: audit 2024-04-14T15:34:38.873502+0000 mon.a (mon.0) 1094 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:39.625 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:39 smithi047 bash[21449]: audit 2024-04-14T15:34:38.879782+0000 mon.a (mon.0) 1095 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:39.625 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:39 smithi047 bash[21449]: audit 2024-04-14T15:34:38.886099+0000 mon.a (mon.0) 1096 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:39.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:39 smithi110 bash[22161]: cluster 2024-04-14T15:34:38.022860+0000 mgr.a (mgr.14152) 458 : cluster [DBG] pgmap v366: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:34:39.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:39 smithi110 bash[22161]: audit 2024-04-14T15:34:38.873502+0000 mon.a (mon.0) 1094 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:39.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:39 smithi110 bash[22161]: audit 2024-04-14T15:34:38.879782+0000 mon.a (mon.0) 1095 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:39.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:39 smithi110 bash[22161]: audit 2024-04-14T15:34:38.886099+0000 mon.a (mon.0) 1096 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:41.811 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:41 smithi047 bash[21449]: cluster 2024-04-14T15:34:40.023392+0000 mgr.a (mgr.14152) 459 : cluster [DBG] pgmap v367: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:34:41.811 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:41 smithi047 bash[21449]: audit 2024-04-14T15:34:40.554503+0000 mon.a (mon.0) 1097 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:41.811 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:41 smithi047 bash[21449]: audit 2024-04-14T15:34:40.563392+0000 mon.a (mon.0) 1098 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:41.811 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:41 smithi047 bash[21449]: cephadm 2024-04-14T15:34:40.574732+0000 mgr.a (mgr.14152) 460 : cephadm [INF] Reconfiguring osd.1 (monmap changed)... 2024-04-14T15:34:41.811 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:41 smithi047 bash[21449]: audit 2024-04-14T15:34:40.575460+0000 mon.a (mon.0) 1099 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-04-14T15:34:41.811 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:41 smithi047 bash[21449]: audit 2024-04-14T15:34:40.577125+0000 mon.a (mon.0) 1100 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:34:41.811 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:41 smithi047 bash[21449]: cephadm 2024-04-14T15:34:40.580032+0000 mgr.a (mgr.14152) 461 : cephadm [INF] Reconfiguring daemon osd.1 on smithi047 2024-04-14T15:34:41.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:41 smithi110 bash[22161]: cluster 2024-04-14T15:34:40.023392+0000 mgr.a (mgr.14152) 459 : cluster [DBG] pgmap v367: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:34:41.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:41 smithi110 bash[22161]: audit 2024-04-14T15:34:40.554503+0000 mon.a (mon.0) 1097 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:41.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:41 smithi110 bash[22161]: audit 2024-04-14T15:34:40.563392+0000 mon.a (mon.0) 1098 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:41.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:41 smithi110 bash[22161]: cephadm 2024-04-14T15:34:40.574732+0000 mgr.a (mgr.14152) 460 : cephadm [INF] Reconfiguring osd.1 (monmap changed)... 2024-04-14T15:34:41.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:41 smithi110 bash[22161]: audit 2024-04-14T15:34:40.575460+0000 mon.a (mon.0) 1099 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-04-14T15:34:41.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:41 smithi110 bash[22161]: audit 2024-04-14T15:34:40.577125+0000 mon.a (mon.0) 1100 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:34:41.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:41 smithi110 bash[22161]: cephadm 2024-04-14T15:34:40.580032+0000 mgr.a (mgr.14152) 461 : cephadm [INF] Reconfiguring daemon osd.1 on smithi047 2024-04-14T15:34:43.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:43 smithi110 bash[22161]: cluster 2024-04-14T15:34:42.024011+0000 mgr.a (mgr.14152) 462 : cluster [DBG] pgmap v368: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:34:43.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:43 smithi110 bash[22161]: audit 2024-04-14T15:34:42.598946+0000 mon.a (mon.0) 1101 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:43.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:43 smithi110 bash[22161]: audit 2024-04-14T15:34:42.607489+0000 mon.a (mon.0) 1102 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:43.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:43 smithi110 bash[22161]: audit 2024-04-14T15:34:42.650403+0000 mon.a (mon.0) 1103 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-14T15:34:43.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:43 smithi110 bash[22161]: audit 2024-04-14T15:34:42.651921+0000 mon.a (mon.0) 1104 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-14T15:34:43.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:43 smithi110 bash[22161]: audit 2024-04-14T15:34:42.653372+0000 mon.a (mon.0) 1105 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:34:43.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:43 smithi047 bash[21449]: cluster 2024-04-14T15:34:42.024011+0000 mgr.a (mgr.14152) 462 : cluster [DBG] pgmap v368: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:34:43.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:43 smithi047 bash[21449]: audit 2024-04-14T15:34:42.598946+0000 mon.a (mon.0) 1101 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:43.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:43 smithi047 bash[21449]: audit 2024-04-14T15:34:42.607489+0000 mon.a (mon.0) 1102 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:43.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:43 smithi047 bash[21449]: audit 2024-04-14T15:34:42.650403+0000 mon.a (mon.0) 1103 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-14T15:34:43.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:43 smithi047 bash[21449]: audit 2024-04-14T15:34:42.651921+0000 mon.a (mon.0) 1104 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-14T15:34:43.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:43 smithi047 bash[21449]: audit 2024-04-14T15:34:42.653372+0000 mon.a (mon.0) 1105 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:34:44.895 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:44 smithi110 bash[22161]: cephadm 2024-04-14T15:34:42.649677+0000 mgr.a (mgr.14152) 463 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-04-14T15:34:44.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:44 smithi110 bash[22161]: cephadm 2024-04-14T15:34:42.655307+0000 mgr.a (mgr.14152) 464 : cephadm [INF] Reconfiguring daemon mon.b on smithi110 2024-04-14T15:34:44.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:44 smithi110 bash[22161]: audit 2024-04-14T15:34:44.520517+0000 mon.a (mon.0) 1106 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:44.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:44 smithi110 bash[22161]: audit 2024-04-14T15:34:44.530024+0000 mon.a (mon.0) 1107 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:44.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:44 smithi110 bash[22161]: audit 2024-04-14T15:34:44.575747+0000 mon.a (mon.0) 1108 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-14T15:34:44.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:44 smithi110 bash[22161]: audit 2024-04-14T15:34:44.578274+0000 mon.a (mon.0) 1109 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-14T15:34:44.896 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:44 smithi110 bash[22161]: audit 2024-04-14T15:34:44.580288+0000 mon.a (mon.0) 1110 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:34:44.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:44 smithi047 bash[21449]: cephadm 2024-04-14T15:34:42.649677+0000 mgr.a (mgr.14152) 463 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-04-14T15:34:44.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:44 smithi047 bash[21449]: cephadm 2024-04-14T15:34:42.655307+0000 mgr.a (mgr.14152) 464 : cephadm [INF] Reconfiguring daemon mon.b on smithi110 2024-04-14T15:34:44.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:44 smithi047 bash[21449]: audit 2024-04-14T15:34:44.520517+0000 mon.a (mon.0) 1106 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:44.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:44 smithi047 bash[21449]: audit 2024-04-14T15:34:44.530024+0000 mon.a (mon.0) 1107 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:44.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:44 smithi047 bash[21449]: audit 2024-04-14T15:34:44.575747+0000 mon.a (mon.0) 1108 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-14T15:34:44.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:44 smithi047 bash[21449]: audit 2024-04-14T15:34:44.578274+0000 mon.a (mon.0) 1109 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-14T15:34:44.957 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:44 smithi047 bash[21449]: audit 2024-04-14T15:34:44.580288+0000 mon.a (mon.0) 1110 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:34:45.873 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:45 smithi110 bash[22161]: cluster 2024-04-14T15:34:44.024604+0000 mgr.a (mgr.14152) 465 : cluster [DBG] pgmap v369: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:34:45.873 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:45 smithi110 bash[22161]: cephadm 2024-04-14T15:34:44.574918+0000 mgr.a (mgr.14152) 466 : cephadm [INF] Reconfiguring mgr.b (monmap changed)... 2024-04-14T15:34:45.873 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:45 smithi110 bash[22161]: cephadm 2024-04-14T15:34:44.582504+0000 mgr.a (mgr.14152) 467 : cephadm [INF] Reconfiguring daemon mgr.b on smithi110 2024-04-14T15:34:45.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:45 smithi047 bash[21449]: cluster 2024-04-14T15:34:44.024604+0000 mgr.a (mgr.14152) 465 : cluster [DBG] pgmap v369: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:34:45.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:45 smithi047 bash[21449]: cephadm 2024-04-14T15:34:44.574918+0000 mgr.a (mgr.14152) 466 : cephadm [INF] Reconfiguring mgr.b (monmap changed)... 2024-04-14T15:34:45.956 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:45 smithi047 bash[21449]: cephadm 2024-04-14T15:34:44.582504+0000 mgr.a (mgr.14152) 467 : cephadm [INF] Reconfiguring daemon mgr.b on smithi110 2024-04-14T15:34:47.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:47 smithi047 bash[21449]: cluster 2024-04-14T15:34:46.025178+0000 mgr.a (mgr.14152) 468 : cluster [DBG] pgmap v370: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:34:47.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:47 smithi047 bash[21449]: audit 2024-04-14T15:34:46.433362+0000 mon.a (mon.0) 1111 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:47.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:47 smithi047 bash[21449]: audit 2024-04-14T15:34:46.442616+0000 mon.a (mon.0) 1112 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:47.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:47 smithi047 bash[21449]: cephadm 2024-04-14T15:34:46.453170+0000 mgr.a (mgr.14152) 469 : cephadm [INF] Reconfiguring osd.2 (monmap changed)... 2024-04-14T15:34:47.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:47 smithi047 bash[21449]: audit 2024-04-14T15:34:46.453820+0000 mon.a (mon.0) 1113 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-04-14T15:34:47.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:47 smithi047 bash[21449]: audit 2024-04-14T15:34:46.455457+0000 mon.a (mon.0) 1114 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:34:47.707 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:47 smithi047 bash[21449]: cephadm 2024-04-14T15:34:46.458316+0000 mgr.a (mgr.14152) 470 : cephadm [INF] Reconfiguring daemon osd.2 on smithi110 2024-04-14T15:34:47.893 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:47 smithi110 bash[22161]: cluster 2024-04-14T15:34:46.025178+0000 mgr.a (mgr.14152) 468 : cluster [DBG] pgmap v370: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:34:47.893 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:47 smithi110 bash[22161]: audit 2024-04-14T15:34:46.433362+0000 mon.a (mon.0) 1111 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:47.893 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:47 smithi110 bash[22161]: audit 2024-04-14T15:34:46.442616+0000 mon.a (mon.0) 1112 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:47.893 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:47 smithi110 bash[22161]: cephadm 2024-04-14T15:34:46.453170+0000 mgr.a (mgr.14152) 469 : cephadm [INF] Reconfiguring osd.2 (monmap changed)... 2024-04-14T15:34:47.893 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:47 smithi110 bash[22161]: audit 2024-04-14T15:34:46.453820+0000 mon.a (mon.0) 1113 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-04-14T15:34:47.893 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:47 smithi110 bash[22161]: audit 2024-04-14T15:34:46.455457+0000 mon.a (mon.0) 1114 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:34:47.894 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:47 smithi110 bash[22161]: cephadm 2024-04-14T15:34:46.458316+0000 mgr.a (mgr.14152) 470 : cephadm [INF] Reconfiguring daemon osd.2 on smithi110 2024-04-14T15:34:49.496 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:49 smithi110 bash[22161]: cluster 2024-04-14T15:34:48.025717+0000 mgr.a (mgr.14152) 471 : cluster [DBG] pgmap v371: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:34:49.497 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:49 smithi110 bash[22161]: audit 2024-04-14T15:34:48.246639+0000 mon.a (mon.0) 1115 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:49.497 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:49 smithi110 bash[22161]: audit 2024-04-14T15:34:48.255771+0000 mon.a (mon.0) 1116 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:49.497 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:49 smithi110 bash[22161]: cephadm 2024-04-14T15:34:48.277668+0000 mgr.a (mgr.14152) 472 : cephadm [INF] Reconfiguring osd.3 (monmap changed)... 2024-04-14T15:34:49.497 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:49 smithi110 bash[22161]: audit 2024-04-14T15:34:48.278328+0000 mon.a (mon.0) 1117 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-04-14T15:34:49.497 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:49 smithi110 bash[22161]: audit 2024-04-14T15:34:48.280204+0000 mon.a (mon.0) 1118 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:34:49.497 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:49 smithi110 bash[22161]: cephadm 2024-04-14T15:34:48.283099+0000 mgr.a (mgr.14152) 473 : cephadm [INF] Reconfiguring daemon osd.3 on smithi110 2024-04-14T15:34:49.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:49 smithi047 bash[21449]: cluster 2024-04-14T15:34:48.025717+0000 mgr.a (mgr.14152) 471 : cluster [DBG] pgmap v371: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:34:49.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:49 smithi047 bash[21449]: audit 2024-04-14T15:34:48.246639+0000 mon.a (mon.0) 1115 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:49.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:49 smithi047 bash[21449]: audit 2024-04-14T15:34:48.255771+0000 mon.a (mon.0) 1116 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:49.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:49 smithi047 bash[21449]: cephadm 2024-04-14T15:34:48.277668+0000 mgr.a (mgr.14152) 472 : cephadm [INF] Reconfiguring osd.3 (monmap changed)... 2024-04-14T15:34:49.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:49 smithi047 bash[21449]: audit 2024-04-14T15:34:48.278328+0000 mon.a (mon.0) 1117 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-04-14T15:34:49.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:49 smithi047 bash[21449]: audit 2024-04-14T15:34:48.280204+0000 mon.a (mon.0) 1118 : audit [DBG] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T15:34:49.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:49 smithi047 bash[21449]: cephadm 2024-04-14T15:34:48.283099+0000 mgr.a (mgr.14152) 473 : cephadm [INF] Reconfiguring daemon osd.3 on smithi110 2024-04-14T15:34:51.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:51 smithi110 bash[22161]: cluster 2024-04-14T15:34:50.026293+0000 mgr.a (mgr.14152) 474 : cluster [DBG] pgmap v372: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:34:51.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:51 smithi110 bash[22161]: audit 2024-04-14T15:34:50.135730+0000 mon.a (mon.0) 1119 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:51.396 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:51 smithi110 bash[22161]: audit 2024-04-14T15:34:50.145120+0000 mon.a (mon.0) 1120 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:51.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:51 smithi047 bash[21449]: cluster 2024-04-14T15:34:50.026293+0000 mgr.a (mgr.14152) 474 : cluster [DBG] pgmap v372: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:34:51.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:51 smithi047 bash[21449]: audit 2024-04-14T15:34:50.135730+0000 mon.a (mon.0) 1119 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:51.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:51 smithi047 bash[21449]: audit 2024-04-14T15:34:50.145120+0000 mon.a (mon.0) 1120 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:53.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:53 smithi110 bash[22161]: cluster 2024-04-14T15:34:52.026834+0000 mgr.a (mgr.14152) 475 : cluster [DBG] pgmap v373: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:34:53.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:53 smithi047 bash[21449]: cluster 2024-04-14T15:34:52.026834+0000 mgr.a (mgr.14152) 475 : cluster [DBG] pgmap v373: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:34:55.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:55 smithi110 bash[22161]: cluster 2024-04-14T15:34:54.027409+0000 mgr.a (mgr.14152) 476 : cluster [DBG] pgmap v374: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:34:55.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:55 smithi047 bash[21449]: cluster 2024-04-14T15:34:54.027409+0000 mgr.a (mgr.14152) 476 : cluster [DBG] pgmap v374: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:34:57.395 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:57 smithi110 bash[22161]: cluster 2024-04-14T15:34:56.028053+0000 mgr.a (mgr.14152) 477 : cluster [DBG] pgmap v375: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:34:57.456 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:57 smithi047 bash[21449]: cluster 2024-04-14T15:34:56.028053+0000 mgr.a (mgr.14152) 477 : cluster [DBG] pgmap v375: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:34:58.493 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:58 smithi047 bash[21449]: audit 2024-04-14T15:34:57.345138+0000 mon.a (mon.0) 1121 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:58.493 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:58 smithi047 bash[21449]: audit 2024-04-14T15:34:57.350648+0000 mon.a (mon.0) 1122 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:58.493 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:58 smithi047 bash[21449]: audit 2024-04-14T15:34:57.356802+0000 mon.a (mon.0) 1123 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:58.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:58 smithi110 bash[22161]: audit 2024-04-14T15:34:57.345138+0000 mon.a (mon.0) 1121 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:58.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:58 smithi110 bash[22161]: audit 2024-04-14T15:34:57.350648+0000 mon.a (mon.0) 1122 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:58.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:58 smithi110 bash[22161]: audit 2024-04-14T15:34:57.356802+0000 mon.a (mon.0) 1123 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:59.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:59 smithi110 bash[22161]: cluster 2024-04-14T15:34:58.028487+0000 mgr.a (mgr.14152) 478 : cluster [DBG] pgmap v376: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:34:59.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:59 smithi110 bash[22161]: audit 2024-04-14T15:34:59.037479+0000 mon.a (mon.0) 1124 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:59.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:59 smithi110 bash[22161]: audit 2024-04-14T15:34:59.043180+0000 mon.a (mon.0) 1125 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:59.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:34:59 smithi110 bash[22161]: audit 2024-04-14T15:34:59.048267+0000 mon.a (mon.0) 1126 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:59.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:59 smithi047 bash[21449]: cluster 2024-04-14T15:34:58.028487+0000 mgr.a (mgr.14152) 478 : cluster [DBG] pgmap v376: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:34:59.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:59 smithi047 bash[21449]: audit 2024-04-14T15:34:59.037479+0000 mon.a (mon.0) 1124 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:59.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:59 smithi047 bash[21449]: audit 2024-04-14T15:34:59.043180+0000 mon.a (mon.0) 1125 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:34:59.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:34:59 smithi047 bash[21449]: audit 2024-04-14T15:34:59.048267+0000 mon.a (mon.0) 1126 : audit [INF] from='mgr.14152 172.21.15.47:0/2418092731' entity='mgr.a' 2024-04-14T15:35:01.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:35:01 smithi110 bash[22161]: cluster 2024-04-14T15:35:00.029031+0000 mgr.a (mgr.14152) 479 : cluster [DBG] pgmap v377: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:35:01.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:35:01 smithi047 bash[21449]: cluster 2024-04-14T15:35:00.029031+0000 mgr.a (mgr.14152) 479 : cluster [DBG] pgmap v377: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:35:01.986 INFO:teuthology.orchestra.run.smithi047.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2024-04-14T15:35:02.334 INFO:teuthology.orchestra.run.smithi047.stderr:18 2024-04-14T15:35:02.344 INFO:teuthology.orchestra.run.smithi047.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2024-04-14T15:35:02.362 INFO:teuthology.orchestra.run.smithi047.stderr:++ cat crushmap.txt 2024-04-14T15:35:02.364 INFO:teuthology.orchestra.run.smithi047.stderr:+ CRUSH_MAP='# begin crush map 2024-04-14T15:35:02.364 INFO:teuthology.orchestra.run.smithi047.stderr:tunable choose_local_tries 0 2024-04-14T15:35:02.364 INFO:teuthology.orchestra.run.smithi047.stderr:tunable choose_local_fallback_tries 0 2024-04-14T15:35:02.364 INFO:teuthology.orchestra.run.smithi047.stderr:tunable choose_total_tries 50 2024-04-14T15:35:02.364 INFO:teuthology.orchestra.run.smithi047.stderr:tunable chooseleaf_descend_once 1 2024-04-14T15:35:02.364 INFO:teuthology.orchestra.run.smithi047.stderr:tunable chooseleaf_vary_r 1 2024-04-14T15:35:02.364 INFO:teuthology.orchestra.run.smithi047.stderr:tunable chooseleaf_stable 1 2024-04-14T15:35:02.364 INFO:teuthology.orchestra.run.smithi047.stderr:tunable straw_calc_version 1 2024-04-14T15:35:02.364 INFO:teuthology.orchestra.run.smithi047.stderr:tunable allowed_bucket_algs 54 2024-04-14T15:35:02.364 INFO:teuthology.orchestra.run.smithi047.stderr: 2024-04-14T15:35:02.364 INFO:teuthology.orchestra.run.smithi047.stderr:# devices 2024-04-14T15:35:02.365 INFO:teuthology.orchestra.run.smithi047.stderr:device 0 osd.0 class ssd 2024-04-14T15:35:02.365 INFO:teuthology.orchestra.run.smithi047.stderr:device 1 osd.1 class ssd 2024-04-14T15:35:02.365 INFO:teuthology.orchestra.run.smithi047.stderr:device 2 osd.2 class ssd 2024-04-14T15:35:02.365 INFO:teuthology.orchestra.run.smithi047.stderr:device 3 osd.3 class ssd 2024-04-14T15:35:02.365 INFO:teuthology.orchestra.run.smithi047.stderr: 2024-04-14T15:35:02.365 INFO:teuthology.orchestra.run.smithi047.stderr:# types 2024-04-14T15:35:02.365 INFO:teuthology.orchestra.run.smithi047.stderr:type 0 osd 2024-04-14T15:35:02.365 INFO:teuthology.orchestra.run.smithi047.stderr:type 1 host 2024-04-14T15:35:02.365 INFO:teuthology.orchestra.run.smithi047.stderr:type 2 chassis 2024-04-14T15:35:02.365 INFO:teuthology.orchestra.run.smithi047.stderr:type 3 rack 2024-04-14T15:35:02.365 INFO:teuthology.orchestra.run.smithi047.stderr:type 4 row 2024-04-14T15:35:02.365 INFO:teuthology.orchestra.run.smithi047.stderr:type 5 pdu 2024-04-14T15:35:02.365 INFO:teuthology.orchestra.run.smithi047.stderr:type 6 pod 2024-04-14T15:35:02.365 INFO:teuthology.orchestra.run.smithi047.stderr:type 7 room 2024-04-14T15:35:02.366 INFO:teuthology.orchestra.run.smithi047.stderr:type 8 datacenter 2024-04-14T15:35:02.366 INFO:teuthology.orchestra.run.smithi047.stderr:type 9 zone 2024-04-14T15:35:02.366 INFO:teuthology.orchestra.run.smithi047.stderr:type 10 region 2024-04-14T15:35:02.366 INFO:teuthology.orchestra.run.smithi047.stderr:type 11 root 2024-04-14T15:35:02.366 INFO:teuthology.orchestra.run.smithi047.stderr: 2024-04-14T15:35:02.366 INFO:teuthology.orchestra.run.smithi047.stderr:# buckets 2024-04-14T15:35:02.366 INFO:teuthology.orchestra.run.smithi047.stderr:host smithi047 { 2024-04-14T15:35:02.366 INFO:teuthology.orchestra.run.smithi047.stderr: id -3 # do not change unnecessarily 2024-04-14T15:35:02.366 INFO:teuthology.orchestra.run.smithi047.stderr: id -4 class ssd # do not change unnecessarily 2024-04-14T15:35:02.366 INFO:teuthology.orchestra.run.smithi047.stderr: # weight 0.17459 2024-04-14T15:35:02.366 INFO:teuthology.orchestra.run.smithi047.stderr: alg straw2 2024-04-14T15:35:02.366 INFO:teuthology.orchestra.run.smithi047.stderr: hash 0 # rjenkins1 2024-04-14T15:35:02.367 INFO:teuthology.orchestra.run.smithi047.stderr: item osd.0 weight 0.08730 2024-04-14T15:35:02.367 INFO:teuthology.orchestra.run.smithi047.stderr: item osd.1 weight 0.08730 2024-04-14T15:35:02.367 INFO:teuthology.orchestra.run.smithi047.stderr:} 2024-04-14T15:35:02.367 INFO:teuthology.orchestra.run.smithi047.stderr:host smithi110 { 2024-04-14T15:35:02.367 INFO:teuthology.orchestra.run.smithi047.stderr: id -5 # do not change unnecessarily 2024-04-14T15:35:02.367 INFO:teuthology.orchestra.run.smithi047.stderr: id -6 class ssd # do not change unnecessarily 2024-04-14T15:35:02.367 INFO:teuthology.orchestra.run.smithi047.stderr: # weight 0.17459 2024-04-14T15:35:02.367 INFO:teuthology.orchestra.run.smithi047.stderr: alg straw2 2024-04-14T15:35:02.367 INFO:teuthology.orchestra.run.smithi047.stderr: hash 0 # rjenkins1 2024-04-14T15:35:02.367 INFO:teuthology.orchestra.run.smithi047.stderr: item osd.2 weight 0.08730 2024-04-14T15:35:02.367 INFO:teuthology.orchestra.run.smithi047.stderr: item osd.3 weight 0.08730 2024-04-14T15:35:02.367 INFO:teuthology.orchestra.run.smithi047.stderr:} 2024-04-14T15:35:02.367 INFO:teuthology.orchestra.run.smithi047.stderr:root default { 2024-04-14T15:35:02.368 INFO:teuthology.orchestra.run.smithi047.stderr: id -1 # do not change unnecessarily 2024-04-14T15:35:02.368 INFO:teuthology.orchestra.run.smithi047.stderr: id -2 class ssd # do not change unnecessarily 2024-04-14T15:35:02.368 INFO:teuthology.orchestra.run.smithi047.stderr: # weight 0.34918 2024-04-14T15:35:02.368 INFO:teuthology.orchestra.run.smithi047.stderr: alg straw2 2024-04-14T15:35:02.368 INFO:teuthology.orchestra.run.smithi047.stderr: hash 0 # rjenkins1 2024-04-14T15:35:02.368 INFO:teuthology.orchestra.run.smithi047.stderr: item smithi047 weight 0.17459 2024-04-14T15:35:02.368 INFO:teuthology.orchestra.run.smithi047.stderr: item smithi110 weight 0.17459 2024-04-14T15:35:02.368 INFO:teuthology.orchestra.run.smithi047.stderr:} 2024-04-14T15:35:02.368 INFO:teuthology.orchestra.run.smithi047.stderr: 2024-04-14T15:35:02.368 INFO:teuthology.orchestra.run.smithi047.stderr:# rules 2024-04-14T15:35:02.368 INFO:teuthology.orchestra.run.smithi047.stderr:rule replicated_rule { 2024-04-14T15:35:02.368 INFO:teuthology.orchestra.run.smithi047.stderr: id 0 2024-04-14T15:35:02.368 INFO:teuthology.orchestra.run.smithi047.stderr: type replicated 2024-04-14T15:35:02.368 INFO:teuthology.orchestra.run.smithi047.stderr: step take default 2024-04-14T15:35:02.368 INFO:teuthology.orchestra.run.smithi047.stderr: step choose firstn 0 type osd 2024-04-14T15:35:02.369 INFO:teuthology.orchestra.run.smithi047.stderr: step emit 2024-04-14T15:35:02.369 INFO:teuthology.orchestra.run.smithi047.stderr:} 2024-04-14T15:35:02.369 INFO:teuthology.orchestra.run.smithi047.stderr: 2024-04-14T15:35:02.369 INFO:teuthology.orchestra.run.smithi047.stderr:# end crush map' 2024-04-14T15:35:02.369 INFO:teuthology.orchestra.run.smithi047.stderr:+ grep -q smithi138 2024-04-14T15:35:02.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:35:02 smithi110 bash[22161]: audit 2024-04-14T15:35:02.336399+0000 mon.a (mon.0) 1127 : audit [DBG] from='client.? 172.21.15.47:0/3660618400' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-04-14T15:35:02.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:35:02 smithi047 bash[21449]: audit 2024-04-14T15:35:02.336399+0000 mon.a (mon.0) 1127 : audit [DBG] from='client.? 172.21.15.47:0/3660618400' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-04-14T15:35:03.231 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-04-14T15:35:03.241 INFO:tasks.cephadm:Teardown begin 2024-04-14T15:35:03.242 DEBUG:teuthology.orchestra.run.smithi047:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-14T15:35:03.256 DEBUG:teuthology.orchestra.run.smithi110:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-14T15:35:03.270 DEBUG:teuthology.orchestra.run.smithi138:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-14T15:35:03.284 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-04-14T15:35:03.284 DEBUG:teuthology.orchestra.run.smithi047:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-04-14T15:35:03.302 DEBUG:teuthology.orchestra.run.smithi110:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-04-14T15:35:03.316 DEBUG:teuthology.orchestra.run.smithi138:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-04-14T15:35:03.333 INFO:tasks.cephadm:Stopping all daemons... 2024-04-14T15:35:03.333 INFO:tasks.cephadm.mon.a:Stopping mon.a... 2024-04-14T15:35:03.333 DEBUG:teuthology.orchestra.run.smithi047:> sudo systemctl stop ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@mon.a 2024-04-14T15:35:03.480 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:35:03 smithi047 systemd[1]: Stopping Ceph mon.a for af942ef8-fa72-11ee-bc8e-c7b262605968... 2024-04-14T15:35:03.480 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:35:03 smithi047 bash[21449]: cluster 2024-04-14T15:35:02.029668+0000 mgr.a (mgr.14152) 480 : cluster [DBG] pgmap v378: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:35:03.645 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:35:03 smithi110 bash[22161]: cluster 2024-04-14T15:35:02.029668+0000 mgr.a (mgr.14152) 480 : cluster [DBG] pgmap v378: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-14T15:35:03.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:35:03 smithi047 bash[21449]: debug 2024-04-14T15:35:03.482+0000 7f5b6d240700 -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-14T15:35:03.706 INFO:journalctl@ceph.mon.a.smithi047.stdout:Apr 14 15:35:03 smithi047 bash[21449]: debug 2024-04-14T15:35:03.482+0000 7f5b6d240700 -1 mon.a@0(leader) e4 *** Got Signal Terminated *** 2024-04-14T15:35:04.261 DEBUG:teuthology.orchestra.run.smithi047:> sudo pkill -f 'journalctl -f -n 0 -u ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@mon.a.service' 2024-04-14T15:35:04.297 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-14T15:35:04.297 INFO:tasks.cephadm.mon.a:Stopped mon.a 2024-04-14T15:35:04.297 INFO:tasks.cephadm.mon.c:Stopping mon.b... 2024-04-14T15:35:04.297 DEBUG:teuthology.orchestra.run.smithi110:> sudo systemctl stop ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@mon.b 2024-04-14T15:35:04.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:35:04 smithi110 systemd[1]: Stopping Ceph mon.b for af942ef8-fa72-11ee-bc8e-c7b262605968... 2024-04-14T15:35:04.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:35:04 smithi110 bash[22161]: debug 2024-04-14T15:35:04.442+0000 7f675e9b4700 -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-14T15:35:04.646 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:35:04 smithi110 bash[22161]: debug 2024-04-14T15:35:04.442+0000 7f675e9b4700 -1 mon.b@1(peon) e4 *** Got Signal Terminated *** 2024-04-14T15:35:05.322 INFO:journalctl@ceph.mon.b.smithi110.stdout:Apr 14 15:35:05 smithi110 bash[36645]: ceph-af942ef8-fa72-11ee-bc8e-c7b262605968-mon-b 2024-04-14T15:35:05.334 DEBUG:teuthology.orchestra.run.smithi110:> sudo pkill -f 'journalctl -f -n 0 -u ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@mon.b.service' 2024-04-14T15:35:05.363 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-14T15:35:05.363 INFO:tasks.cephadm.mon.c:Stopped mon.b 2024-04-14T15:35:05.363 INFO:tasks.cephadm.mon.c:Stopping mon.c... 2024-04-14T15:35:05.363 DEBUG:teuthology.orchestra.run.smithi138:> sudo systemctl stop ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@mon.c 2024-04-14T15:35:05.395 DEBUG:teuthology.orchestra.run.smithi138:> sudo pkill -f 'journalctl -f -n 0 -u ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@mon.c.service' 2024-04-14T15:35:05.475 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-14T15:35:05.476 INFO:tasks.cephadm.mon.c:Stopped mon.c 2024-04-14T15:35:05.476 INFO:tasks.cephadm.mgr.a:Stopping mgr.a... 2024-04-14T15:35:05.476 DEBUG:teuthology.orchestra.run.smithi047:> sudo systemctl stop ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@mgr.a 2024-04-14T15:35:05.900 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:35:05 smithi047 systemd[1]: Stopping Ceph mgr.a for af942ef8-fa72-11ee-bc8e-c7b262605968... 2024-04-14T15:35:05.900 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:35:05 smithi047 bash[21702]: debug 2024-04-14T15:35:05.630+0000 7f80d72d4700 -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-14T15:35:05.900 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Apr 14 15:35:05 smithi047 bash[21702]: debug 2024-04-14T15:35:05.630+0000 7f80d72d4700 -1 mgr handle_mgr_signal *** Got signal Terminated *** 2024-04-14T15:35:06.413 DEBUG:teuthology.orchestra.run.smithi047:> sudo pkill -f 'journalctl -f -n 0 -u ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@mgr.a.service' 2024-04-14T15:35:06.435 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-14T15:35:06.435 INFO:tasks.cephadm.mgr.a:Stopped mgr.a 2024-04-14T15:35:06.435 INFO:tasks.cephadm.mgr.b:Stopping mgr.b... 2024-04-14T15:35:06.435 DEBUG:teuthology.orchestra.run.smithi110:> sudo systemctl stop ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@mgr.b 2024-04-14T15:35:06.844 INFO:journalctl@ceph.mgr.b.smithi110.stdout:Apr 14 15:35:06 smithi110 systemd[1]: Stopping Ceph mgr.b for af942ef8-fa72-11ee-bc8e-c7b262605968... 2024-04-14T15:35:07.322 DEBUG:teuthology.orchestra.run.smithi110:> sudo pkill -f 'journalctl -f -n 0 -u ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@mgr.b.service' 2024-04-14T15:35:07.349 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-14T15:35:07.349 INFO:tasks.cephadm.mgr.b:Stopped mgr.b 2024-04-14T15:35:07.349 INFO:tasks.cephadm.osd.0:Stopping osd.0... 2024-04-14T15:35:07.350 DEBUG:teuthology.orchestra.run.smithi047:> sudo systemctl stop ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@osd.0 2024-04-14T15:35:07.706 INFO:journalctl@ceph.osd.0.smithi047.stdout:Apr 14 15:35:07 smithi047 systemd[1]: Stopping Ceph osd.0 for af942ef8-fa72-11ee-bc8e-c7b262605968... 2024-04-14T15:35:07.706 INFO:journalctl@ceph.osd.0.smithi047.stdout:Apr 14 15:35:07 smithi047 bash[31967]: debug 2024-04-14T15:35:07.506+0000 7f22f449d700 -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-14T15:35:07.706 INFO:journalctl@ceph.osd.0.smithi047.stdout:Apr 14 15:35:07 smithi047 bash[31967]: debug 2024-04-14T15:35:07.506+0000 7f22f449d700 -1 osd.0 58 *** Got signal Terminated *** 2024-04-14T15:35:07.706 INFO:journalctl@ceph.osd.0.smithi047.stdout:Apr 14 15:35:07 smithi047 bash[31967]: debug 2024-04-14T15:35:07.506+0000 7f22f449d700 -1 osd.0 58 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-04-14T15:35:13.706 INFO:journalctl@ceph.osd.0.smithi047.stdout:Apr 14 15:35:13 smithi047 bash[46993]: ceph-af942ef8-fa72-11ee-bc8e-c7b262605968-osd-0 2024-04-14T15:35:13.706 INFO:journalctl@ceph.osd.0.smithi047.stdout:Apr 14 15:35:13 smithi047 bash[47058]: Error response from daemon: No such container: ceph-af942ef8-fa72-11ee-bc8e-c7b262605968-osd-0 2024-04-14T15:35:15.484 DEBUG:teuthology.orchestra.run.smithi047:> sudo pkill -f 'journalctl -f -n 0 -u ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@osd.0.service' 2024-04-14T15:35:15.512 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-14T15:35:15.513 INFO:tasks.cephadm.osd.0:Stopped osd.0 2024-04-14T15:35:15.513 INFO:tasks.cephadm.osd.1:Stopping osd.1... 2024-04-14T15:35:15.513 DEBUG:teuthology.orchestra.run.smithi047:> sudo systemctl stop ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@osd.1 2024-04-14T15:35:15.732 INFO:journalctl@ceph.osd.1.smithi047.stdout:Apr 14 15:35:15 smithi047 systemd[1]: Stopping Ceph osd.1 for af942ef8-fa72-11ee-bc8e-c7b262605968... 2024-04-14T15:35:16.083 INFO:journalctl@ceph.osd.1.smithi047.stdout:Apr 14 15:35:15 smithi047 bash[35632]: debug 2024-04-14T15:35:15.766+0000 7f163c931700 -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-14T15:35:16.084 INFO:journalctl@ceph.osd.1.smithi047.stdout:Apr 14 15:35:15 smithi047 bash[35632]: debug 2024-04-14T15:35:15.766+0000 7f163c931700 -1 osd.1 58 *** Got signal Terminated *** 2024-04-14T15:35:16.084 INFO:journalctl@ceph.osd.1.smithi047.stdout:Apr 14 15:35:15 smithi047 bash[35632]: debug 2024-04-14T15:35:15.766+0000 7f163c931700 -1 osd.1 58 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-04-14T15:35:21.855 INFO:journalctl@ceph.osd.1.smithi047.stdout:Apr 14 15:35:21 smithi047 bash[47201]: ceph-af942ef8-fa72-11ee-bc8e-c7b262605968-osd-1 2024-04-14T15:35:22.205 INFO:journalctl@ceph.osd.1.smithi047.stdout:Apr 14 15:35:21 smithi047 bash[47512]: Error response from daemon: No such container: ceph-af942ef8-fa72-11ee-bc8e-c7b262605968-osd-1 2024-04-14T15:35:23.615 DEBUG:teuthology.orchestra.run.smithi047:> sudo pkill -f 'journalctl -f -n 0 -u ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@osd.1.service' 2024-04-14T15:35:23.647 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-14T15:35:23.647 INFO:tasks.cephadm.osd.1:Stopped osd.1 2024-04-14T15:35:23.647 INFO:tasks.cephadm.osd.2:Stopping osd.2... 2024-04-14T15:35:23.648 DEBUG:teuthology.orchestra.run.smithi110:> sudo systemctl stop ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@osd.2 2024-04-14T15:35:23.783 INFO:journalctl@ceph.osd.2.smithi110.stdout:Apr 14 15:35:23 smithi110 systemd[1]: Stopping Ceph osd.2 for af942ef8-fa72-11ee-bc8e-c7b262605968... 2024-04-14T15:35:24.146 INFO:journalctl@ceph.osd.2.smithi110.stdout:Apr 14 15:35:23 smithi110 bash[27775]: debug 2024-04-14T15:35:23.774+0000 7f02279e6700 -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-14T15:35:24.146 INFO:journalctl@ceph.osd.2.smithi110.stdout:Apr 14 15:35:23 smithi110 bash[27775]: debug 2024-04-14T15:35:23.774+0000 7f02279e6700 -1 osd.2 58 *** Got signal Terminated *** 2024-04-14T15:35:24.146 INFO:journalctl@ceph.osd.2.smithi110.stdout:Apr 14 15:35:23 smithi110 bash[27775]: debug 2024-04-14T15:35:23.774+0000 7f02279e6700 -1 osd.2 58 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-04-14T15:35:29.896 INFO:journalctl@ceph.osd.2.smithi110.stdout:Apr 14 15:35:29 smithi110 bash[37279]: ceph-af942ef8-fa72-11ee-bc8e-c7b262605968-osd-2 2024-04-14T15:35:29.896 INFO:journalctl@ceph.osd.2.smithi110.stdout:Apr 14 15:35:29 smithi110 bash[37372]: Error response from daemon: No such container: ceph-af942ef8-fa72-11ee-bc8e-c7b262605968-osd-2 2024-04-14T15:35:31.335 DEBUG:teuthology.orchestra.run.smithi110:> sudo pkill -f 'journalctl -f -n 0 -u ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@osd.2.service' 2024-04-14T15:35:31.361 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-14T15:35:31.361 INFO:tasks.cephadm.osd.2:Stopped osd.2 2024-04-14T15:35:31.362 INFO:tasks.cephadm.osd.3:Stopping osd.3... 2024-04-14T15:35:31.362 DEBUG:teuthology.orchestra.run.smithi110:> sudo systemctl stop ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@osd.3 2024-04-14T15:35:31.646 INFO:journalctl@ceph.osd.3.smithi110.stdout:Apr 14 15:35:31 smithi110 systemd[1]: Stopping Ceph osd.3 for af942ef8-fa72-11ee-bc8e-c7b262605968... 2024-04-14T15:35:31.646 INFO:journalctl@ceph.osd.3.smithi110.stdout:Apr 14 15:35:31 smithi110 bash[31477]: debug 2024-04-14T15:35:31.506+0000 7ff230461700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-osd -n osd.3 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug (PID: 1) UID: 0 2024-04-14T15:35:31.646 INFO:journalctl@ceph.osd.3.smithi110.stdout:Apr 14 15:35:31 smithi110 bash[31477]: debug 2024-04-14T15:35:31.506+0000 7ff230461700 -1 osd.3 58 *** Got signal Terminated *** 2024-04-14T15:35:31.646 INFO:journalctl@ceph.osd.3.smithi110.stdout:Apr 14 15:35:31 smithi110 bash[31477]: debug 2024-04-14T15:35:31.506+0000 7ff230461700 -1 osd.3 58 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-04-14T15:35:37.645 INFO:journalctl@ceph.osd.3.smithi110.stdout:Apr 14 15:35:37 smithi110 bash[37504]: ceph-af942ef8-fa72-11ee-bc8e-c7b262605968-osd-3 2024-04-14T15:35:37.646 INFO:journalctl@ceph.osd.3.smithi110.stdout:Apr 14 15:35:37 smithi110 bash[37745]: Error response from daemon: No such container: ceph-af942ef8-fa72-11ee-bc8e-c7b262605968-osd-3 2024-04-14T15:35:39.093 DEBUG:teuthology.orchestra.run.smithi110:> sudo pkill -f 'journalctl -f -n 0 -u ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@osd.3.service' 2024-04-14T15:35:39.125 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-14T15:35:39.125 INFO:tasks.cephadm.osd.3:Stopped osd.3 2024-04-14T15:35:39.125 INFO:tasks.cephadm.osd.4:Stopping osd.4... 2024-04-14T15:35:39.126 DEBUG:teuthology.orchestra.run.smithi138:> sudo systemctl stop ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@osd.4 2024-04-14T15:35:39.159 DEBUG:teuthology.orchestra.run.smithi138:> sudo pkill -f 'journalctl -f -n 0 -u ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@osd.4.service' 2024-04-14T15:35:39.225 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-14T15:35:39.225 INFO:tasks.cephadm.osd.4:Stopped osd.4 2024-04-14T15:35:39.225 INFO:tasks.cephadm.osd.5:Stopping osd.5... 2024-04-14T15:35:39.225 DEBUG:teuthology.orchestra.run.smithi138:> sudo systemctl stop ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@osd.5 2024-04-14T15:35:39.290 DEBUG:teuthology.orchestra.run.smithi138:> sudo pkill -f 'journalctl -f -n 0 -u ceph-af942ef8-fa72-11ee-bc8e-c7b262605968@osd.5.service' 2024-04-14T15:35:39.361 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-14T15:35:39.362 INFO:tasks.cephadm.osd.5:Stopped osd.5 2024-04-14T15:35:39.362 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 --force --keep-logs 2024-04-14T15:35:39.531 INFO:teuthology.orchestra.run.smithi047.stdout:Deleting cluster with fsid: af942ef8-fa72-11ee-bc8e-c7b262605968 2024-04-14T15:35:42.317 DEBUG:teuthology.orchestra.run.smithi110:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 --force --keep-logs 2024-04-14T15:35:42.486 INFO:teuthology.orchestra.run.smithi110.stdout:Deleting cluster with fsid: af942ef8-fa72-11ee-bc8e-c7b262605968 2024-04-14T15:35:45.181 DEBUG:teuthology.orchestra.run.smithi138:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 --force --keep-logs 2024-04-14T15:35:45.350 INFO:teuthology.orchestra.run.smithi138.stdout:Deleting cluster with fsid: af942ef8-fa72-11ee-bc8e-c7b262605968 2024-04-14T15:35:46.863 DEBUG:teuthology.orchestra.run.smithi047:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-14T15:35:46.878 DEBUG:teuthology.orchestra.run.smithi110:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-14T15:35:46.892 DEBUG:teuthology.orchestra.run.smithi138:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-14T15:35:46.904 INFO:tasks.cephadm:Archiving crash dumps... 2024-04-14T15:35:46.906 DEBUG:teuthology.misc:Transferring archived files from smithi047:/var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-04-08_20:08:14-orch-main-distro-default-smithi/7646092/remote/smithi047/crash 2024-04-14T15:35:46.907 DEBUG:teuthology.orchestra.run.smithi047:> sudo tar c -f - -C /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/crash -- . 2024-04-14T15:35:46.937 INFO:teuthology.orchestra.run.smithi047.stderr:tar: /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/crash: Cannot open: No such file or directory 2024-04-14T15:35:46.937 INFO:teuthology.orchestra.run.smithi047.stderr:tar: Error is not recoverable: exiting now 2024-04-14T15:35:46.939 DEBUG:teuthology.misc:Transferring archived files from smithi110:/var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-04-08_20:08:14-orch-main-distro-default-smithi/7646092/remote/smithi110/crash 2024-04-14T15:35:46.940 DEBUG:teuthology.orchestra.run.smithi110:> sudo tar c -f - -C /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/crash -- . 2024-04-14T15:35:46.952 INFO:teuthology.orchestra.run.smithi110.stderr:tar: /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/crash: Cannot open: No such file or directory 2024-04-14T15:35:46.952 INFO:teuthology.orchestra.run.smithi110.stderr:tar: Error is not recoverable: exiting now 2024-04-14T15:35:46.954 DEBUG:teuthology.misc:Transferring archived files from smithi138:/var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-04-08_20:08:14-orch-main-distro-default-smithi/7646092/remote/smithi138/crash 2024-04-14T15:35:46.955 DEBUG:teuthology.orchestra.run.smithi138:> sudo tar c -f - -C /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/crash -- . 2024-04-14T15:35:46.965 INFO:teuthology.orchestra.run.smithi138.stderr:tar: /var/lib/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/crash: Cannot open: No such file or directory 2024-04-14T15:35:46.965 INFO:teuthology.orchestra.run.smithi138.stderr:tar: Error is not recoverable: exiting now 2024-04-14T15:35:46.966 INFO:tasks.cephadm:Checking cluster log for badness... 2024-04-14T15:35:46.967 DEBUG:teuthology.orchestra.run.smithi047:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v MON_DOWN | egrep -v 'mons down' | egrep -v 'mon down' | egrep -v 'out of quorum' | head -n 1 2024-04-14T15:35:47.000 INFO:teuthology.orchestra.run.smithi047.stdout:2024-04-14T15:28:15.853448+0000 mon.a (mon.0) 540 : cluster [WRN] Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-04-14T15:35:47.001 WARNING:tasks.cephadm:Found errors (ERR|WRN|SEC) in cluster log 2024-04-14T15:35:47.001 DEBUG:teuthology.orchestra.run.smithi047:> sudo egrep '\[SEC\]' /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v MON_DOWN | egrep -v 'mons down' | egrep -v 'mon down' | egrep -v 'out of quorum' | head -n 1 2024-04-14T15:35:47.060 DEBUG:teuthology.orchestra.run.smithi047:> sudo egrep '\[ERR\]' /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v MON_DOWN | egrep -v 'mons down' | egrep -v 'mon down' | egrep -v 'out of quorum' | head -n 1 2024-04-14T15:35:47.119 DEBUG:teuthology.orchestra.run.smithi047:> sudo egrep '\[WRN\]' /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v MON_DOWN | egrep -v 'mons down' | egrep -v 'mon down' | egrep -v 'out of quorum' | head -n 1 2024-04-14T15:35:47.174 INFO:teuthology.orchestra.run.smithi047.stdout:2024-04-14T15:28:15.853448+0000 mon.a (mon.0) 540 : cluster [WRN] Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-04-14T15:35:47.175 INFO:tasks.cephadm:Compressing logs... 2024-04-14T15:35:47.175 DEBUG:teuthology.orchestra.run.smithi047:> 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-14T15:35:47.223 DEBUG:teuthology.orchestra.run.smithi110:> 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-14T15:35:47.225 DEBUG:teuthology.orchestra.run.smithi138:> 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-14T15:35:47.231 INFO:teuthology.orchestra.run.smithi047.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-04-14T15:35:47.235 INFO:teuthology.orchestra.run.smithi110.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-04-14T15:35:47.237 INFO:teuthology.orchestra.run.smithi047.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-14T15:35:47.238 INFO:teuthology.orchestra.run.smithi047.stderr:gzip -5 --verbose -- /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph-osd.0.log 2024-04-14T15:35:47.238 INFO:teuthology.orchestra.run.smithi047.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph-mon.a.log 2024-04-14T15:35:47.238 INFO:teuthology.orchestra.run.smithi047.stderr:/var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph-osd.0.log: gzip -5 --verbose -- /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph.cephadm.log 2024-04-14T15:35:47.239 INFO:teuthology.orchestra.run.smithi138.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-04-14T15:35:47.241 INFO:teuthology.orchestra.run.smithi047.stderr:/var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph-mon.a.log: gzip -5 --verbose -- /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph-osd.1.log 2024-04-14T15:35:47.241 INFO:teuthology.orchestra.run.smithi047.stderr:/var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph.log 2024-04-14T15:35:47.241 INFO:teuthology.orchestra.run.smithi047.stderr: 80.8% -- replaced with /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph.cephadm.log.gz 2024-04-14T15:35:47.241 INFO:teuthology.orchestra.run.smithi047.stderr:/var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph-osd.1.log: gzip -5 --verbose -- /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph-volume.log 2024-04-14T15:35:47.241 INFO:teuthology.orchestra.run.smithi047.stderr:gzip -5 --verbose -- /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph.audit.log 2024-04-14T15:35:47.241 INFO:teuthology.orchestra.run.smithi047.stderr:/var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph.log: /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph-mgr.a.log 2024-04-14T15:35:47.242 INFO:teuthology.orchestra.run.smithi047.stderr:/var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph.audit.log: /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph-mgr.a.log: 88.3% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-14T15:35:47.242 INFO:teuthology.orchestra.run.smithi047.stderr: 87.0% -- replaced with /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph.log.gz 2024-04-14T15:35:47.243 INFO:teuthology.orchestra.run.smithi047.stderr: 90.4% -- replaced with /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph.audit.log.gz 2024-04-14T15:35:47.244 INFO:teuthology.orchestra.run.smithi138.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-14T15:35:47.244 INFO:teuthology.orchestra.run.smithi138.stderr:gzip -5 --verbose -- /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph.cephadm.log 2024-04-14T15:35:47.244 INFO:teuthology.orchestra.run.smithi138.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph-osd.5.log 2024-04-14T15:35:47.245 INFO:teuthology.orchestra.run.smithi138.stderr:/var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph.cephadm.log: 80.0%gzip -- replaced with /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph.cephadm.log.gz -5 2024-04-14T15:35:47.245 INFO:teuthology.orchestra.run.smithi138.stderr: --verbose -- /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph.log 2024-04-14T15:35:47.246 INFO:teuthology.orchestra.run.smithi138.stderr:gzip -5 --verbose -- /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph-volume.log 2024-04-14T15:35:47.246 INFO:teuthology.orchestra.run.smithi138.stderr:/var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph-osd.5.log: /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph.log: gzip -5 --verbose -- /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph-mon.c.log 2024-04-14T15:35:47.246 INFO:teuthology.orchestra.run.smithi138.stderr:/var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph.audit.log 2024-04-14T15:35:47.247 INFO:teuthology.orchestra.run.smithi138.stderr:/var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph-mon.c.log: gzip -5 --verbose -- /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph-osd.4.log 2024-04-14T15:35:47.247 INFO:teuthology.orchestra.run.smithi138.stderr: 87.1% -- replaced with /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph.log.gz 2024-04-14T15:35:47.248 INFO:teuthology.orchestra.run.smithi138.stderr:/var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph.audit.log: /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph-osd.4.log: 85.5% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-14T15:35:47.249 INFO:teuthology.orchestra.run.smithi138.stderr: 90.7% -- replaced with /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph.audit.log.gz 2024-04-14T15:35:47.250 INFO:teuthology.orchestra.run.smithi110.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-14T15:35:47.251 INFO:teuthology.orchestra.run.smithi110.stderr:gzip -5 --verbose -- /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph-osd.2.log 2024-04-14T15:35:47.251 INFO:teuthology.orchestra.run.smithi110.stderr:gzip -5 --verbose -- /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph.cephadm.log 2024-04-14T15:35:47.252 INFO:teuthology.orchestra.run.smithi110.stderr:/var/log/ceph/cephadm.log: /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph-osd.2.log: gzip -5 --verbose -- /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph-osd.3.log 2024-04-14T15:35:47.252 INFO:teuthology.orchestra.run.smithi110.stderr:gzip -5 --verbose -- /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph.log 2024-04-14T15:35:47.253 INFO:teuthology.orchestra.run.smithi110.stderr:/var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph.cephadm.log: /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph-osd.3.log: gzip -5 --verbose -- /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph-volume.log 2024-04-14T15:35:47.253 INFO:teuthology.orchestra.run.smithi110.stderr: 79.4% -- replaced with /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph.cephadm.log.gz 2024-04-14T15:35:47.254 INFO:teuthology.orchestra.run.smithi110.stderr:/var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph.log: gzip -5 --verbose -- /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph-mgr.b.log 2024-04-14T15:35:47.254 INFO:teuthology.orchestra.run.smithi110.stderr:/var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph.audit.log 2024-04-14T15:35:47.255 INFO:teuthology.orchestra.run.smithi110.stderr:/var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph-mgr.b.log: gzip 86.4% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-14T15:35:47.255 INFO:teuthology.orchestra.run.smithi110.stderr: -5 --verbose -- /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph-mon.b.log 2024-04-14T15:35:47.255 INFO:teuthology.orchestra.run.smithi110.stderr:/var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph.audit.log: 86.9% -- replaced with /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph.log.gz 2024-04-14T15:35:47.257 INFO:teuthology.orchestra.run.smithi110.stderr:/var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph-mon.b.log: 90.6% -- replaced with /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph.audit.log.gz 2024-04-14T15:35:47.259 INFO:teuthology.orchestra.run.smithi110.stderr: 91.8% -- replaced with /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph-mgr.b.log.gz 2024-04-14T15:35:47.265 INFO:teuthology.orchestra.run.smithi138.stderr: 91.8% -- replaced with /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph-volume.log.gz 2024-04-14T15:35:47.273 INFO:teuthology.orchestra.run.smithi047.stderr: 91.6% -- replaced with /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph-volume.log.gz 2024-04-14T15:35:47.276 INFO:teuthology.orchestra.run.smithi138.stderr: 92.6% -- replaced with /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph-osd.5.log.gz 2024-04-14T15:35:47.280 INFO:teuthology.orchestra.run.smithi138.stderr: 92.8% -- replaced with /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph-osd.4.log.gz 2024-04-14T15:35:47.285 INFO:teuthology.orchestra.run.smithi110.stderr: 91.8% -- replaced with /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph-volume.log.gz 2024-04-14T15:35:47.293 INFO:teuthology.orchestra.run.smithi047.stderr: 93.3% -- replaced with /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph-osd.1.log.gz 2024-04-14T15:35:47.300 INFO:teuthology.orchestra.run.smithi047.stderr: 93.2% -- replaced with /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph-osd.0.log.gz 2024-04-14T15:35:47.322 INFO:teuthology.orchestra.run.smithi110.stderr: 92.8% -- replaced with /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph-osd.3.log.gz 2024-04-14T15:35:47.348 INFO:teuthology.orchestra.run.smithi138.stderr: 93.2% -- replaced with /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph-mon.c.log.gz 2024-04-14T15:35:47.350 INFO:teuthology.orchestra.run.smithi138.stderr: 2024-04-14T15:35:47.350 INFO:teuthology.orchestra.run.smithi138.stderr:real 0m0.120s 2024-04-14T15:35:47.350 INFO:teuthology.orchestra.run.smithi138.stderr:user 0m0.187s 2024-04-14T15:35:47.350 INFO:teuthology.orchestra.run.smithi138.stderr:sys 0m0.030s 2024-04-14T15:35:47.351 INFO:teuthology.orchestra.run.smithi110.stderr: 93.4% -- replaced with /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph-osd.2.log.gz 2024-04-14T15:35:47.368 INFO:teuthology.orchestra.run.smithi047.stderr: 87.9% -- replaced with /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph-mgr.a.log.gz 2024-04-14T15:35:47.382 INFO:teuthology.orchestra.run.smithi110.stderr: 92.7% -- replaced with /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph-mon.b.log.gz 2024-04-14T15:35:47.384 INFO:teuthology.orchestra.run.smithi110.stderr: 2024-04-14T15:35:47.384 INFO:teuthology.orchestra.run.smithi110.stderr:real 0m0.156s 2024-04-14T15:35:47.384 INFO:teuthology.orchestra.run.smithi110.stderr:user 0m0.352s 2024-04-14T15:35:47.384 INFO:teuthology.orchestra.run.smithi110.stderr:sys 0m0.016s 2024-04-14T15:35:47.618 INFO:teuthology.orchestra.run.smithi047.stderr: 91.3% -- replaced with /var/log/ceph/af942ef8-fa72-11ee-bc8e-c7b262605968/ceph-mon.a.log.gz 2024-04-14T15:35:47.620 INFO:teuthology.orchestra.run.smithi047.stderr: 2024-04-14T15:35:47.620 INFO:teuthology.orchestra.run.smithi047.stderr:real 0m0.395s 2024-04-14T15:35:47.620 INFO:teuthology.orchestra.run.smithi047.stderr:user 0m0.661s 2024-04-14T15:35:47.620 INFO:teuthology.orchestra.run.smithi047.stderr:sys 0m0.026s 2024-04-14T15:35:47.621 INFO:tasks.cephadm:Archiving logs... 2024-04-14T15:35:47.621 DEBUG:teuthology.misc:Transferring archived files from smithi047:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-08_20:08:14-orch-main-distro-default-smithi/7646092/remote/smithi047/log 2024-04-14T15:35:47.622 DEBUG:teuthology.orchestra.run.smithi047:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-14T15:35:47.773 DEBUG:teuthology.misc:Transferring archived files from smithi110:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-08_20:08:14-orch-main-distro-default-smithi/7646092/remote/smithi110/log 2024-04-14T15:35:47.774 DEBUG:teuthology.orchestra.run.smithi110:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-14T15:35:47.830 DEBUG:teuthology.misc:Transferring archived files from smithi138:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-08_20:08:14-orch-main-distro-default-smithi/7646092/remote/smithi138/log 2024-04-14T15:35:47.831 DEBUG:teuthology.orchestra.run.smithi138:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-14T15:35:47.871 INFO:tasks.cephadm:Removing cluster... 2024-04-14T15:35:47.871 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 --force 2024-04-14T15:35:48.045 INFO:teuthology.orchestra.run.smithi047.stdout:Deleting cluster with fsid: af942ef8-fa72-11ee-bc8e-c7b262605968 2024-04-14T15:35:49.401 DEBUG:teuthology.orchestra.run.smithi110:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 --force 2024-04-14T15:35:49.570 INFO:teuthology.orchestra.run.smithi110.stdout:Deleting cluster with fsid: af942ef8-fa72-11ee-bc8e-c7b262605968 2024-04-14T15:35:50.920 DEBUG:teuthology.orchestra.run.smithi138:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid af942ef8-fa72-11ee-bc8e-c7b262605968 --force 2024-04-14T15:35:51.088 INFO:teuthology.orchestra.run.smithi138.stdout:Deleting cluster with fsid: af942ef8-fa72-11ee-bc8e-c7b262605968 2024-04-14T15:35:52.413 INFO:tasks.cephadm:Removing cephadm ... 2024-04-14T15:35:52.414 DEBUG:teuthology.orchestra.run.smithi047:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-14T15:35:52.420 DEBUG:teuthology.orchestra.run.smithi110:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-14T15:35:52.426 DEBUG:teuthology.orchestra.run.smithi138:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-14T15:35:52.432 INFO:tasks.cephadm:Teardown complete 2024-04-14T15:35:52.432 DEBUG:teuthology.run_tasks:Unwinding manager install 2024-04-14T15:35:52.442 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-14T15:35:52.442 DEBUG:teuthology.orchestra.run.smithi047:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-04-14T15:35:52.463 DEBUG:teuthology.orchestra.run.smithi110:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-04-14T15:35:52.469 DEBUG:teuthology.orchestra.run.smithi138:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-04-14T15:35:52.559 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-04-14T15:35:52.568 INFO:teuthology.task.clock:Checking final clock skew... 2024-04-14T15:35:52.568 DEBUG:teuthology.orchestra.run.smithi047:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-14T15:35:52.571 DEBUG:teuthology.orchestra.run.smithi110:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-14T15:35:52.573 DEBUG:teuthology.orchestra.run.smithi138:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-14T15:35:52.580 INFO:teuthology.orchestra.run.smithi047.stdout: remote refid st t when poll reach delay offset jitter 2024-04-14T15:35:52.580 INFO:teuthology.orchestra.run.smithi047.stdout:============================================================================== 2024-04-14T15:35:52.580 INFO:teuthology.orchestra.run.smithi047.stdout:+hv01.front.sepi 67.205.162.81 3 u 50 64 377 0.058 -5.842 1.834 2024-04-14T15:35:52.580 INFO:teuthology.orchestra.run.smithi047.stdout:*hv02.front.sepi 63.231.80.2 3 u 57 64 377 0.080 -2.695 1.616 2024-04-14T15:35:52.580 INFO:teuthology.orchestra.run.smithi047.stdout:+hv03.front.sepi 74.6.168.72 3 u 49 64 377 0.085 -1.560 3.078 2024-04-14T15:35:52.580 INFO:teuthology.orchestra.run.smithi047.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 +0.000 0.000 2024-04-14T15:35:52.584 INFO:teuthology.orchestra.run.smithi110.stdout: remote refid st t when poll reach delay offset jitter 2024-04-14T15:35:52.584 INFO:teuthology.orchestra.run.smithi110.stdout:============================================================================== 2024-04-14T15:35:52.584 INFO:teuthology.orchestra.run.smithi110.stdout:+hv01.front.sepi 67.205.162.81 3 u 55 64 377 0.055 +2.931 0.772 2024-04-14T15:35:52.584 INFO:teuthology.orchestra.run.smithi110.stdout:+hv02.front.sepi 63.231.80.2 3 u 50 64 377 0.067 +5.851 0.892 2024-04-14T15:35:52.584 INFO:teuthology.orchestra.run.smithi110.stdout:*hv03.front.sepi 74.6.168.72 3 u 56 64 377 0.085 +2.826 0.716 2024-04-14T15:35:52.584 INFO:teuthology.orchestra.run.smithi110.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 +0.000 0.000 2024-04-14T15:35:52.585 INFO:teuthology.orchestra.run.smithi138.stdout: remote refid st t when poll reach delay offset jitter 2024-04-14T15:35:52.585 INFO:teuthology.orchestra.run.smithi138.stdout:============================================================================== 2024-04-14T15:35:52.585 INFO:teuthology.orchestra.run.smithi138.stdout:*hv01.front.sepi 67.205.162.81 3 u 53 64 377 0.078 -3.272 2.156 2024-04-14T15:35:52.585 INFO:teuthology.orchestra.run.smithi138.stdout:+hv02.front.sepi 63.231.80.2 3 u 50 64 377 0.073 +0.933 3.290 2024-04-14T15:35:52.585 INFO:teuthology.orchestra.run.smithi138.stdout:+hv03.front.sepi 74.6.168.72 3 u 49 64 377 0.079 -5.989 2.930 2024-04-14T15:35:52.585 INFO:teuthology.orchestra.run.smithi138.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 +0.000 0.000 2024-04-14T15:35:52.586 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-04-14T15:35:52.595 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-04-14T15:35:52.595 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-04-14T15:35:52.603 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-04-14T15:35:52.611 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-04-14T15:35:52.618 INFO:teuthology.task.internal:Duration was 1409.612901 seconds 2024-04-14T15:35:52.619 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-04-14T15:35:52.627 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-04-14T15:35:52.628 DEBUG:teuthology.orchestra.run.smithi047:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-14T15:35:52.630 DEBUG:teuthology.orchestra.run.smithi110:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-14T15:35:52.632 DEBUG:teuthology.orchestra.run.smithi138:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-14T15:35:52.666 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-04-14T15:35:52.666 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi047.front.sepia.ceph.com 2024-04-14T15:35:52.666 DEBUG:teuthology.orchestra.run.smithi047:> 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-14T15:35:52.719 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi110.front.sepia.ceph.com 2024-04-14T15:35:52.719 DEBUG:teuthology.orchestra.run.smithi110:> 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-14T15:35:52.729 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi138.front.sepia.ceph.com 2024-04-14T15:35:52.729 DEBUG:teuthology.orchestra.run.smithi138:> 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-14T15:35:52.739 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-04-14T15:35:52.740 DEBUG:teuthology.orchestra.run.smithi047:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-14T15:35:52.767 DEBUG:teuthology.orchestra.run.smithi110:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-14T15:35:52.773 DEBUG:teuthology.orchestra.run.smithi138:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-14T15:35:52.818 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-04-14T15:35:52.818 DEBUG:teuthology.orchestra.run.smithi047:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-14T15:35:52.851 DEBUG:teuthology.orchestra.run.smithi110:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-14T15:35:52.853 DEBUG:teuthology.orchestra.run.smithi138:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-14T15:35:52.942 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-04-14T15:35:52.952 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-04-14T15:35:52.952 DEBUG:teuthology.orchestra.run.smithi047:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-14T15:35:52.965 DEBUG:teuthology.orchestra.run.smithi110:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-14T15:35:52.977 DEBUG:teuthology.orchestra.run.smithi138:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-14T15:35:52.988 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-04-14T15:35:52.997 DEBUG:teuthology.orchestra.run.smithi047:> 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-14T15:35:53.011 DEBUG:teuthology.orchestra.run.smithi110:> 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-14T15:35:53.020 INFO:teuthology.orchestra.run.smithi047.stdout:kernel.core_pattern = core 2024-04-14T15:35:53.021 DEBUG:teuthology.orchestra.run.smithi138:> 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-14T15:35:53.030 INFO:teuthology.orchestra.run.smithi110.stdout:kernel.core_pattern = core 2024-04-14T15:35:53.041 INFO:teuthology.orchestra.run.smithi138.stdout:kernel.core_pattern = core 2024-04-14T15:35:53.065 DEBUG:teuthology.orchestra.run.smithi047:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-14T15:35:53.085 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-14T15:35:53.085 DEBUG:teuthology.orchestra.run.smithi110:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-14T15:35:53.108 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-14T15:35:53.108 DEBUG:teuthology.orchestra.run.smithi138:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-14T15:35:53.112 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-14T15:35:53.112 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-04-14T15:35:53.122 INFO:teuthology.task.internal:Transferring archived files... 2024-04-14T15:35:53.123 DEBUG:teuthology.misc:Transferring archived files from smithi047:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-08_20:08:14-orch-main-distro-default-smithi/7646092/remote/smithi047 2024-04-14T15:35:53.123 DEBUG:teuthology.orchestra.run.smithi047:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-14T15:35:53.151 DEBUG:teuthology.misc:Transferring archived files from smithi110:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-08_20:08:14-orch-main-distro-default-smithi/7646092/remote/smithi110 2024-04-14T15:35:53.152 DEBUG:teuthology.orchestra.run.smithi110:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-14T15:35:53.174 DEBUG:teuthology.misc:Transferring archived files from smithi138:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-08_20:08:14-orch-main-distro-default-smithi/7646092/remote/smithi138 2024-04-14T15:35:53.174 DEBUG:teuthology.orchestra.run.smithi138:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-14T15:35:53.200 INFO:teuthology.task.internal:Removing archive directory... 2024-04-14T15:35:53.200 DEBUG:teuthology.orchestra.run.smithi047:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-14T15:35:53.202 DEBUG:teuthology.orchestra.run.smithi110:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-14T15:35:53.217 DEBUG:teuthology.orchestra.run.smithi138:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-14T15:35:53.241 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-04-14T15:35:53.252 INFO:teuthology.task.internal:Not uploading archives. 2024-04-14T15:35:53.252 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-04-14T15:35:53.262 INFO:teuthology.task.internal:Tidying up after the test... 2024-04-14T15:35:53.262 DEBUG:teuthology.orchestra.run.smithi047:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-14T15:35:53.264 DEBUG:teuthology.orchestra.run.smithi110:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-14T15:35:53.266 DEBUG:teuthology.orchestra.run.smithi138:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-14T15:35:53.268 INFO:teuthology.orchestra.run.smithi047.stdout: 658640 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 14 15:35 /home/ubuntu/cephtest 2024-04-14T15:35:53.271 INFO:teuthology.orchestra.run.smithi110.stdout: 658638 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 14 15:35 /home/ubuntu/cephtest 2024-04-14T15:35:53.289 INFO:teuthology.orchestra.run.smithi138.stdout: 658623 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 14 15:35 /home/ubuntu/cephtest 2024-04-14T15:35:53.290 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-04-14T15:35:53.301 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-04-14T15:35:53.323 INFO:teuthology.nuke:Checking targets against current locks 2024-04-14T15:35:53.347 DEBUG:teuthology.nuke:shortname: smithi047 2024-04-14T15:35:53.347 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-14T15:35:53.372 DEBUG:teuthology.nuke:shortname: smithi110 2024-04-14T15:35:53.372 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-14T15:35:53.376 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi047.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-08_20:08:14-orch-main-distro-default-smithi/7646092', '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-14 15:02:53.319328', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBO7OBskDcf1chVCNKbqePFjX4/i1c1ZvaemLn1FeRvHbyX02JV7pIr/l7IUflzQ2kAJMQKjWnIMDiMg8KSIrCpM='} 2024-04-14T15:35:53.400 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi110.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-08_20:08:14-orch-main-distro-default-smithi/7646092', '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-14 15:02:53.316259', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBBMnHOexUYtwOQMw8Mezh90X3r4brokcIxCwvADpuOJ0+jCL8yohqLqwyb+OkdQFK74JmkVBbQX8E9sCMvLtOyY='} 2024-04-14T15:35:53.401 DEBUG:teuthology.nuke:shortname: smithi138 2024-04-14T15:35:53.402 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-14T15:35:53.427 INFO:teuthology.orchestra.console.smithi047:Power off 2024-04-14T15:35:53.428 DEBUG:teuthology.orchestra.console.smithi047:pexpect command: ipmitool -H smithi047.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-14T15:35:53.441 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi138.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-08_20:08:14-orch-main-distro-default-smithi/7646092', '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-14 15:02:53.317927', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBJaCMVvxL05LXz2/7Yd3ga8Ts64AzQHz/6DxV5h9Ud241jbCpmxMu1uws5yM96hNh8L29kELj2CoQjcv0aIbWII='} 2024-04-14T15:35:53.452 DEBUG:teuthology.orchestra.console.smithi047:power off output: Chassis Power Control: Down/Off 2024-04-14T15:35:53.452 DEBUG:teuthology.orchestra.console.smithi047:pexpect command: ipmitool -H smithi047.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-14T15:35:53.472 INFO:teuthology.orchestra.console.smithi110:Power off 2024-04-14T15:35:53.472 DEBUG:teuthology.orchestra.console.smithi110:pexpect command: ipmitool -H smithi110.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-14T15:35:53.485 DEBUG:teuthology.orchestra.console.smithi047:check power output: Chassis Power is on 2024-04-14T15:35:53.494 DEBUG:teuthology.orchestra.console.smithi110:power off output: Chassis Power Control: Down/Off 2024-04-14T15:35:53.494 DEBUG:teuthology.orchestra.console.smithi110:pexpect command: ipmitool -H smithi110.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-14T15:35:53.516 INFO:teuthology.orchestra.console.smithi138:Power off 2024-04-14T15:35:53.516 DEBUG:teuthology.orchestra.console.smithi138:pexpect command: ipmitool -H smithi138.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-14T15:35:53.525 DEBUG:teuthology.orchestra.console.smithi110:check power output: Chassis Power is on 2024-04-14T15:35:53.538 DEBUG:teuthology.orchestra.console.smithi138:power off output: Chassis Power Control: Down/Off 2024-04-14T15:35:53.539 DEBUG:teuthology.orchestra.console.smithi138:pexpect command: ipmitool -H smithi138.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-14T15:35:53.562 DEBUG:teuthology.orchestra.console.smithi138:check power output: Chassis Power is on 2024-04-14T15:35:57.486 DEBUG:teuthology.orchestra.console.smithi047:pexpect command: ipmitool -H smithi047.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-14T15:35:57.527 DEBUG:teuthology.orchestra.console.smithi110:pexpect command: ipmitool -H smithi110.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-14T15:35:57.563 DEBUG:teuthology.orchestra.console.smithi138:pexpect command: ipmitool -H smithi138.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-14T15:35:57.597 DEBUG:teuthology.orchestra.console.smithi047:check power output: Chassis Power is on 2024-04-14T15:35:57.637 DEBUG:teuthology.orchestra.console.smithi110:check power output: Chassis Power is on 2024-04-14T15:35:57.672 DEBUG:teuthology.orchestra.console.smithi138:check power output: Chassis Power is on 2024-04-14T15:36:01.598 DEBUG:teuthology.orchestra.console.smithi047:pexpect command: ipmitool -H smithi047.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-14T15:36:01.638 DEBUG:teuthology.orchestra.console.smithi110:pexpect command: ipmitool -H smithi110.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-14T15:36:01.673 DEBUG:teuthology.orchestra.console.smithi138:pexpect command: ipmitool -H smithi138.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-14T15:36:01.708 DEBUG:teuthology.orchestra.console.smithi047:check power output: Chassis Power is off 2024-04-14T15:36:01.748 DEBUG:teuthology.orchestra.console.smithi110:check power output: Chassis Power is on 2024-04-14T15:36:01.784 DEBUG:teuthology.orchestra.console.smithi138:check power output: Chassis Power is on 2024-04-14T15:36:01.809 INFO:teuthology.orchestra.console.smithi047:Power off completed 2024-04-14T15:36:05.753 DEBUG:teuthology.orchestra.console.smithi110:pexpect command: ipmitool -H smithi110.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-14T15:36:05.785 DEBUG:teuthology.orchestra.console.smithi138:pexpect command: ipmitool -H smithi138.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-14T15:36:05.865 DEBUG:teuthology.orchestra.console.smithi110:check power output: Chassis Power is off 2024-04-14T15:36:05.894 DEBUG:teuthology.orchestra.console.smithi138:check power output: Chassis Power is off 2024-04-14T15:36:05.966 INFO:teuthology.orchestra.console.smithi110:Power off completed 2024-04-14T15:36:05.996 INFO:teuthology.orchestra.console.smithi138:Power off completed 2024-04-14T15:36:06.100 INFO:teuthology.run:Summary data: description: orch/cephadm/workunits/{0-distro/ubuntu_22.04 agent/on mon_election/classic task/test_host_drain} duration: 1409.6129009723663 failure_reason: '"2024-04-14T15:28:15.853448+0000 mon.a (mon.0) 540 : 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-14T15:36:06.100 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-14T15:36:06.169 INFO:teuthology.run:FAIL