2024-09-13T21:47:36.872 INFO:root:teuthology version: 1.2.2.dev2+g3752d38 2024-09-13T21:47:36.887 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-13T21:47:36.962 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-09-13_21:08:03-orch-squid-distro-default-smithi/7904244 branch: squid description: orch/cephadm/workunits/{0-distro/ubuntu_22.04 agent/on mon_election/connectivity task/test_host_drain} email: ceph-qa@ceph.com first_in_suite: false job_id: '7904244' kernel: kdb: 1 sha1: distro ktype: distro last_in_suite: false machine_type: smithi name: teuthology-2024-09-13_21:08:03-orch-squid-distro-default-smithi no_nested_subset: false os_type: ubuntu os_version: '22.04' overrides: admin_socket: branch: squid ceph: conf: global: mon election default strategy: 3 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 - CEPHADM_STRAY_HOST - CEPHADM_STRAY_DAEMON - CEPHADM_FAILED_DAEMON log-only-match: - CEPHADM_ sha1: ecab7be58963a5bd03910cd73eef66405d7fdd50 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: ecab7be58963a5bd03910cd73eef66405d7fdd50 workunit: branch: squid sha1: ecab7be58963a5bd03910cd73eef66405d7fdd50 owner: scheduled_teuthology@teuthology priority: 100 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: 3819 sha1: ecab7be58963a5bd03910cd73eef66405d7fdd50 sleep_before_teardown: 0 subset: 43/64 suite: orch suite_branch: squid suite_path: /home/teuthworker/src/git.ceph.com_ceph_ecab7be58963a5bd03910cd73eef66405d7fdd50/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph.git suite_sha1: ecab7be58963a5bd03910cd73eef66405d7fdd50 targets: smithi031.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFWBs69LH+K9Tl0rNwi76Rcy+hSJvwsTwMQGIfnQqTQJ6p1dfYhMX68YfjWWr1+sE4H2Bx9SjGmGCMwDfLJD8/o= smithi096.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBOXCpuznfgtVkh/6vY0qD/jG/mPPN+g2o4b0Fi7zh9QO/SBzu2hfxL9WeAZfRG1l2991PdFaRc6WRqDQvBQbXOY= smithi138.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBKcXWowmtLa4I5Lv1oy9QmpL7JqamsbzsMf8/H1yKQv2yiXmngKYccL/D65GRUHu+lFJ2H+Z8V8yi8A6VfuZR28= tasks: - install: null - cephadm: null - cephadm.shell: host.a: - "set -ex\nHOSTNAMES=$(ceph orch host ls --format json | jq -r '.[] | .hostname')\n\ for host in $HOSTNAMES; do\n # find the hostname for \"host.c\" which will\ \ have no mgr\n HAS_MGRS=$(ceph orch ps --hostname ${host} --format json |\ \ jq 'any(.daemon_type == \"mgr\")')\n if [ \"$HAS_MGRS\" == \"false\" ]; then\n\ \ HOST_C=\"${host}\"\n fi\ndone\n# One last thing to worry about before\ \ draining the host\n# is that the teuthology test tends to put the explicit\n\ # hostnames in the placement for the mon service.\n# We want to make sure we\ \ can drain without providing\n# --force and there is a check for the host being\ \ removed\n# being listed explicitly in the placements. Therefore,\n# we should\ \ remove it from the mon placement.\nceph orch ls mon --export > mon.yaml\n\ sed /\"$HOST_C\"/d mon.yaml > mon_adjusted.yaml\nceph orch apply -i mon_adjusted.yaml\n\ # now drain that host\nceph orch host drain $HOST_C --zap-osd-devices\n# wait\ \ for drain to complete\nHOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C)\n\ while [ \"$HOST_C_DAEMONS\" != \"No daemons reported\" ]; do\n sleep 15\n \ \ HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C)\ndone\n# we want to check\ \ the ability to remove the host from\n# the CRUSH map, so we should first verify\ \ the host is in\n# the CRUSH map.\nceph osd getcrushmap -o compiled-crushmap\n\ crushtool -d compiled-crushmap -o crushmap.txt\nCRUSH_MAP=$(cat crushmap.txt)\n\ if ! grep -q \"$HOST_C\" <<< \"$CRUSH_MAP\"; then\n printf \"Expected to see\ \ $HOST_C in CRUSH map. Saw:\\n\\n$CRUSH_MAP\"\n exit 1\nfi\n# If the drain\ \ was successful, we should be able to remove the\n# host without force with\ \ no issues. If there are still daemons\n# we will get a response telling us\ \ to drain the host and a\n# non-zero return code\nceph orch host rm $HOST_C\ \ --rm-crush-entry\n# verify we've successfully removed the host from the CRUSH\ \ map\nsleep 30\nceph osd getcrushmap -o compiled-crushmap\ncrushtool -d compiled-crushmap\ \ -o crushmap.txt\nCRUSH_MAP=$(cat crushmap.txt)\nif grep -q \"$HOST_C\" <<<\ \ \"$CRUSH_MAP\"; then\n printf \"Saw $HOST_C in CRUSH map after it should\ \ have been removed.\\n\\n$CRUSH_MAP\"\n exit 1\nfi\n" teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: main teuthology_sha1: 3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a timestamp: 2024-09-13_21:08:03 tube: smithi user: teuthology verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.3401856 2024-09-13T21:47:36.962 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_ecab7be58963a5bd03910cd73eef66405d7fdd50/qa; will attempt to use it 2024-09-13T21:47:36.963 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_ecab7be58963a5bd03910cd73eef66405d7fdd50/qa/tasks 2024-09-13T21:47:36.963 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-09-13T21:47:36.964 INFO:teuthology.task.internal:Checking packages... 2024-09-13T21:47:36.985 INFO:teuthology.task.internal:Checking packages for os_type 'ubuntu', flavor 'default' and ceph hash 'ecab7be58963a5bd03910cd73eef66405d7fdd50' 2024-09-13T21:47:36.985 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-09-13T21:47:36.985 INFO:teuthology.packaging:ref: None 2024-09-13T21:47:36.985 INFO:teuthology.packaging:tag: None 2024-09-13T21:47:36.985 INFO:teuthology.packaging:branch: squid 2024-09-13T21:47:36.985 INFO:teuthology.packaging:sha1: ecab7be58963a5bd03910cd73eef66405d7fdd50 2024-09-13T21:47:36.986 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&ref=squid 2024-09-13T21:47:37.230 INFO:teuthology.task.internal:Found packages for ceph version 19.1.1-324-gecab7be5-1jammy 2024-09-13T21:47:37.233 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-09-13T21:47:37.240 INFO:teuthology.task.internal:no buildpackages task found 2024-09-13T21:47:37.240 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-09-13T21:47:37.247 INFO:teuthology.task.internal:Saving configuration 2024-09-13T21:47:37.259 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-09-13T21:47:37.265 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-09-13T21:47:37.291 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi031.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-09-13_21:08:03-orch-squid-distro-default-smithi/7904244', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-13 21:41:56.002239', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILlt980KOk0x6g5C1W9BUBfqb1vpRNivW09DQa0Z9583'} 2024-09-13T21:47:37.321 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi096.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-09-13_21:08:03-orch-squid-distro-default-smithi/7904244', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-13 21:41:56.001037', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPUf5Q/3evp+kG+vAxeNXMFTlf8722aEgD3jI9UhFgPz'} 2024-09-13T21:47:37.352 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi138.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-09-13_21:08:03-orch-squid-distro-default-smithi/7904244', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-13 21:41:56.003128', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKi6UI/fW4nL/STAhzZ5Ej9jhkspeqQNWgoAeuCc8br1'} 2024-09-13T21:47:37.352 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-09-13T21:47:37.359 INFO:teuthology.task.internal:roles: ubuntu@smithi031.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2024-09-13T21:47:37.359 INFO:teuthology.task.internal:roles: ubuntu@smithi096.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2024-09-13T21:47:37.359 INFO:teuthology.task.internal:roles: ubuntu@smithi138.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2024-09-13T21:47:37.359 INFO:teuthology.run_tasks:Running task console_log... 2024-09-13T21:47:37.460 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f3c7a9ff640>, signals=[15]) 2024-09-13T21:47:37.460 INFO:teuthology.run_tasks:Running task internal.connect... 2024-09-13T21:47:37.466 INFO:teuthology.task.internal:Opening connections... 2024-09-13T21:47:37.466 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi031.front.sepia.ceph.com 2024-09-13T21:47:37.467 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi031.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T21:47:37.557 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi096.front.sepia.ceph.com 2024-09-13T21:47:37.558 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi096.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T21:47:37.647 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi138.front.sepia.ceph.com 2024-09-13T21:47:37.648 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi138.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T21:47:37.735 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-09-13T21:47:37.742 DEBUG:teuthology.orchestra.run.smithi031:> uname -m 2024-09-13T21:47:37.748 INFO:teuthology.orchestra.run.smithi031.stdout:x86_64 2024-09-13T21:47:37.748 DEBUG:teuthology.orchestra.run.smithi031:> cat /etc/os-release 2024-09-13T21:47:37.796 INFO:teuthology.orchestra.run.smithi031.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-09-13T21:47:37.796 INFO:teuthology.orchestra.run.smithi031.stdout:NAME="Ubuntu" 2024-09-13T21:47:37.796 INFO:teuthology.orchestra.run.smithi031.stdout:VERSION_ID="22.04" 2024-09-13T21:47:37.796 INFO:teuthology.orchestra.run.smithi031.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-09-13T21:47:37.796 INFO:teuthology.orchestra.run.smithi031.stdout:VERSION_CODENAME=jammy 2024-09-13T21:47:37.796 INFO:teuthology.orchestra.run.smithi031.stdout:ID=ubuntu 2024-09-13T21:47:37.796 INFO:teuthology.orchestra.run.smithi031.stdout:ID_LIKE=debian 2024-09-13T21:47:37.797 INFO:teuthology.orchestra.run.smithi031.stdout:HOME_URL="https://www.ubuntu.com/" 2024-09-13T21:47:37.797 INFO:teuthology.orchestra.run.smithi031.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-09-13T21:47:37.797 INFO:teuthology.orchestra.run.smithi031.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-09-13T21:47:37.797 INFO:teuthology.orchestra.run.smithi031.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-09-13T21:47:37.797 INFO:teuthology.orchestra.run.smithi031.stdout:UBUNTU_CODENAME=jammy 2024-09-13T21:47:37.797 INFO:teuthology.lock.ops:Updating smithi031.front.sepia.ceph.com on lock server 2024-09-13T21:47:37.822 DEBUG:teuthology.orchestra.run.smithi096:> uname -m 2024-09-13T21:47:37.828 INFO:teuthology.orchestra.run.smithi096.stdout:x86_64 2024-09-13T21:47:37.829 DEBUG:teuthology.orchestra.run.smithi096:> cat /etc/os-release 2024-09-13T21:47:37.876 INFO:teuthology.orchestra.run.smithi096.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-09-13T21:47:37.877 INFO:teuthology.orchestra.run.smithi096.stdout:NAME="Ubuntu" 2024-09-13T21:47:37.877 INFO:teuthology.orchestra.run.smithi096.stdout:VERSION_ID="22.04" 2024-09-13T21:47:37.877 INFO:teuthology.orchestra.run.smithi096.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-09-13T21:47:37.877 INFO:teuthology.orchestra.run.smithi096.stdout:VERSION_CODENAME=jammy 2024-09-13T21:47:37.877 INFO:teuthology.orchestra.run.smithi096.stdout:ID=ubuntu 2024-09-13T21:47:37.877 INFO:teuthology.orchestra.run.smithi096.stdout:ID_LIKE=debian 2024-09-13T21:47:37.877 INFO:teuthology.orchestra.run.smithi096.stdout:HOME_URL="https://www.ubuntu.com/" 2024-09-13T21:47:37.877 INFO:teuthology.orchestra.run.smithi096.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-09-13T21:47:37.877 INFO:teuthology.orchestra.run.smithi096.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-09-13T21:47:37.877 INFO:teuthology.orchestra.run.smithi096.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-09-13T21:47:37.877 INFO:teuthology.orchestra.run.smithi096.stdout:UBUNTU_CODENAME=jammy 2024-09-13T21:47:37.878 INFO:teuthology.lock.ops:Updating smithi096.front.sepia.ceph.com on lock server 2024-09-13T21:47:37.906 DEBUG:teuthology.orchestra.run.smithi138:> uname -m 2024-09-13T21:47:37.911 INFO:teuthology.orchestra.run.smithi138.stdout:x86_64 2024-09-13T21:47:37.912 DEBUG:teuthology.orchestra.run.smithi138:> cat /etc/os-release 2024-09-13T21:47:37.957 INFO:teuthology.orchestra.run.smithi138.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-09-13T21:47:37.957 INFO:teuthology.orchestra.run.smithi138.stdout:NAME="Ubuntu" 2024-09-13T21:47:37.958 INFO:teuthology.orchestra.run.smithi138.stdout:VERSION_ID="22.04" 2024-09-13T21:47:37.958 INFO:teuthology.orchestra.run.smithi138.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-09-13T21:47:37.958 INFO:teuthology.orchestra.run.smithi138.stdout:VERSION_CODENAME=jammy 2024-09-13T21:47:37.958 INFO:teuthology.orchestra.run.smithi138.stdout:ID=ubuntu 2024-09-13T21:47:37.958 INFO:teuthology.orchestra.run.smithi138.stdout:ID_LIKE=debian 2024-09-13T21:47:37.958 INFO:teuthology.orchestra.run.smithi138.stdout:HOME_URL="https://www.ubuntu.com/" 2024-09-13T21:47:37.958 INFO:teuthology.orchestra.run.smithi138.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-09-13T21:47:37.958 INFO:teuthology.orchestra.run.smithi138.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-09-13T21:47:37.958 INFO:teuthology.orchestra.run.smithi138.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-09-13T21:47:37.958 INFO:teuthology.orchestra.run.smithi138.stdout:UBUNTU_CODENAME=jammy 2024-09-13T21:47:37.958 INFO:teuthology.lock.ops:Updating smithi138.front.sepia.ceph.com on lock server 2024-09-13T21:47:37.989 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-09-13T21:47:37.998 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-09-13T21:47:38.005 INFO:teuthology.task.internal:Checking for old test directory... 2024-09-13T21:47:38.005 DEBUG:teuthology.orchestra.run.smithi031:> test '!' -e /home/ubuntu/cephtest 2024-09-13T21:47:38.008 DEBUG:teuthology.orchestra.run.smithi096:> test '!' -e /home/ubuntu/cephtest 2024-09-13T21:47:38.010 DEBUG:teuthology.orchestra.run.smithi138:> test '!' -e /home/ubuntu/cephtest 2024-09-13T21:47:38.015 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-09-13T21:47:38.021 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-09-13T21:47:38.022 DEBUG:teuthology.orchestra.run.smithi031:> test -z $(ls -A /var/lib/ceph) 2024-09-13T21:47:38.054 DEBUG:teuthology.orchestra.run.smithi096:> test -z $(ls -A /var/lib/ceph) 2024-09-13T21:47:38.058 DEBUG:teuthology.orchestra.run.smithi138:> test -z $(ls -A /var/lib/ceph) 2024-09-13T21:47:38.089 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-09-13T21:47:38.183 INFO:teuthology.run_tasks:Running task kernel... 2024-09-13T21:47:38.197 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-09-13T21:47:38.197 INFO:teuthology.task.kernel:config {'host.a': {'kdb': 1, 'sha1': 'distro'}, 'host.b': {'kdb': 1, 'sha1': 'distro'}, 'host.c': {'kdb': 1, 'sha1': 'distro'}}, timeout 300 2024-09-13T21:47:38.197 DEBUG:teuthology.orchestra.run.smithi031:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-13T21:47:38.198 DEBUG:teuthology.orchestra.run.smithi096:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-13T21:47:38.198 DEBUG:teuthology.orchestra.run.smithi138:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-13T21:47:38.203 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-13T21:47:38.203 DEBUG:teuthology.orchestra.run.smithi096:> uname -r 2024-09-13T21:47:38.204 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-13T21:47:38.204 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-13T21:47:38.205 DEBUG:teuthology.orchestra.run.smithi138:> uname -r 2024-09-13T21:47:38.205 DEBUG:teuthology.orchestra.run.smithi031:> uname -r 2024-09-13T21:47:38.249 INFO:teuthology.orchestra.run.smithi096.stdout:5.15.0-56-generic 2024-09-13T21:47:38.249 INFO:teuthology.task.kernel:Running kernel on smithi096: 5.15.0-56-generic 2024-09-13T21:47:38.249 DEBUG:teuthology.orchestra.run.smithi096:> sudo apt-get clean 2024-09-13T21:47:38.254 INFO:teuthology.orchestra.run.smithi138.stdout:5.15.0-56-generic 2024-09-13T21:47:38.254 INFO:teuthology.task.kernel:Running kernel on smithi138: 5.15.0-56-generic 2024-09-13T21:47:38.254 DEBUG:teuthology.orchestra.run.smithi138:> sudo apt-get clean 2024-09-13T21:47:38.255 INFO:teuthology.orchestra.run.smithi031.stdout:5.15.0-56-generic 2024-09-13T21:47:38.255 INFO:teuthology.task.kernel:Running kernel on smithi031: 5.15.0-56-generic 2024-09-13T21:47:38.256 DEBUG:teuthology.orchestra.run.smithi031:> sudo apt-get clean 2024-09-13T21:47:38.391 DEBUG:teuthology.orchestra.run.smithi096:> sudo apt-get update 2024-09-13T21:47:38.399 DEBUG:teuthology.orchestra.run.smithi031:> sudo apt-get update 2024-09-13T21:47:38.402 DEBUG:teuthology.orchestra.run.smithi138:> sudo apt-get update 2024-09-13T21:47:38.545 INFO:teuthology.orchestra.run.smithi096.stdout:Get:1 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB] 2024-09-13T21:47:38.551 INFO:teuthology.orchestra.run.smithi138.stdout:Get:1 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB] 2024-09-13T21:47:38.639 INFO:teuthology.orchestra.run.smithi096.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-13T21:47:38.667 INFO:teuthology.orchestra.run.smithi138.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-13T21:47:38.695 INFO:teuthology.orchestra.run.smithi031.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-13T21:47:38.695 INFO:teuthology.orchestra.run.smithi031.stdout:Get:2 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB] 2024-09-13T21:47:38.724 INFO:teuthology.orchestra.run.smithi096.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] 2024-09-13T21:47:38.741 INFO:teuthology.orchestra.run.smithi096.stdout:Get:4 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,806 kB] 2024-09-13T21:47:38.748 INFO:teuthology.orchestra.run.smithi031.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] 2024-09-13T21:47:38.748 INFO:teuthology.orchestra.run.smithi138.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] 2024-09-13T21:47:38.779 INFO:teuthology.orchestra.run.smithi138.stdout:Get:4 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [539 kB] 2024-09-13T21:47:38.848 INFO:teuthology.orchestra.run.smithi096.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [539 kB] 2024-09-13T21:47:38.850 INFO:teuthology.orchestra.run.smithi138.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,806 kB] 2024-09-13T21:47:38.852 INFO:teuthology.orchestra.run.smithi096.stdout:Get:6 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [295 kB] 2024-09-13T21:47:38.854 INFO:teuthology.orchestra.run.smithi096.stdout:Get:7 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [13.3 kB] 2024-09-13T21:47:38.854 INFO:teuthology.orchestra.run.smithi096.stdout:Get:8 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [2,377 kB] 2024-09-13T21:47:38.875 INFO:teuthology.orchestra.run.smithi096.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [37.7 kB] 2024-09-13T21:47:38.875 INFO:teuthology.orchestra.run.smithi096.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [409 kB] 2024-09-13T21:47:38.878 INFO:teuthology.orchestra.run.smithi096.stdout:Get:11 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [584 B] 2024-09-13T21:47:38.878 INFO:teuthology.orchestra.run.smithi096.stdout:Get:12 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [902 kB] 2024-09-13T21:47:38.884 INFO:teuthology.orchestra.run.smithi096.stdout:Get:13 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [627 kB] 2024-09-13T21:47:38.888 INFO:teuthology.orchestra.run.smithi096.stdout:Get:14 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [176 kB] 2024-09-13T21:47:38.889 INFO:teuthology.orchestra.run.smithi096.stdout:Get:15 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [19.2 kB] 2024-09-13T21:47:38.889 INFO:teuthology.orchestra.run.smithi096.stdout:Get:16 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-09-13T21:47:38.893 INFO:teuthology.orchestra.run.smithi138.stdout:Get:6 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [295 kB] 2024-09-13T21:47:38.894 INFO:teuthology.orchestra.run.smithi096.stdout:Get:17 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-09-13T21:47:38.897 INFO:teuthology.orchestra.run.smithi138.stdout:Get:7 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [13.3 kB] 2024-09-13T21:47:38.897 INFO:teuthology.orchestra.run.smithi138.stdout:Get:8 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [2,377 kB] 2024-09-13T21:47:38.906 INFO:teuthology.orchestra.run.smithi096.stdout:Get:18 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-09-13T21:47:38.917 INFO:teuthology.orchestra.run.smithi138.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [37.7 kB] 2024-09-13T21:47:38.917 INFO:teuthology.orchestra.run.smithi138.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [409 kB] 2024-09-13T21:47:38.920 INFO:teuthology.orchestra.run.smithi138.stdout:Get:11 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [584 B] 2024-09-13T21:47:38.920 INFO:teuthology.orchestra.run.smithi138.stdout:Get:12 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [902 kB] 2024-09-13T21:47:38.924 INFO:teuthology.orchestra.run.smithi096.stdout:Get:19 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [228 B] 2024-09-13T21:47:38.926 INFO:teuthology.orchestra.run.smithi138.stdout:Get:13 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [627 kB] 2024-09-13T21:47:38.930 INFO:teuthology.orchestra.run.smithi138.stdout:Get:14 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [176 kB] 2024-09-13T21:47:38.931 INFO:teuthology.orchestra.run.smithi138.stdout:Get:15 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [19.2 kB] 2024-09-13T21:47:38.932 INFO:teuthology.orchestra.run.smithi138.stdout:Get:16 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-09-13T21:47:38.932 INFO:teuthology.orchestra.run.smithi138.stdout:Get:17 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-09-13T21:47:38.979 INFO:teuthology.orchestra.run.smithi138.stdout:Get:18 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-09-13T21:47:38.979 INFO:teuthology.orchestra.run.smithi138.stdout:Get:19 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [228 B] 2024-09-13T21:47:39.076 INFO:teuthology.orchestra.run.smithi096.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB] 2024-09-13T21:47:39.104 INFO:teuthology.orchestra.run.smithi031.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB] 2024-09-13T21:47:39.105 INFO:teuthology.orchestra.run.smithi138.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB] 2024-09-13T21:47:39.128 INFO:teuthology.orchestra.run.smithi031.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [539 kB] 2024-09-13T21:47:39.215 INFO:teuthology.orchestra.run.smithi096.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [2,023 kB] 2024-09-13T21:47:39.242 INFO:teuthology.orchestra.run.smithi031.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [696 kB] 2024-09-13T21:47:39.245 INFO:teuthology.orchestra.run.smithi138.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [2,023 kB] 2024-09-13T21:47:39.425 INFO:teuthology.orchestra.run.smithi031.stdout:Get:7 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,806 kB] 2024-09-13T21:47:39.439 INFO:teuthology.orchestra.run.smithi031.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [2,023 kB] 2024-09-13T21:47:39.553 INFO:teuthology.orchestra.run.smithi096.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [696 kB] 2024-09-13T21:47:39.567 INFO:teuthology.orchestra.run.smithi138.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [696 kB] 2024-09-13T21:47:39.587 INFO:teuthology.orchestra.run.smithi096.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [352 kB] 2024-09-13T21:47:39.598 INFO:teuthology.orchestra.run.smithi031.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [295 kB] 2024-09-13T21:47:39.601 INFO:teuthology.orchestra.run.smithi096.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [17.8 kB] 2024-09-13T21:47:39.601 INFO:teuthology.orchestra.run.smithi031.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [352 kB] 2024-09-13T21:47:39.601 INFO:teuthology.orchestra.run.smithi138.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [352 kB] 2024-09-13T21:47:39.602 INFO:teuthology.orchestra.run.smithi096.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [39.3 kB] 2024-09-13T21:47:39.603 INFO:teuthology.orchestra.run.smithi096.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [2,437 kB] 2024-09-13T21:47:39.610 INFO:teuthology.orchestra.run.smithi031.stdout:Get:11 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [13.3 kB] 2024-09-13T21:47:39.612 INFO:teuthology.orchestra.run.smithi031.stdout:Get:12 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [2,377 kB] 2024-09-13T21:47:39.614 INFO:teuthology.orchestra.run.smithi031.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [17.8 kB] 2024-09-13T21:47:39.616 INFO:teuthology.orchestra.run.smithi138.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [17.8 kB] 2024-09-13T21:47:39.616 INFO:teuthology.orchestra.run.smithi031.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [2,437 kB] 2024-09-13T21:47:39.616 INFO:teuthology.orchestra.run.smithi138.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [39.3 kB] 2024-09-13T21:47:39.618 INFO:teuthology.orchestra.run.smithi138.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [2,437 kB] 2024-09-13T21:47:39.671 INFO:teuthology.orchestra.run.smithi096.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [419 kB] 2024-09-13T21:47:39.685 INFO:teuthology.orchestra.run.smithi031.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [39.3 kB] 2024-09-13T21:47:39.686 INFO:teuthology.orchestra.run.smithi096.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [616 B] 2024-09-13T21:47:39.687 INFO:teuthology.orchestra.run.smithi138.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [419 kB] 2024-09-13T21:47:39.687 INFO:teuthology.orchestra.run.smithi031.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [419 kB] 2024-09-13T21:47:39.687 INFO:teuthology.orchestra.run.smithi096.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,124 kB] 2024-09-13T21:47:39.696 INFO:teuthology.orchestra.run.smithi031.stdout:Get:17 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [37.7 kB] 2024-09-13T21:47:39.697 INFO:teuthology.orchestra.run.smithi031.stdout:Get:18 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [409 kB] 2024-09-13T21:47:39.702 INFO:teuthology.orchestra.run.smithi138.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [616 B] 2024-09-13T21:47:39.702 INFO:teuthology.orchestra.run.smithi138.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,124 kB] 2024-09-13T21:47:39.722 INFO:teuthology.orchestra.run.smithi096.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [732 kB] 2024-09-13T21:47:39.731 INFO:teuthology.orchestra.run.smithi031.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [616 B] 2024-09-13T21:47:39.731 INFO:teuthology.orchestra.run.smithi031.stdout:Get:20 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [584 B] 2024-09-13T21:47:39.731 INFO:teuthology.orchestra.run.smithi031.stdout:Get:21 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [902 kB] 2024-09-13T21:47:39.731 INFO:teuthology.orchestra.run.smithi031.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [732 kB] 2024-09-13T21:47:39.736 INFO:teuthology.orchestra.run.smithi138.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [732 kB] 2024-09-13T21:47:39.743 INFO:teuthology.orchestra.run.smithi096.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [261 kB] 2024-09-13T21:47:39.748 INFO:teuthology.orchestra.run.smithi096.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [26.1 kB] 2024-09-13T21:47:39.749 INFO:teuthology.orchestra.run.smithi031.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,124 kB] 2024-09-13T21:47:39.749 INFO:teuthology.orchestra.run.smithi096.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [43.3 kB] 2024-09-13T21:47:39.750 INFO:teuthology.orchestra.run.smithi096.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,752 B] 2024-09-13T21:47:39.751 INFO:teuthology.orchestra.run.smithi096.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.8 kB] 2024-09-13T21:47:39.752 INFO:teuthology.orchestra.run.smithi031.stdout:Get:24 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [627 kB] 2024-09-13T21:47:39.755 INFO:teuthology.orchestra.run.smithi138.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [261 kB] 2024-09-13T21:47:39.760 INFO:teuthology.orchestra.run.smithi138.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [26.1 kB] 2024-09-13T21:47:39.761 INFO:teuthology.orchestra.run.smithi138.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [43.3 kB] 2024-09-13T21:47:39.763 INFO:teuthology.orchestra.run.smithi138.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,752 B] 2024-09-13T21:47:39.763 INFO:teuthology.orchestra.run.smithi138.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.8 kB] 2024-09-13T21:47:39.766 INFO:teuthology.orchestra.run.smithi031.stdout:Get:25 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [176 kB] 2024-09-13T21:47:39.769 INFO:teuthology.orchestra.run.smithi031.stdout:Get:26 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [19.2 kB] 2024-09-13T21:47:39.769 INFO:teuthology.orchestra.run.smithi031.stdout:Get:27 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-09-13T21:47:39.770 INFO:teuthology.orchestra.run.smithi031.stdout:Get:28 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-09-13T21:47:39.772 INFO:teuthology.orchestra.run.smithi031.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [261 kB] 2024-09-13T21:47:39.775 INFO:teuthology.orchestra.run.smithi031.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [26.1 kB] 2024-09-13T21:47:39.776 INFO:teuthology.orchestra.run.smithi031.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [43.3 kB] 2024-09-13T21:47:39.776 INFO:teuthology.orchestra.run.smithi031.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,752 B] 2024-09-13T21:47:39.800 INFO:teuthology.orchestra.run.smithi096.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [444 B] 2024-09-13T21:47:39.801 INFO:teuthology.orchestra.run.smithi096.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.9 kB] 2024-09-13T21:47:39.802 INFO:teuthology.orchestra.run.smithi096.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.8 kB] 2024-09-13T21:47:39.816 INFO:teuthology.orchestra.run.smithi138.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [444 B] 2024-09-13T21:47:39.816 INFO:teuthology.orchestra.run.smithi138.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.8 kB] 2024-09-13T21:47:39.817 INFO:teuthology.orchestra.run.smithi138.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.9 kB] 2024-09-13T21:47:39.833 INFO:teuthology.orchestra.run.smithi096.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.1 kB] 2024-09-13T21:47:39.834 INFO:teuthology.orchestra.run.smithi096.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-09-13T21:47:39.834 INFO:teuthology.orchestra.run.smithi096.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.8 kB] 2024-09-13T21:47:39.835 INFO:teuthology.orchestra.run.smithi096.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.3 kB] 2024-09-13T21:47:39.835 INFO:teuthology.orchestra.run.smithi096.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.5 kB] 2024-09-13T21:47:39.845 INFO:teuthology.orchestra.run.smithi031.stdout:Get:33 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-09-13T21:47:39.845 INFO:teuthology.orchestra.run.smithi031.stdout:Get:34 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [228 B] 2024-09-13T21:47:39.846 INFO:teuthology.orchestra.run.smithi138.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.1 kB] 2024-09-13T21:47:39.846 INFO:teuthology.orchestra.run.smithi138.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-09-13T21:47:39.846 INFO:teuthology.orchestra.run.smithi138.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.3 kB] 2024-09-13T21:47:39.847 INFO:teuthology.orchestra.run.smithi138.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.8 kB] 2024-09-13T21:47:39.847 INFO:teuthology.orchestra.run.smithi138.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.5 kB] 2024-09-13T21:47:39.848 INFO:teuthology.orchestra.run.smithi031.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.8 kB] 2024-09-13T21:47:39.849 INFO:teuthology.orchestra.run.smithi031.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [444 B] 2024-09-13T21:47:39.849 INFO:teuthology.orchestra.run.smithi031.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.8 kB] 2024-09-13T21:47:39.850 INFO:teuthology.orchestra.run.smithi031.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.9 kB] 2024-09-13T21:47:39.850 INFO:teuthology.orchestra.run.smithi031.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.1 kB] 2024-09-13T21:47:39.882 INFO:teuthology.orchestra.run.smithi096.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [672 B] 2024-09-13T21:47:39.897 INFO:teuthology.orchestra.run.smithi138.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [672 B] 2024-09-13T21:47:39.930 INFO:teuthology.orchestra.run.smithi031.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-09-13T21:47:39.932 INFO:teuthology.orchestra.run.smithi031.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.3 kB] 2024-09-13T21:47:39.934 INFO:teuthology.orchestra.run.smithi031.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.8 kB] 2024-09-13T21:47:39.934 INFO:teuthology.orchestra.run.smithi031.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.5 kB] 2024-09-13T21:47:39.934 INFO:teuthology.orchestra.run.smithi031.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [672 B] 2024-09-13T21:47:45.114 INFO:teuthology.orchestra.run.smithi096.stdout:Fetched 16.0 MB in 2s (7,500 kB/s) 2024-09-13T21:47:45.213 INFO:teuthology.orchestra.run.smithi138.stdout:Fetched 16.0 MB in 2s (7,520 kB/s) 2024-09-13T21:47:46.174 INFO:teuthology.orchestra.run.smithi031.stdout:Fetched 16.0 MB in 3s (5,674 kB/s) 2024-09-13T21:47:46.474 INFO:teuthology.orchestra.run.smithi096.stdout:Reading package lists... 2024-09-13T21:47:46.491 DEBUG:teuthology.orchestra.run.smithi096:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-13T21:47:46.556 INFO:teuthology.orchestra.run.smithi096.stdout:Reading package lists... 2024-09-13T21:47:46.766 INFO:teuthology.orchestra.run.smithi096.stdout:Building dependency tree... 2024-09-13T21:47:46.766 INFO:teuthology.orchestra.run.smithi138.stdout:Reading package lists... 2024-09-13T21:47:46.767 INFO:teuthology.orchestra.run.smithi096.stdout:Reading state information... 2024-09-13T21:47:46.785 DEBUG:teuthology.orchestra.run.smithi138:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-13T21:47:46.851 INFO:teuthology.orchestra.run.smithi138.stdout:Reading package lists... 2024-09-13T21:47:46.951 INFO:teuthology.orchestra.run.smithi096.stdout:The following packages were automatically installed and are no longer required: 2024-09-13T21:47:46.951 INFO:teuthology.orchestra.run.smithi096.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-13T21:47:46.951 INFO:teuthology.orchestra.run.smithi096.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-13T21:47:46.952 INFO:teuthology.orchestra.run.smithi096.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-13T21:47:46.952 INFO:teuthology.orchestra.run.smithi096.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-09-13T21:47:46.952 INFO:teuthology.orchestra.run.smithi096.stdout: python2.7-minimal 2024-09-13T21:47:46.952 INFO:teuthology.orchestra.run.smithi096.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-13T21:47:46.954 INFO:teuthology.orchestra.run.smithi096.stdout:The following additional packages will be installed: 2024-09-13T21:47:46.954 INFO:teuthology.orchestra.run.smithi096.stdout: linux-generic linux-headers-5.15.0-121 linux-headers-5.15.0-121-generic 2024-09-13T21:47:46.954 INFO:teuthology.orchestra.run.smithi096.stdout: linux-headers-generic linux-image-5.15.0-121-generic 2024-09-13T21:47:46.954 INFO:teuthology.orchestra.run.smithi096.stdout: linux-modules-5.15.0-121-generic linux-modules-extra-5.15.0-121-generic 2024-09-13T21:47:46.956 INFO:teuthology.orchestra.run.smithi096.stdout:Suggested packages: 2024-09-13T21:47:46.956 INFO:teuthology.orchestra.run.smithi096.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-09-13T21:47:46.956 INFO:teuthology.orchestra.run.smithi096.stdout:Recommended packages: 2024-09-13T21:47:46.956 INFO:teuthology.orchestra.run.smithi096.stdout: thermald 2024-09-13T21:47:47.000 INFO:teuthology.orchestra.run.smithi096.stdout:The following NEW packages will be installed: 2024-09-13T21:47:47.000 INFO:teuthology.orchestra.run.smithi096.stdout: linux-headers-5.15.0-121 linux-headers-5.15.0-121-generic 2024-09-13T21:47:47.000 INFO:teuthology.orchestra.run.smithi096.stdout: linux-image-5.15.0-121-generic linux-modules-5.15.0-121-generic 2024-09-13T21:47:47.001 INFO:teuthology.orchestra.run.smithi096.stdout: linux-modules-extra-5.15.0-121-generic 2024-09-13T21:47:47.002 INFO:teuthology.orchestra.run.smithi096.stdout:The following packages will be upgraded: 2024-09-13T21:47:47.003 INFO:teuthology.orchestra.run.smithi096.stdout: linux-generic linux-headers-generic linux-image-generic 2024-09-13T21:47:47.062 INFO:teuthology.orchestra.run.smithi138.stdout:Building dependency tree... 2024-09-13T21:47:47.062 INFO:teuthology.orchestra.run.smithi138.stdout:Reading state information... 2024-09-13T21:47:47.182 INFO:teuthology.orchestra.run.smithi096.stdout:3 upgraded, 5 newly installed, 0 to remove and 344 not upgraded. 2024-09-13T21:47:47.182 INFO:teuthology.orchestra.run.smithi096.stdout:Need to get 113 MB of archives. 2024-09-13T21:47:47.182 INFO:teuthology.orchestra.run.smithi096.stdout:After this operation, 584 MB of additional disk space will be used. 2024-09-13T21:47:47.183 INFO:teuthology.orchestra.run.smithi096.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-121-generic amd64 5.15.0-121.131 [22.7 MB] 2024-09-13T21:47:47.250 INFO:teuthology.orchestra.run.smithi138.stdout:The following packages were automatically installed and are no longer required: 2024-09-13T21:47:47.250 INFO:teuthology.orchestra.run.smithi138.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-13T21:47:47.250 INFO:teuthology.orchestra.run.smithi138.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-13T21:47:47.251 INFO:teuthology.orchestra.run.smithi138.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-13T21:47:47.251 INFO:teuthology.orchestra.run.smithi138.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-09-13T21:47:47.251 INFO:teuthology.orchestra.run.smithi138.stdout: python2.7-minimal 2024-09-13T21:47:47.251 INFO:teuthology.orchestra.run.smithi138.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-13T21:47:47.253 INFO:teuthology.orchestra.run.smithi138.stdout:The following additional packages will be installed: 2024-09-13T21:47:47.253 INFO:teuthology.orchestra.run.smithi138.stdout: linux-generic linux-headers-5.15.0-121 linux-headers-5.15.0-121-generic 2024-09-13T21:47:47.253 INFO:teuthology.orchestra.run.smithi138.stdout: linux-headers-generic linux-image-5.15.0-121-generic 2024-09-13T21:47:47.253 INFO:teuthology.orchestra.run.smithi138.stdout: linux-modules-5.15.0-121-generic linux-modules-extra-5.15.0-121-generic 2024-09-13T21:47:47.254 INFO:teuthology.orchestra.run.smithi138.stdout:Suggested packages: 2024-09-13T21:47:47.254 INFO:teuthology.orchestra.run.smithi138.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-09-13T21:47:47.254 INFO:teuthology.orchestra.run.smithi138.stdout:Recommended packages: 2024-09-13T21:47:47.254 INFO:teuthology.orchestra.run.smithi138.stdout: thermald 2024-09-13T21:47:47.302 INFO:teuthology.orchestra.run.smithi138.stdout:The following NEW packages will be installed: 2024-09-13T21:47:47.303 INFO:teuthology.orchestra.run.smithi138.stdout: linux-headers-5.15.0-121 linux-headers-5.15.0-121-generic 2024-09-13T21:47:47.303 INFO:teuthology.orchestra.run.smithi138.stdout: linux-image-5.15.0-121-generic linux-modules-5.15.0-121-generic 2024-09-13T21:47:47.303 INFO:teuthology.orchestra.run.smithi138.stdout: linux-modules-extra-5.15.0-121-generic 2024-09-13T21:47:47.304 INFO:teuthology.orchestra.run.smithi138.stdout:The following packages will be upgraded: 2024-09-13T21:47:47.305 INFO:teuthology.orchestra.run.smithi138.stdout: linux-generic linux-headers-generic linux-image-generic 2024-09-13T21:47:47.356 INFO:teuthology.orchestra.run.smithi138.stdout:3 upgraded, 5 newly installed, 0 to remove and 344 not upgraded. 2024-09-13T21:47:47.356 INFO:teuthology.orchestra.run.smithi138.stdout:Need to get 113 MB of archives. 2024-09-13T21:47:47.356 INFO:teuthology.orchestra.run.smithi138.stdout:After this operation, 584 MB of additional disk space will be used. 2024-09-13T21:47:47.356 INFO:teuthology.orchestra.run.smithi138.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-121-generic amd64 5.15.0-121.131 [22.7 MB] 2024-09-13T21:47:47.517 INFO:teuthology.orchestra.run.smithi031.stdout:Reading package lists... 2024-09-13T21:47:47.535 DEBUG:teuthology.orchestra.run.smithi031:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-13T21:47:47.604 INFO:teuthology.orchestra.run.smithi031.stdout:Reading package lists... 2024-09-13T21:47:47.808 INFO:teuthology.orchestra.run.smithi138.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-121-generic amd64 5.15.0-121.131 [11.5 MB] 2024-09-13T21:47:47.819 INFO:teuthology.orchestra.run.smithi031.stdout:Building dependency tree... 2024-09-13T21:47:47.820 INFO:teuthology.orchestra.run.smithi031.stdout:Reading state information... 2024-09-13T21:47:47.899 INFO:teuthology.orchestra.run.smithi138.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-121-generic amd64 5.15.0-121.131 [63.9 MB] 2024-09-13T21:47:48.017 INFO:teuthology.orchestra.run.smithi031.stdout:The following packages were automatically installed and are no longer required: 2024-09-13T21:47:48.017 INFO:teuthology.orchestra.run.smithi031.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-13T21:47:48.017 INFO:teuthology.orchestra.run.smithi031.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-13T21:47:48.017 INFO:teuthology.orchestra.run.smithi031.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-13T21:47:48.018 INFO:teuthology.orchestra.run.smithi031.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-09-13T21:47:48.018 INFO:teuthology.orchestra.run.smithi031.stdout: python2.7-minimal 2024-09-13T21:47:48.018 INFO:teuthology.orchestra.run.smithi031.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-13T21:47:48.019 INFO:teuthology.orchestra.run.smithi031.stdout:The following additional packages will be installed: 2024-09-13T21:47:48.019 INFO:teuthology.orchestra.run.smithi031.stdout: linux-generic linux-headers-5.15.0-121 linux-headers-5.15.0-121-generic 2024-09-13T21:47:48.019 INFO:teuthology.orchestra.run.smithi031.stdout: linux-headers-generic linux-image-5.15.0-121-generic 2024-09-13T21:47:48.020 INFO:teuthology.orchestra.run.smithi031.stdout: linux-modules-5.15.0-121-generic linux-modules-extra-5.15.0-121-generic 2024-09-13T21:47:48.021 INFO:teuthology.orchestra.run.smithi031.stdout:Suggested packages: 2024-09-13T21:47:48.021 INFO:teuthology.orchestra.run.smithi031.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-09-13T21:47:48.021 INFO:teuthology.orchestra.run.smithi031.stdout:Recommended packages: 2024-09-13T21:47:48.021 INFO:teuthology.orchestra.run.smithi031.stdout: thermald 2024-09-13T21:47:48.071 INFO:teuthology.orchestra.run.smithi031.stdout:The following NEW packages will be installed: 2024-09-13T21:47:48.071 INFO:teuthology.orchestra.run.smithi031.stdout: linux-headers-5.15.0-121 linux-headers-5.15.0-121-generic 2024-09-13T21:47:48.071 INFO:teuthology.orchestra.run.smithi031.stdout: linux-image-5.15.0-121-generic linux-modules-5.15.0-121-generic 2024-09-13T21:47:48.071 INFO:teuthology.orchestra.run.smithi031.stdout: linux-modules-extra-5.15.0-121-generic 2024-09-13T21:47:48.073 INFO:teuthology.orchestra.run.smithi031.stdout:The following packages will be upgraded: 2024-09-13T21:47:48.073 INFO:teuthology.orchestra.run.smithi031.stdout: linux-generic linux-headers-generic linux-image-generic 2024-09-13T21:47:48.125 INFO:teuthology.orchestra.run.smithi031.stdout:3 upgraded, 5 newly installed, 0 to remove and 344 not upgraded. 2024-09-13T21:47:48.125 INFO:teuthology.orchestra.run.smithi031.stdout:Need to get 113 MB of archives. 2024-09-13T21:47:48.125 INFO:teuthology.orchestra.run.smithi031.stdout:After this operation, 584 MB of additional disk space will be used. 2024-09-13T21:47:48.125 INFO:teuthology.orchestra.run.smithi031.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-121-generic amd64 5.15.0-121.131 [22.7 MB] 2024-09-13T21:47:48.548 INFO:teuthology.orchestra.run.smithi031.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-121-generic amd64 5.15.0-121.131 [11.5 MB] 2024-09-13T21:47:48.596 INFO:teuthology.orchestra.run.smithi096.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-121-generic amd64 5.15.0-121.131 [11.5 MB] 2024-09-13T21:47:48.640 INFO:teuthology.orchestra.run.smithi031.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-121-generic amd64 5.15.0-121.131 [63.9 MB] 2024-09-13T21:47:48.683 INFO:teuthology.orchestra.run.smithi138.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.121.121 [1,694 B] 2024-09-13T21:47:48.683 INFO:teuthology.orchestra.run.smithi138.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.121.121 [2,464 B] 2024-09-13T21:47:48.683 INFO:teuthology.orchestra.run.smithi138.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-121 all 5.15.0-121.131 [12.3 MB] 2024-09-13T21:47:48.800 INFO:teuthology.orchestra.run.smithi138.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-121-generic amd64 5.15.0-121.131 [2,827 kB] 2024-09-13T21:47:48.898 INFO:teuthology.orchestra.run.smithi138.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.121.121 [2,316 B] 2024-09-13T21:47:48.988 INFO:teuthology.orchestra.run.smithi096.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-121-generic amd64 5.15.0-121.131 [63.9 MB] 2024-09-13T21:47:49.263 INFO:teuthology.orchestra.run.smithi138.stdout:Fetched 113 MB in 2s (71.4 MB/s) 2024-09-13T21:47:49.441 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package linux-modules-5.15.0-121-generic. 2024-09-13T21:47:49.444 INFO:teuthology.orchestra.run.smithi031.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.121.121 [1,694 B] 2024-09-13T21:47:49.444 INFO:teuthology.orchestra.run.smithi031.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.121.121 [2,464 B] 2024-09-13T21:47:49.444 INFO:teuthology.orchestra.run.smithi031.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-121 all 5.15.0-121.131 [12.3 MB] 2024-09-13T21:47:49.572 INFO:teuthology.orchestra.run.smithi031.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-121-generic amd64 5.15.0-121.131 [2,827 kB] 2024-09-13T21:47:49.593 INFO:teuthology.orchestra.run.smithi031.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.121.121 [2,316 B] 2024-09-13T21:47:50.006 INFO:teuthology.orchestra.run.smithi031.stdout:Fetched 113 MB in 2s (74.9 MB/s) 2024-09-13T21:47:50.172 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package linux-modules-5.15.0-121-generic. 2024-09-13T21:47:51.176 INFO:teuthology.orchestra.run.smithi096.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.121.121 [1,694 B] 2024-09-13T21:47:51.176 INFO:teuthology.orchestra.run.smithi096.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.121.121 [2,464 B] 2024-09-13T21:47:51.177 INFO:teuthology.orchestra.run.smithi096.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-121 all 5.15.0-121.131 [12.3 MB] 2024-09-13T21:47:51.493 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-09-13T21:47:51.497 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../0-linux-modules-5.15.0-121-generic_5.15.0-121.131_amd64.deb ... 2024-09-13T21:47:51.580 INFO:teuthology.orchestra.run.smithi096.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-121-generic amd64 5.15.0-121.131 [2,827 kB] 2024-09-13T21:47:51.628 INFO:teuthology.orchestra.run.smithi096.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.121.121 [2,316 B] 2024-09-13T21:47:51.721 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking linux-modules-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-13T21:47:52.031 INFO:teuthology.orchestra.run.smithi096.stdout:Fetched 113 MB in 5s (24.5 MB/s) 2024-09-13T21:47:52.119 INFO:teuthology.orchestra.run.smithi031.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 129542 files and directories currently installed.) 2024-09-13T21:47:52.123 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../0-linux-modules-5.15.0-121-generic_5.15.0-121.131_amd64.deb ... 2024-09-13T21:47:52.202 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking linux-modules-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-13T21:47:52.209 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package linux-modules-5.15.0-121-generic. 2024-09-13T21:47:53.889 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package linux-image-5.15.0-121-generic. 2024-09-13T21:47:53.910 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../1-linux-image-5.15.0-121-generic_5.15.0-121.131_amd64.deb ... 2024-09-13T21:47:54.011 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking linux-image-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-13T21:47:54.175 INFO:teuthology.orchestra.run.smithi096.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 129542 files and directories currently installed.) 2024-09-13T21:47:54.180 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../0-linux-modules-5.15.0-121-generic_5.15.0-121.131_amd64.deb ... 2024-09-13T21:47:54.240 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking linux-modules-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-13T21:47:54.311 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package linux-image-5.15.0-121-generic. 2024-09-13T21:47:54.332 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../1-linux-image-5.15.0-121-generic_5.15.0-121.131_amd64.deb ... 2024-09-13T21:47:54.422 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking linux-image-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-13T21:47:54.476 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-121-generic. 2024-09-13T21:47:54.496 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-121-generic_5.15.0-121.131_amd64.deb ... 2024-09-13T21:47:54.550 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking linux-modules-extra-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-13T21:47:55.180 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-121-generic. 2024-09-13T21:47:55.202 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-121-generic_5.15.0-121.131_amd64.deb ... 2024-09-13T21:47:55.239 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking linux-modules-extra-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-13T21:47:56.726 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package linux-image-5.15.0-121-generic. 2024-09-13T21:47:56.747 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../1-linux-image-5.15.0-121-generic_5.15.0-121.131_amd64.deb ... 2024-09-13T21:47:56.837 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking linux-image-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-13T21:47:57.262 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-121-generic. 2024-09-13T21:47:57.283 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-121-generic_5.15.0-121.131_amd64.deb ... 2024-09-13T21:47:57.320 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking linux-modules-extra-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-13T21:48:01.220 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../3-linux-generic_5.15.0.121.121_amd64.deb ... 2024-09-13T21:48:01.346 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking linux-generic (5.15.0.121.121) over (5.15.0.56.54) ... 2024-09-13T21:48:01.558 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../3-linux-generic_5.15.0.121.121_amd64.deb ... 2024-09-13T21:48:01.663 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.121.121_amd64.deb ... 2024-09-13T21:48:01.685 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking linux-generic (5.15.0.121.121) over (5.15.0.56.54) ... 2024-09-13T21:48:01.791 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking linux-image-generic (5.15.0.121.121) over (5.15.0.56.54) ... 2024-09-13T21:48:02.018 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.121.121_amd64.deb ... 2024-09-13T21:48:02.052 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package linux-headers-5.15.0-121. 2024-09-13T21:48:02.075 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../5-linux-headers-5.15.0-121_5.15.0-121.131_all.deb ... 2024-09-13T21:48:02.110 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking linux-headers-5.15.0-121 (5.15.0-121.131) ... 2024-09-13T21:48:02.130 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking linux-image-generic (5.15.0.121.121) over (5.15.0.56.54) ... 2024-09-13T21:48:02.442 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package linux-headers-5.15.0-121. 2024-09-13T21:48:02.455 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../5-linux-headers-5.15.0-121_5.15.0-121.131_all.deb ... 2024-09-13T21:48:02.492 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking linux-headers-5.15.0-121 (5.15.0-121.131) ... 2024-09-13T21:48:03.782 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../3-linux-generic_5.15.0.121.121_amd64.deb ... 2024-09-13T21:48:03.909 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking linux-generic (5.15.0.121.121) over (5.15.0.56.54) ... 2024-09-13T21:48:04.251 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.121.121_amd64.deb ... 2024-09-13T21:48:04.396 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking linux-image-generic (5.15.0.121.121) over (5.15.0.56.54) ... 2024-09-13T21:48:04.707 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package linux-headers-5.15.0-121. 2024-09-13T21:48:04.729 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../5-linux-headers-5.15.0-121_5.15.0-121.131_all.deb ... 2024-09-13T21:48:04.766 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking linux-headers-5.15.0-121 (5.15.0-121.131) ... 2024-09-13T21:48:08.118 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package linux-headers-5.15.0-121-generic. 2024-09-13T21:48:08.155 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../6-linux-headers-5.15.0-121-generic_5.15.0-121.131_amd64.deb ... 2024-09-13T21:48:08.193 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking linux-headers-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-13T21:48:08.582 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package linux-headers-5.15.0-121-generic. 2024-09-13T21:48:08.618 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../6-linux-headers-5.15.0-121-generic_5.15.0-121.131_amd64.deb ... 2024-09-13T21:48:08.656 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking linux-headers-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-13T21:48:10.292 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package linux-headers-5.15.0-121-generic. 2024-09-13T21:48:10.329 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../6-linux-headers-5.15.0-121-generic_5.15.0-121.131_amd64.deb ... 2024-09-13T21:48:10.367 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking linux-headers-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-13T21:48:10.841 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.121.121_amd64.deb ... 2024-09-13T21:48:10.963 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking linux-headers-generic (5.15.0.121.121) over (5.15.0.56.54) ... 2024-09-13T21:48:11.287 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up linux-headers-5.15.0-121 (5.15.0-121.131) ... 2024-09-13T21:48:11.353 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.121.121_amd64.deb ... 2024-09-13T21:48:11.401 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up linux-headers-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-13T21:48:11.470 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking linux-headers-generic (5.15.0.121.121) over (5.15.0.56.54) ... 2024-09-13T21:48:11.535 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up linux-headers-generic (5.15.0.121.121) ... 2024-09-13T21:48:11.663 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up linux-image-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-13T21:48:11.804 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up linux-headers-5.15.0-121 (5.15.0-121.131) ... 2024-09-13T21:48:11.934 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up linux-headers-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-13T21:48:12.060 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up linux-headers-generic (5.15.0.121.121) ... 2024-09-13T21:48:12.171 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up linux-image-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-13T21:48:13.020 INFO:teuthology.orchestra.run.smithi031.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-09-13T21:48:13.020 INFO:teuthology.orchestra.run.smithi031.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-09-13T21:48:13.020 INFO:teuthology.orchestra.run.smithi031.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-121-generic 2024-09-13T21:48:13.020 INFO:teuthology.orchestra.run.smithi031.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-121-generic 2024-09-13T21:48:13.166 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up linux-modules-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-13T21:48:13.430 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.121.121_amd64.deb ... 2024-09-13T21:48:13.514 INFO:teuthology.orchestra.run.smithi138.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-09-13T21:48:13.515 INFO:teuthology.orchestra.run.smithi138.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-09-13T21:48:13.515 INFO:teuthology.orchestra.run.smithi138.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-121-generic 2024-09-13T21:48:13.515 INFO:teuthology.orchestra.run.smithi138.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-121-generic 2024-09-13T21:48:13.544 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking linux-headers-generic (5.15.0.121.121) over (5.15.0.56.54) ... 2024-09-13T21:48:13.675 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up linux-modules-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-13T21:48:13.877 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up linux-headers-5.15.0-121 (5.15.0-121.131) ... 2024-09-13T21:48:14.176 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up linux-headers-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-13T21:48:15.025 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up linux-modules-extra-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-13T21:48:15.109 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up linux-headers-generic (5.15.0.121.121) ... 2024-09-13T21:48:15.237 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up linux-image-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-13T21:48:15.426 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up linux-modules-extra-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-13T21:48:16.469 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up linux-image-generic (5.15.0.121.121) ... 2024-09-13T21:48:16.581 INFO:teuthology.orchestra.run.smithi096.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-09-13T21:48:16.581 INFO:teuthology.orchestra.run.smithi096.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-09-13T21:48:16.581 INFO:teuthology.orchestra.run.smithi096.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-121-generic 2024-09-13T21:48:16.581 INFO:teuthology.orchestra.run.smithi096.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-121-generic 2024-09-13T21:48:16.595 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up linux-generic (5.15.0.121.121) ... 2024-09-13T21:48:16.721 INFO:teuthology.orchestra.run.smithi031.stdout:Processing triggers for linux-image-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-13T21:48:16.748 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up linux-modules-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-13T21:48:16.784 INFO:teuthology.orchestra.run.smithi031.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-09-13T21:48:16.785 INFO:teuthology.orchestra.run.smithi031.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-121-generic 2024-09-13T21:48:16.819 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up linux-image-generic (5.15.0.121.121) ... 2024-09-13T21:48:16.929 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up linux-generic (5.15.0.121.121) ... 2024-09-13T21:48:17.055 INFO:teuthology.orchestra.run.smithi138.stdout:Processing triggers for linux-image-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-13T21:48:17.138 INFO:teuthology.orchestra.run.smithi138.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-09-13T21:48:17.138 INFO:teuthology.orchestra.run.smithi138.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-121-generic 2024-09-13T21:48:18.198 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up linux-modules-extra-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-13T21:48:19.566 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up linux-image-generic (5.15.0.121.121) ... 2024-09-13T21:48:19.692 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up linux-generic (5.15.0.121.121) ... 2024-09-13T21:48:19.818 INFO:teuthology.orchestra.run.smithi096.stdout:Processing triggers for linux-image-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-13T21:48:19.877 INFO:teuthology.orchestra.run.smithi096.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-09-13T21:48:19.877 INFO:teuthology.orchestra.run.smithi096.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-121-generic 2024-09-13T21:48:31.084 INFO:teuthology.orchestra.run.smithi031.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-09-13T21:48:31.084 INFO:teuthology.orchestra.run.smithi031.stdout:Sourcing file `/etc/default/grub' 2024-09-13T21:48:31.097 INFO:teuthology.orchestra.run.smithi031.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-13T21:48:31.125 INFO:teuthology.orchestra.run.smithi031.stdout:Generating grub configuration file ... 2024-09-13T21:48:31.379 INFO:teuthology.orchestra.run.smithi031.stdout:Found linux image: /boot/vmlinuz-5.15.0-121-generic 2024-09-13T21:48:31.404 INFO:teuthology.orchestra.run.smithi031.stdout:Found initrd image: /boot/initrd.img-5.15.0-121-generic 2024-09-13T21:48:31.529 INFO:teuthology.orchestra.run.smithi138.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-09-13T21:48:31.529 INFO:teuthology.orchestra.run.smithi138.stdout:Sourcing file `/etc/default/grub' 2024-09-13T21:48:31.540 INFO:teuthology.orchestra.run.smithi138.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-13T21:48:31.559 INFO:teuthology.orchestra.run.smithi138.stdout:Generating grub configuration file ... 2024-09-13T21:48:31.683 INFO:teuthology.orchestra.run.smithi031.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-13T21:48:31.689 INFO:teuthology.orchestra.run.smithi031.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-13T21:48:31.761 INFO:teuthology.orchestra.run.smithi031.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-13T21:48:31.767 INFO:teuthology.orchestra.run.smithi031.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-13T21:48:31.840 INFO:teuthology.orchestra.run.smithi138.stdout:Found linux image: /boot/vmlinuz-5.15.0-121-generic 2024-09-13T21:48:31.864 INFO:teuthology.orchestra.run.smithi138.stdout:Found initrd image: /boot/initrd.img-5.15.0-121-generic 2024-09-13T21:48:31.925 INFO:teuthology.orchestra.run.smithi031.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-13T21:48:31.925 INFO:teuthology.orchestra.run.smithi031.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-09-13T21:48:31.925 INFO:teuthology.orchestra.run.smithi031.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-13T21:48:31.969 INFO:teuthology.orchestra.run.smithi031.stdout:done 2024-09-13T21:48:32.138 INFO:teuthology.orchestra.run.smithi138.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-13T21:48:32.144 INFO:teuthology.orchestra.run.smithi138.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-13T21:48:32.208 INFO:teuthology.orchestra.run.smithi138.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-13T21:48:32.214 INFO:teuthology.orchestra.run.smithi138.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-13T21:48:32.391 INFO:teuthology.orchestra.run.smithi138.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-13T21:48:32.391 INFO:teuthology.orchestra.run.smithi138.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-09-13T21:48:32.392 INFO:teuthology.orchestra.run.smithi138.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-13T21:48:32.444 INFO:teuthology.orchestra.run.smithi138.stdout:done 2024-09-13T21:48:32.469 DEBUG:teuthology.orchestra.run.smithi031:> dpkg -s linux-image-generic 2024-09-13T21:48:32.494 INFO:teuthology.orchestra.run.smithi031.stdout:Package: linux-image-generic 2024-09-13T21:48:32.494 INFO:teuthology.orchestra.run.smithi031.stdout:Status: install ok installed 2024-09-13T21:48:32.494 INFO:teuthology.orchestra.run.smithi031.stdout:Priority: optional 2024-09-13T21:48:32.494 INFO:teuthology.orchestra.run.smithi031.stdout:Section: kernel 2024-09-13T21:48:32.494 INFO:teuthology.orchestra.run.smithi031.stdout:Installed-Size: 21 2024-09-13T21:48:32.494 INFO:teuthology.orchestra.run.smithi031.stdout:Maintainer: Ubuntu Kernel Team 2024-09-13T21:48:32.494 INFO:teuthology.orchestra.run.smithi031.stdout:Architecture: amd64 2024-09-13T21:48:32.494 INFO:teuthology.orchestra.run.smithi031.stdout:Source: linux-meta 2024-09-13T21:48:32.494 INFO:teuthology.orchestra.run.smithi031.stdout:Version: 5.15.0.121.121 2024-09-13T21:48:32.495 INFO:teuthology.orchestra.run.smithi031.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.4), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-121), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.4) 2024-09-13T21:48:32.495 INFO:teuthology.orchestra.run.smithi031.stdout:Depends: linux-image-5.15.0-121-generic, linux-modules-extra-5.15.0-121-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-13T21:48:32.495 INFO:teuthology.orchestra.run.smithi031.stdout:Recommends: thermald 2024-09-13T21:48:32.495 INFO:teuthology.orchestra.run.smithi031.stdout:Description: Generic Linux kernel image 2024-09-13T21:48:32.495 INFO:teuthology.orchestra.run.smithi031.stdout: This package will always depend on the latest generic kernel image 2024-09-13T21:48:32.495 INFO:teuthology.orchestra.run.smithi031.stdout: available. 2024-09-13T21:48:32.495 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-121-generic 2024-09-13T21:48:32.495 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-13T21:48:32.495 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-13T21:48:32.496 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-09-13T21:48:32.496 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi031.front.sepia.ceph.com, path=None, version=distro) 2024-09-13T21:48:32.496 DEBUG:teuthology.orchestra.run.smithi031:> sudo apt-get clean 2024-09-13T21:48:32.640 DEBUG:teuthology.orchestra.run.smithi031:> sudo apt-get update 2024-09-13T21:48:32.750 INFO:teuthology.orchestra.run.smithi031.stdout:Hit:1 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-13T21:48:32.872 INFO:teuthology.orchestra.run.smithi031.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-13T21:48:32.947 DEBUG:teuthology.orchestra.run.smithi138:> dpkg -s linux-image-generic 2024-09-13T21:48:32.958 INFO:teuthology.orchestra.run.smithi031.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-13T21:48:32.973 INFO:teuthology.orchestra.run.smithi138.stdout:Package: linux-image-generic 2024-09-13T21:48:32.973 INFO:teuthology.orchestra.run.smithi138.stdout:Status: install ok installed 2024-09-13T21:48:32.973 INFO:teuthology.orchestra.run.smithi138.stdout:Priority: optional 2024-09-13T21:48:32.973 INFO:teuthology.orchestra.run.smithi138.stdout:Section: kernel 2024-09-13T21:48:32.973 INFO:teuthology.orchestra.run.smithi138.stdout:Installed-Size: 21 2024-09-13T21:48:32.973 INFO:teuthology.orchestra.run.smithi138.stdout:Maintainer: Ubuntu Kernel Team 2024-09-13T21:48:32.973 INFO:teuthology.orchestra.run.smithi138.stdout:Architecture: amd64 2024-09-13T21:48:32.974 INFO:teuthology.orchestra.run.smithi138.stdout:Source: linux-meta 2024-09-13T21:48:32.974 INFO:teuthology.orchestra.run.smithi138.stdout:Version: 5.15.0.121.121 2024-09-13T21:48:32.974 INFO:teuthology.orchestra.run.smithi138.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.4), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-121), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.4) 2024-09-13T21:48:32.974 INFO:teuthology.orchestra.run.smithi138.stdout:Depends: linux-image-5.15.0-121-generic, linux-modules-extra-5.15.0-121-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-13T21:48:32.974 INFO:teuthology.orchestra.run.smithi138.stdout:Recommends: thermald 2024-09-13T21:48:32.974 INFO:teuthology.orchestra.run.smithi138.stdout:Description: Generic Linux kernel image 2024-09-13T21:48:32.974 INFO:teuthology.orchestra.run.smithi138.stdout: This package will always depend on the latest generic kernel image 2024-09-13T21:48:32.974 INFO:teuthology.orchestra.run.smithi138.stdout: available. 2024-09-13T21:48:32.974 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-121-generic 2024-09-13T21:48:32.974 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-13T21:48:32.974 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-13T21:48:32.975 INFO:teuthology.task.kernel:Installing distro kernel on host.c... 2024-09-13T21:48:32.975 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi138.front.sepia.ceph.com, path=None, version=distro) 2024-09-13T21:48:32.975 DEBUG:teuthology.orchestra.run.smithi138:> sudo apt-get clean 2024-09-13T21:48:33.035 INFO:teuthology.orchestra.run.smithi031.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-13T21:48:33.153 DEBUG:teuthology.orchestra.run.smithi138:> sudo apt-get update 2024-09-13T21:48:33.291 INFO:teuthology.orchestra.run.smithi138.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-13T21:48:33.298 INFO:teuthology.orchestra.run.smithi138.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-13T21:48:33.315 INFO:teuthology.orchestra.run.smithi138.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-13T21:48:33.409 INFO:teuthology.orchestra.run.smithi138.stdout:Hit:4 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-13T21:48:33.753 INFO:teuthology.orchestra.run.smithi096.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-09-13T21:48:33.753 INFO:teuthology.orchestra.run.smithi096.stdout:Sourcing file `/etc/default/grub' 2024-09-13T21:48:33.757 INFO:teuthology.orchestra.run.smithi096.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-13T21:48:33.791 INFO:teuthology.orchestra.run.smithi096.stdout:Generating grub configuration file ... 2024-09-13T21:48:34.165 INFO:teuthology.orchestra.run.smithi096.stdout:Found linux image: /boot/vmlinuz-5.15.0-121-generic 2024-09-13T21:48:34.181 INFO:teuthology.orchestra.run.smithi096.stdout:Found initrd image: /boot/initrd.img-5.15.0-121-generic 2024-09-13T21:48:34.243 INFO:teuthology.orchestra.run.smithi031.stdout:Reading package lists... 2024-09-13T21:48:34.261 DEBUG:teuthology.orchestra.run.smithi031:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-13T21:48:34.327 INFO:teuthology.orchestra.run.smithi031.stdout:Reading package lists... 2024-09-13T21:48:34.542 INFO:teuthology.orchestra.run.smithi031.stdout:Building dependency tree... 2024-09-13T21:48:34.542 INFO:teuthology.orchestra.run.smithi031.stdout:Reading state information... 2024-09-13T21:48:34.545 INFO:teuthology.orchestra.run.smithi096.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-13T21:48:34.551 INFO:teuthology.orchestra.run.smithi096.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-13T21:48:34.615 INFO:teuthology.orchestra.run.smithi096.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-13T21:48:34.621 INFO:teuthology.orchestra.run.smithi096.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-13T21:48:34.731 INFO:teuthology.orchestra.run.smithi031.stdout:linux-image-generic is already the newest version (5.15.0.121.121). 2024-09-13T21:48:34.731 INFO:teuthology.orchestra.run.smithi031.stdout:The following packages were automatically installed and are no longer required: 2024-09-13T21:48:34.731 INFO:teuthology.orchestra.run.smithi031.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-13T21:48:34.731 INFO:teuthology.orchestra.run.smithi031.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-13T21:48:34.731 INFO:teuthology.orchestra.run.smithi031.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-13T21:48:34.732 INFO:teuthology.orchestra.run.smithi031.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-13T21:48:34.732 INFO:teuthology.orchestra.run.smithi031.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-13T21:48:34.732 INFO:teuthology.orchestra.run.smithi031.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-13T21:48:34.748 INFO:teuthology.orchestra.run.smithi138.stdout:Reading package lists... 2024-09-13T21:48:34.768 DEBUG:teuthology.orchestra.run.smithi138:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-13T21:48:34.772 INFO:teuthology.orchestra.run.smithi031.stdout:0 upgraded, 0 newly installed, 0 to remove and 344 not upgraded. 2024-09-13T21:48:34.774 DEBUG:teuthology.orchestra.run.smithi031:> dpkg -s linux-image-generic 2024-09-13T21:48:34.790 INFO:teuthology.orchestra.run.smithi031.stdout:Package: linux-image-generic 2024-09-13T21:48:34.790 INFO:teuthology.orchestra.run.smithi031.stdout:Status: install ok installed 2024-09-13T21:48:34.790 INFO:teuthology.orchestra.run.smithi031.stdout:Priority: optional 2024-09-13T21:48:34.790 INFO:teuthology.orchestra.run.smithi031.stdout:Section: kernel 2024-09-13T21:48:34.790 INFO:teuthology.orchestra.run.smithi031.stdout:Installed-Size: 21 2024-09-13T21:48:34.790 INFO:teuthology.orchestra.run.smithi031.stdout:Maintainer: Ubuntu Kernel Team 2024-09-13T21:48:34.790 INFO:teuthology.orchestra.run.smithi031.stdout:Architecture: amd64 2024-09-13T21:48:34.790 INFO:teuthology.orchestra.run.smithi031.stdout:Source: linux-meta 2024-09-13T21:48:34.790 INFO:teuthology.orchestra.run.smithi031.stdout:Version: 5.15.0.121.121 2024-09-13T21:48:34.790 INFO:teuthology.orchestra.run.smithi031.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.4), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-121), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.4) 2024-09-13T21:48:34.790 INFO:teuthology.orchestra.run.smithi031.stdout:Depends: linux-image-5.15.0-121-generic, linux-modules-extra-5.15.0-121-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-13T21:48:34.790 INFO:teuthology.orchestra.run.smithi031.stdout:Recommends: thermald 2024-09-13T21:48:34.791 INFO:teuthology.orchestra.run.smithi031.stdout:Description: Generic Linux kernel image 2024-09-13T21:48:34.791 INFO:teuthology.orchestra.run.smithi031.stdout: This package will always depend on the latest generic kernel image 2024-09-13T21:48:34.791 INFO:teuthology.orchestra.run.smithi031.stdout: available. 2024-09-13T21:48:34.791 DEBUG:teuthology.orchestra.run.smithi031:> mktemp 2024-09-13T21:48:34.793 INFO:teuthology.orchestra.run.smithi096.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-13T21:48:34.793 INFO:teuthology.orchestra.run.smithi096.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-09-13T21:48:34.794 INFO:teuthology.orchestra.run.smithi096.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-13T21:48:34.822 INFO:teuthology.orchestra.run.smithi096.stdout:done 2024-09-13T21:48:34.833 INFO:teuthology.orchestra.run.smithi138.stdout:Reading package lists... 2024-09-13T21:48:34.836 INFO:teuthology.orchestra.run.smithi031.stdout:/tmp/tmp.SutZGvzmtF 2024-09-13T21:48:34.836 DEBUG:teuthology.orchestra.run.smithi031:> sudo cp /boot/grub/grub.cfg /tmp/tmp.SutZGvzmtF 2024-09-13T21:48:34.893 DEBUG:teuthology.orchestra.run.smithi031:> sudo chmod 0666 /tmp/tmp.SutZGvzmtF 2024-09-13T21:48:35.014 DEBUG:teuthology.orchestra.remote:smithi031:/tmp/tmp.SutZGvzmtF is 10KB 2024-09-13T21:48:35.027 DEBUG:teuthology.orchestra.run.smithi031:> rm -fr /tmp/tmp.SutZGvzmtF 2024-09-13T21:48:35.032 DEBUG:teuthology.orchestra.run.smithi031:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-09-13T21:48:35.045 INFO:teuthology.orchestra.run.smithi138.stdout:Building dependency tree... 2024-09-13T21:48:35.046 INFO:teuthology.orchestra.run.smithi138.stdout:Reading state information... 2024-09-13T21:48:35.085 DEBUG:teuthology.orchestra.run.smithi031:> set -ex 2024-09-13T21:48:35.085 DEBUG:teuthology.orchestra.run.smithi031:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-09-13T21:48:35.085 DEBUG:teuthology.orchestra.run.smithi031:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-09-13T21:48:35.153 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-121-generic 2024-09-13T21:48:35.153 DEBUG:teuthology.orchestra.run.smithi031:> sudo update-grub 2024-09-13T21:48:35.233 INFO:teuthology.orchestra.run.smithi138.stdout:linux-image-generic is already the newest version (5.15.0.121.121). 2024-09-13T21:48:35.233 INFO:teuthology.orchestra.run.smithi138.stdout:The following packages were automatically installed and are no longer required: 2024-09-13T21:48:35.233 INFO:teuthology.orchestra.run.smithi138.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-13T21:48:35.234 INFO:teuthology.orchestra.run.smithi138.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-13T21:48:35.234 INFO:teuthology.orchestra.run.smithi138.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-13T21:48:35.234 INFO:teuthology.orchestra.run.smithi138.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-13T21:48:35.234 INFO:teuthology.orchestra.run.smithi138.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-13T21:48:35.234 INFO:teuthology.orchestra.run.smithi138.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-13T21:48:35.274 INFO:teuthology.orchestra.run.smithi138.stdout:0 upgraded, 0 newly installed, 0 to remove and 344 not upgraded. 2024-09-13T21:48:35.276 DEBUG:teuthology.orchestra.run.smithi138:> dpkg -s linux-image-generic 2024-09-13T21:48:35.292 INFO:teuthology.orchestra.run.smithi138.stdout:Package: linux-image-generic 2024-09-13T21:48:35.292 INFO:teuthology.orchestra.run.smithi138.stdout:Status: install ok installed 2024-09-13T21:48:35.292 INFO:teuthology.orchestra.run.smithi138.stdout:Priority: optional 2024-09-13T21:48:35.292 INFO:teuthology.orchestra.run.smithi138.stdout:Section: kernel 2024-09-13T21:48:35.292 INFO:teuthology.orchestra.run.smithi138.stdout:Installed-Size: 21 2024-09-13T21:48:35.292 INFO:teuthology.orchestra.run.smithi138.stdout:Maintainer: Ubuntu Kernel Team 2024-09-13T21:48:35.292 INFO:teuthology.orchestra.run.smithi138.stdout:Architecture: amd64 2024-09-13T21:48:35.292 INFO:teuthology.orchestra.run.smithi138.stdout:Source: linux-meta 2024-09-13T21:48:35.292 INFO:teuthology.orchestra.run.smithi138.stdout:Version: 5.15.0.121.121 2024-09-13T21:48:35.292 INFO:teuthology.orchestra.run.smithi138.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.4), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-121), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.4) 2024-09-13T21:48:35.293 INFO:teuthology.orchestra.run.smithi138.stdout:Depends: linux-image-5.15.0-121-generic, linux-modules-extra-5.15.0-121-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-13T21:48:35.293 INFO:teuthology.orchestra.run.smithi138.stdout:Recommends: thermald 2024-09-13T21:48:35.293 INFO:teuthology.orchestra.run.smithi138.stdout:Description: Generic Linux kernel image 2024-09-13T21:48:35.293 INFO:teuthology.orchestra.run.smithi138.stdout: This package will always depend on the latest generic kernel image 2024-09-13T21:48:35.293 INFO:teuthology.orchestra.run.smithi138.stdout: available. 2024-09-13T21:48:35.293 DEBUG:teuthology.orchestra.run.smithi138:> mktemp 2024-09-13T21:48:35.298 DEBUG:teuthology.orchestra.run.smithi096:> dpkg -s linux-image-generic 2024-09-13T21:48:35.316 INFO:teuthology.orchestra.run.smithi096.stdout:Package: linux-image-generic 2024-09-13T21:48:35.316 INFO:teuthology.orchestra.run.smithi096.stdout:Status: install ok installed 2024-09-13T21:48:35.316 INFO:teuthology.orchestra.run.smithi096.stdout:Priority: optional 2024-09-13T21:48:35.317 INFO:teuthology.orchestra.run.smithi096.stdout:Section: kernel 2024-09-13T21:48:35.317 INFO:teuthology.orchestra.run.smithi096.stdout:Installed-Size: 21 2024-09-13T21:48:35.317 INFO:teuthology.orchestra.run.smithi096.stdout:Maintainer: Ubuntu Kernel Team 2024-09-13T21:48:35.317 INFO:teuthology.orchestra.run.smithi096.stdout:Architecture: amd64 2024-09-13T21:48:35.317 INFO:teuthology.orchestra.run.smithi096.stdout:Source: linux-meta 2024-09-13T21:48:35.317 INFO:teuthology.orchestra.run.smithi096.stdout:Version: 5.15.0.121.121 2024-09-13T21:48:35.317 INFO:teuthology.orchestra.run.smithi096.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.4), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-121), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.4) 2024-09-13T21:48:35.317 INFO:teuthology.orchestra.run.smithi096.stdout:Depends: linux-image-5.15.0-121-generic, linux-modules-extra-5.15.0-121-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-13T21:48:35.317 INFO:teuthology.orchestra.run.smithi096.stdout:Recommends: thermald 2024-09-13T21:48:35.317 INFO:teuthology.orchestra.run.smithi096.stdout:Description: Generic Linux kernel image 2024-09-13T21:48:35.317 INFO:teuthology.orchestra.run.smithi096.stdout: This package will always depend on the latest generic kernel image 2024-09-13T21:48:35.317 INFO:teuthology.orchestra.run.smithi096.stdout: available. 2024-09-13T21:48:35.318 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-121-generic 2024-09-13T21:48:35.318 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-13T21:48:35.318 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-13T21:48:35.318 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-09-13T21:48:35.318 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi096.front.sepia.ceph.com, path=None, version=distro) 2024-09-13T21:48:35.318 DEBUG:teuthology.orchestra.run.smithi096:> sudo apt-get clean 2024-09-13T21:48:35.336 INFO:teuthology.orchestra.run.smithi138.stdout:/tmp/tmp.u9eo2tccbs 2024-09-13T21:48:35.337 DEBUG:teuthology.orchestra.run.smithi138:> sudo cp /boot/grub/grub.cfg /tmp/tmp.u9eo2tccbs 2024-09-13T21:48:35.396 DEBUG:teuthology.orchestra.run.smithi138:> sudo chmod 0666 /tmp/tmp.u9eo2tccbs 2024-09-13T21:48:35.520 DEBUG:teuthology.orchestra.remote:smithi138:/tmp/tmp.u9eo2tccbs is 10KB 2024-09-13T21:48:35.526 DEBUG:teuthology.orchestra.run.smithi096:> sudo apt-get update 2024-09-13T21:48:35.533 DEBUG:teuthology.orchestra.run.smithi138:> rm -fr /tmp/tmp.u9eo2tccbs 2024-09-13T21:48:35.538 DEBUG:teuthology.orchestra.run.smithi138:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-09-13T21:48:35.592 DEBUG:teuthology.orchestra.run.smithi138:> set -ex 2024-09-13T21:48:35.592 DEBUG:teuthology.orchestra.run.smithi138:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-09-13T21:48:35.592 DEBUG:teuthology.orchestra.run.smithi138:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-09-13T21:48:35.656 INFO:teuthology.orchestra.run.smithi096.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-13T21:48:35.660 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-121-generic 2024-09-13T21:48:35.660 DEBUG:teuthology.orchestra.run.smithi138:> sudo update-grub 2024-09-13T21:48:35.665 INFO:teuthology.orchestra.run.smithi096.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-13T21:48:35.682 INFO:teuthology.orchestra.run.smithi096.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-13T21:48:35.775 INFO:teuthology.orchestra.run.smithi096.stdout:Hit:4 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-13T21:48:36.273 INFO:teuthology.orchestra.run.smithi031.stderr:Sourcing file `/etc/default/grub' 2024-09-13T21:48:36.274 INFO:teuthology.orchestra.run.smithi031.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-13T21:48:36.276 INFO:teuthology.orchestra.run.smithi031.stderr:Generating grub configuration file ... 2024-09-13T21:48:36.449 INFO:teuthology.orchestra.run.smithi031.stderr:Found linux image: /boot/vmlinuz-5.15.0-121-generic 2024-09-13T21:48:36.455 INFO:teuthology.orchestra.run.smithi031.stderr:Found initrd image: /boot/initrd.img-5.15.0-121-generic 2024-09-13T21:48:36.686 INFO:teuthology.orchestra.run.smithi031.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-13T21:48:36.691 INFO:teuthology.orchestra.run.smithi031.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-13T21:48:36.735 INFO:teuthology.orchestra.run.smithi031.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-13T21:48:36.741 INFO:teuthology.orchestra.run.smithi031.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-13T21:48:36.866 INFO:teuthology.orchestra.run.smithi031.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-13T21:48:36.867 INFO:teuthology.orchestra.run.smithi031.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-09-13T21:48:36.867 INFO:teuthology.orchestra.run.smithi031.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-13T21:48:36.882 INFO:teuthology.orchestra.run.smithi031.stderr:done 2024-09-13T21:48:36.885 DEBUG:teuthology.orchestra.run.smithi031:> sudo shutdown -r now 2024-09-13T21:48:36.998 INFO:teuthology.orchestra.run.smithi138.stderr:Sourcing file `/etc/default/grub' 2024-09-13T21:48:36.999 INFO:teuthology.orchestra.run.smithi138.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-13T21:48:37.001 INFO:teuthology.orchestra.run.smithi138.stderr:Generating grub configuration file ... 2024-09-13T21:48:37.022 INFO:teuthology.orchestra.run.smithi096.stdout:Reading package lists... 2024-09-13T21:48:37.041 DEBUG:teuthology.orchestra.run.smithi096:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-13T21:48:37.095 INFO:teuthology.orchestra.run.smithi096.stdout:Reading package lists... 2024-09-13T21:48:37.181 INFO:teuthology.orchestra.run.smithi138.stderr:Found linux image: /boot/vmlinuz-5.15.0-121-generic 2024-09-13T21:48:37.187 INFO:teuthology.orchestra.run.smithi138.stderr:Found initrd image: /boot/initrd.img-5.15.0-121-generic 2024-09-13T21:48:37.292 INFO:teuthology.orchestra.run.smithi096.stdout:Building dependency tree... 2024-09-13T21:48:37.292 INFO:teuthology.orchestra.run.smithi096.stdout:Reading state information... 2024-09-13T21:48:37.447 INFO:teuthology.orchestra.run.smithi138.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-13T21:48:37.452 INFO:teuthology.orchestra.run.smithi138.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-13T21:48:37.460 INFO:teuthology.orchestra.run.smithi096.stdout:linux-image-generic is already the newest version (5.15.0.121.121). 2024-09-13T21:48:37.460 INFO:teuthology.orchestra.run.smithi096.stdout:The following packages were automatically installed and are no longer required: 2024-09-13T21:48:37.460 INFO:teuthology.orchestra.run.smithi096.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-13T21:48:37.460 INFO:teuthology.orchestra.run.smithi096.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-13T21:48:37.460 INFO:teuthology.orchestra.run.smithi096.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-13T21:48:37.461 INFO:teuthology.orchestra.run.smithi096.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-13T21:48:37.461 INFO:teuthology.orchestra.run.smithi096.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-13T21:48:37.461 INFO:teuthology.orchestra.run.smithi096.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-13T21:48:37.489 INFO:teuthology.orchestra.run.smithi138.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-13T21:48:37.494 INFO:teuthology.orchestra.run.smithi138.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-13T21:48:37.501 INFO:teuthology.orchestra.run.smithi096.stdout:0 upgraded, 0 newly installed, 0 to remove and 344 not upgraded. 2024-09-13T21:48:37.503 DEBUG:teuthology.orchestra.run.smithi096:> dpkg -s linux-image-generic 2024-09-13T21:48:37.563 INFO:teuthology.orchestra.run.smithi096.stdout:Package: linux-image-generic 2024-09-13T21:48:37.563 INFO:teuthology.orchestra.run.smithi096.stdout:Status: install ok installed 2024-09-13T21:48:37.563 INFO:teuthology.orchestra.run.smithi096.stdout:Priority: optional 2024-09-13T21:48:37.563 INFO:teuthology.orchestra.run.smithi096.stdout:Section: kernel 2024-09-13T21:48:37.563 INFO:teuthology.orchestra.run.smithi096.stdout:Installed-Size: 21 2024-09-13T21:48:37.563 INFO:teuthology.orchestra.run.smithi096.stdout:Maintainer: Ubuntu Kernel Team 2024-09-13T21:48:37.563 INFO:teuthology.orchestra.run.smithi096.stdout:Architecture: amd64 2024-09-13T21:48:37.563 INFO:teuthology.orchestra.run.smithi096.stdout:Source: linux-meta 2024-09-13T21:48:37.563 INFO:teuthology.orchestra.run.smithi096.stdout:Version: 5.15.0.121.121 2024-09-13T21:48:37.563 INFO:teuthology.orchestra.run.smithi096.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.4), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-121), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.4) 2024-09-13T21:48:37.563 INFO:teuthology.orchestra.run.smithi096.stdout:Depends: linux-image-5.15.0-121-generic, linux-modules-extra-5.15.0-121-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-13T21:48:37.564 INFO:teuthology.orchestra.run.smithi096.stdout:Recommends: thermald 2024-09-13T21:48:37.564 INFO:teuthology.orchestra.run.smithi096.stdout:Description: Generic Linux kernel image 2024-09-13T21:48:37.564 INFO:teuthology.orchestra.run.smithi096.stdout: This package will always depend on the latest generic kernel image 2024-09-13T21:48:37.564 INFO:teuthology.orchestra.run.smithi096.stdout: available. 2024-09-13T21:48:37.564 DEBUG:teuthology.orchestra.run.smithi096:> mktemp 2024-09-13T21:48:37.607 INFO:teuthology.orchestra.run.smithi096.stdout:/tmp/tmp.5bEv7hOJQv 2024-09-13T21:48:37.608 DEBUG:teuthology.orchestra.run.smithi096:> sudo cp /boot/grub/grub.cfg /tmp/tmp.5bEv7hOJQv 2024-09-13T21:48:37.612 INFO:teuthology.orchestra.run.smithi138.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-13T21:48:37.612 INFO:teuthology.orchestra.run.smithi138.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-09-13T21:48:37.612 INFO:teuthology.orchestra.run.smithi138.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-13T21:48:37.629 INFO:teuthology.orchestra.run.smithi138.stderr:done 2024-09-13T21:48:37.631 DEBUG:teuthology.orchestra.run.smithi138:> sudo shutdown -r now 2024-09-13T21:48:37.665 DEBUG:teuthology.orchestra.run.smithi096:> sudo chmod 0666 /tmp/tmp.5bEv7hOJQv 2024-09-13T21:48:37.782 DEBUG:teuthology.orchestra.remote:smithi096:/tmp/tmp.5bEv7hOJQv is 10KB 2024-09-13T21:48:37.794 DEBUG:teuthology.orchestra.run.smithi096:> rm -fr /tmp/tmp.5bEv7hOJQv 2024-09-13T21:48:37.800 DEBUG:teuthology.orchestra.run.smithi096:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-09-13T21:48:37.859 DEBUG:teuthology.orchestra.run.smithi096:> set -ex 2024-09-13T21:48:37.859 DEBUG:teuthology.orchestra.run.smithi096:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-09-13T21:48:37.859 DEBUG:teuthology.orchestra.run.smithi096:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-09-13T21:48:37.923 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-121-generic 2024-09-13T21:48:37.924 DEBUG:teuthology.orchestra.run.smithi096:> sudo update-grub 2024-09-13T21:48:39.243 INFO:teuthology.orchestra.run.smithi096.stderr:Sourcing file `/etc/default/grub' 2024-09-13T21:48:39.245 INFO:teuthology.orchestra.run.smithi096.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-13T21:48:39.248 INFO:teuthology.orchestra.run.smithi096.stderr:Generating grub configuration file ... 2024-09-13T21:48:39.496 INFO:teuthology.orchestra.run.smithi096.stderr:Found linux image: /boot/vmlinuz-5.15.0-121-generic 2024-09-13T21:48:39.503 INFO:teuthology.orchestra.run.smithi096.stderr:Found initrd image: /boot/initrd.img-5.15.0-121-generic 2024-09-13T21:48:39.803 INFO:teuthology.orchestra.run.smithi096.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-13T21:48:39.809 INFO:teuthology.orchestra.run.smithi096.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-13T21:48:39.851 INFO:teuthology.orchestra.run.smithi096.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-13T21:48:39.856 INFO:teuthology.orchestra.run.smithi096.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-13T21:48:39.982 INFO:teuthology.orchestra.run.smithi096.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-13T21:48:39.982 INFO:teuthology.orchestra.run.smithi096.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-09-13T21:48:39.983 INFO:teuthology.orchestra.run.smithi096.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-13T21:48:39.996 INFO:teuthology.orchestra.run.smithi096.stderr:done 2024-09-13T21:48:40.011 DEBUG:teuthology.orchestra.run.smithi096:> sudo shutdown -r now 2024-09-13T21:49:06.914 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-09-13T21:49:06.915 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi031.front.sepia.ceph.com' 2024-09-13T21:49:06.916 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi031.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T21:49:07.634 INFO:teuthology.task.kernel:Checking client host.c for new kernel version... 2024-09-13T21:49:07.634 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi138.front.sepia.ceph.com' 2024-09-13T21:49:07.635 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi138.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T21:49:10.015 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-09-13T21:49:10.016 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi096.front.sepia.ceph.com' 2024-09-13T21:49:10.016 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi096.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T21:49:25.437 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.31 2024-09-13T21:49:26.209 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.138 2024-09-13T21:49:28.509 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.96 2024-09-13T21:49:34.444 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi031.front.sepia.ceph.com' 2024-09-13T21:49:34.445 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi031.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T21:49:35.211 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi138.front.sepia.ceph.com' 2024-09-13T21:49:35.211 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi138.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T21:49:37.512 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi096.front.sepia.ceph.com' 2024-09-13T21:49:37.513 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi096.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T21:49:38.305 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.138 2024-09-13T21:49:40.573 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.96 2024-09-13T21:49:50.311 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi138.front.sepia.ceph.com' 2024-09-13T21:49:50.311 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi138.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T21:49:52.576 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi096.front.sepia.ceph.com' 2024-09-13T21:49:52.577 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi096.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T21:49:52.829 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.31 2024-09-13T21:50:04.841 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi031.front.sepia.ceph.com' 2024-09-13T21:50:04.842 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi031.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T21:50:07.933 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.31 2024-09-13T21:50:11.005 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.96 2024-09-13T21:50:22.380 DEBUG:teuthology.orchestra.run.smithi138:> true 2024-09-13T21:50:22.934 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi031.front.sepia.ceph.com' 2024-09-13T21:50:22.934 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi031.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T21:50:23.121 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi138.front.sepia.ceph.com' 2024-09-13T21:50:23.121 INFO:teuthology.task.kernel:Checking kernel version of host.c, want "5.15.0-121-generic"... 2024-09-13T21:50:23.121 DEBUG:teuthology.orchestra.run.smithi138:> uname -r 2024-09-13T21:50:23.166 INFO:teuthology.orchestra.run.smithi138.stdout:5.15.0-121-generic 2024-09-13T21:50:23.166 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-121-generic vs 5.15.0-121-generic 2024-09-13T21:50:23.166 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-13T21:50:23.166 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-09-13T21:50:23.200 DEBUG:teuthology.orchestra.run.smithi031:> true 2024-09-13T21:50:23.679 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi031.front.sepia.ceph.com' 2024-09-13T21:50:23.679 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.15.0-121-generic"... 2024-09-13T21:50:23.679 DEBUG:teuthology.orchestra.run.smithi031:> uname -r 2024-09-13T21:50:23.724 INFO:teuthology.orchestra.run.smithi031.stdout:5.15.0-121-generic 2024-09-13T21:50:23.724 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-121-generic vs 5.15.0-121-generic 2024-09-13T21:50:23.724 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-13T21:50:23.724 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-09-13T21:50:24.167 INFO:teuthology.task.kernel:Enabling kdb on host.c... 2024-09-13T21:50:24.167 DEBUG:teuthology.orchestra.run.smithi138:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-13T21:50:24.241 INFO:teuthology.orchestra.run.smithi138.stdout:ttyS1 2024-09-13T21:50:24.268 DEBUG:teuthology.parallel:result is None 2024-09-13T21:50:24.726 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-09-13T21:50:24.726 DEBUG:teuthology.orchestra.run.smithi031:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-13T21:50:24.810 INFO:teuthology.orchestra.run.smithi031.stdout:ttyS1 2024-09-13T21:50:24.842 DEBUG:teuthology.parallel:result is None 2024-09-13T21:50:26.006 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi096.front.sepia.ceph.com' 2024-09-13T21:50:26.006 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi096.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T21:50:26.376 DEBUG:teuthology.orchestra.run.smithi096:> true 2024-09-13T21:50:27.349 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi096.front.sepia.ceph.com' 2024-09-13T21:50:27.349 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.15.0-121-generic"... 2024-09-13T21:50:27.349 DEBUG:teuthology.orchestra.run.smithi096:> uname -r 2024-09-13T21:50:27.394 INFO:teuthology.orchestra.run.smithi096.stdout:5.15.0-121-generic 2024-09-13T21:50:27.394 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-121-generic vs 5.15.0-121-generic 2024-09-13T21:50:27.394 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-13T21:50:27.395 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-09-13T21:50:28.395 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-09-13T21:50:28.396 DEBUG:teuthology.orchestra.run.smithi096:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-13T21:50:28.464 INFO:teuthology.orchestra.run.smithi096.stdout:ttyS1 2024-09-13T21:50:28.488 DEBUG:teuthology.parallel:result is None 2024-09-13T21:50:28.488 INFO:teuthology.run_tasks:Running task internal.base... 2024-09-13T21:50:28.495 INFO:teuthology.task.internal:Creating test directory... 2024-09-13T21:50:28.495 DEBUG:teuthology.orchestra.run.smithi031:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-13T21:50:28.498 DEBUG:teuthology.orchestra.run.smithi096:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-13T21:50:28.501 DEBUG:teuthology.orchestra.run.smithi138:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-13T21:50:28.507 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-09-13T21:50:28.514 INFO:teuthology.run_tasks:Running task internal.archive... 2024-09-13T21:50:28.520 INFO:teuthology.task.internal:Creating archive directory... 2024-09-13T21:50:28.520 DEBUG:teuthology.orchestra.run.smithi031:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-13T21:50:28.545 DEBUG:teuthology.orchestra.run.smithi096:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-13T21:50:28.547 DEBUG:teuthology.orchestra.run.smithi138:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-13T21:50:28.568 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-09-13T21:50:28.573 INFO:teuthology.task.internal:Enabling coredump saving... 2024-09-13T21:50:28.573 DEBUG:teuthology.orchestra.run.smithi031:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-09-13T21:50:28.597 DEBUG:teuthology.orchestra.run.smithi096:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-09-13T21:50:28.599 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-09-13T21:50:28.620 INFO:teuthology.orchestra.run.smithi096.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-13T21:50:28.621 INFO:teuthology.orchestra.run.smithi031.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-13T21:50:28.623 INFO:teuthology.orchestra.run.smithi138.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-13T21:50:28.627 INFO:teuthology.orchestra.run.smithi096.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-13T21:50:28.629 INFO:teuthology.orchestra.run.smithi031.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-13T21:50:28.631 INFO:teuthology.orchestra.run.smithi138.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-13T21:50:28.633 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-09-13T21:50:28.640 INFO:teuthology.task.internal:Configuring sudo... 2024-09-13T21:50:28.641 DEBUG:teuthology.orchestra.run.smithi031:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-13T21:50:28.677 DEBUG:teuthology.orchestra.run.smithi096:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-13T21:50:28.680 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-09-13T21:50:28.701 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-09-13T21:50:28.711 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-09-13T21:50:28.711 DEBUG:teuthology.orchestra.run.smithi031:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-13T21:50:28.733 DEBUG:teuthology.orchestra.run.smithi096:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-13T21:50:28.737 DEBUG:teuthology.orchestra.run.smithi138:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-13T21:50:28.746 DEBUG:teuthology.orchestra.run.smithi031:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-13T21:50:28.784 DEBUG:teuthology.orchestra.run.smithi031:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-13T21:50:28.832 DEBUG:teuthology.orchestra.run.smithi031:> set -ex 2024-09-13T21:50:28.833 DEBUG:teuthology.orchestra.run.smithi031:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-13T21:50:28.893 DEBUG:teuthology.orchestra.run.smithi096:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-13T21:50:28.899 DEBUG:teuthology.orchestra.run.smithi096:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-13T21:50:28.947 DEBUG:teuthology.orchestra.run.smithi096:> set -ex 2024-09-13T21:50:28.947 DEBUG:teuthology.orchestra.run.smithi096:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-13T21:50:29.021 DEBUG:teuthology.orchestra.run.smithi138:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-13T21:50:29.029 DEBUG:teuthology.orchestra.run.smithi138:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-13T21:50:29.078 DEBUG:teuthology.orchestra.run.smithi138:> set -ex 2024-09-13T21:50:29.078 DEBUG:teuthology.orchestra.run.smithi138:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-13T21:50:29.153 DEBUG:teuthology.orchestra.run.smithi031:> sudo service rsyslog restart 2024-09-13T21:50:29.156 DEBUG:teuthology.orchestra.run.smithi096:> sudo service rsyslog restart 2024-09-13T21:50:29.158 DEBUG:teuthology.orchestra.run.smithi138:> sudo service rsyslog restart 2024-09-13T21:50:29.225 INFO:teuthology.run_tasks:Running task internal.timer... 2024-09-13T21:50:29.233 INFO:teuthology.task.internal:Starting timer... 2024-09-13T21:50:29.233 INFO:teuthology.run_tasks:Running task pcp... 2024-09-13T21:50:29.245 INFO:teuthology.run_tasks:Running task selinux... 2024-09-13T21:50:29.256 DEBUG:teuthology.task.selinux:Excluding smithi031: OS 'ubuntu' does not support SELinux 2024-09-13T21:50:29.257 DEBUG:teuthology.task.selinux:Excluding smithi096: OS 'ubuntu' does not support SELinux 2024-09-13T21:50:29.257 DEBUG:teuthology.task.selinux:Excluding smithi138: OS 'ubuntu' does not support SELinux 2024-09-13T21:50:29.257 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-09-13T21:50:29.257 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2024-09-13T21:50:29.257 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-09-13T21:50:29.257 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-09-13T21:50:29.266 DEBUG:teuthology.repo_utils:Setting repo remote to https://git.ceph.com/ceph-cm-ansible.git 2024-09-13T21:50:29.269 INFO:teuthology.repo_utils:Fetching git.ceph.com_ceph-cm-ansible_main from origin 2024-09-13T21:50:29.398 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-09-13T21:50:29.408 INFO:teuthology.task.ansible:Playbook: [{'import_playbook': 'ansible_managed.yml'}, {'import_playbook': 'teuthology.yml'}, {'hosts': 'testnodes', 'tasks': [{'set_fact': {'ran_from_cephlab_playbook': True}}]}, {'import_playbook': 'testnodes.yml'}, {'import_playbook': 'container-host.yml'}, {'import_playbook': 'cobbler.yml'}, {'import_playbook': 'paddles.yml'}, {'import_playbook': 'pulpito.yml'}, {'hosts': 'testnodes', 'become': True, 'tasks': [{'name': 'Touch /ceph-qa-ready', 'file': {'path': '/ceph-qa-ready', 'state': 'touch'}, 'when': 'ran_from_cephlab_playbook|bool'}]}] 2024-09-13T21:50:29.409 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi031.front.sepia.ceph.com,smithi096.front.sepia.ceph.com,smithi138.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-09-13T21:58:06.930 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi031.front.sepia.ceph.com'), Remote(name='ubuntu@smithi096.front.sepia.ceph.com'), Remote(name='ubuntu@smithi138.front.sepia.ceph.com')] 2024-09-13T21:58:06.931 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi031.front.sepia.ceph.com' 2024-09-13T21:58:06.932 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi031.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T21:58:07.024 DEBUG:teuthology.orchestra.run.smithi031:> true 2024-09-13T21:58:07.101 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi031.front.sepia.ceph.com' 2024-09-13T21:58:07.101 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi096.front.sepia.ceph.com' 2024-09-13T21:58:07.102 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi096.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T21:58:07.206 DEBUG:teuthology.orchestra.run.smithi096:> true 2024-09-13T21:58:07.289 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi096.front.sepia.ceph.com' 2024-09-13T21:58:07.289 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi138.front.sepia.ceph.com' 2024-09-13T21:58:07.290 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi138.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T21:58:07.395 DEBUG:teuthology.orchestra.run.smithi138:> true 2024-09-13T21:58:07.477 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi138.front.sepia.ceph.com' 2024-09-13T21:58:07.478 INFO:teuthology.run_tasks:Running task clock... 2024-09-13T21:58:07.489 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-09-13T21:58:07.490 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-13T21:58:07.490 DEBUG:teuthology.orchestra.run.smithi031:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-13T21:58:07.493 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-13T21:58:07.493 DEBUG:teuthology.orchestra.run.smithi096:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-13T21:58:07.496 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-13T21:58:07.496 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-09-13T21:58:07.520 INFO:teuthology.orchestra.run.smithi096.stdout:13 Sep 21:58:07 ntpd[18489]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-09-13T21:58:07.521 INFO:teuthology.orchestra.run.smithi096.stdout:13 Sep 21:58:07 ntpd[18489]: Command line: ntpd -gq 2024-09-13T21:58:07.521 INFO:teuthology.orchestra.run.smithi096.stdout:13 Sep 21:58:07 ntpd[18489]: ---------------------------------------------------- 2024-09-13T21:58:07.521 INFO:teuthology.orchestra.run.smithi096.stdout:13 Sep 21:58:07 ntpd[18489]: ntp-4 is maintained by Network Time Foundation, 2024-09-13T21:58:07.521 INFO:teuthology.orchestra.run.smithi096.stdout:13 Sep 21:58:07 ntpd[18489]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-09-13T21:58:07.521 INFO:teuthology.orchestra.run.smithi096.stdout:13 Sep 21:58:07 ntpd[18489]: corporation. Support and training for ntp-4 are 2024-09-13T21:58:07.521 INFO:teuthology.orchestra.run.smithi096.stdout:13 Sep 21:58:07 ntpd[18489]: available at https://www.nwtime.org/support 2024-09-13T21:58:07.521 INFO:teuthology.orchestra.run.smithi096.stdout:13 Sep 21:58:07 ntpd[18489]: ---------------------------------------------------- 2024-09-13T21:58:07.523 INFO:teuthology.orchestra.run.smithi096.stdout:13 Sep 21:58:07 ntpd[18489]: proto: precision = 0.066 usec (-24) 2024-09-13T21:58:07.523 INFO:teuthology.orchestra.run.smithi096.stdout:13 Sep 21:58:07 ntpd[18489]: basedate set to 2022-02-04 2024-09-13T21:58:07.523 INFO:teuthology.orchestra.run.smithi096.stdout:13 Sep 21:58:07 ntpd[18489]: gps base set to 2022-02-06 (week 2196) 2024-09-13T21:58:07.524 INFO:teuthology.orchestra.run.smithi096.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-13T21:58:07.524 INFO:teuthology.orchestra.run.smithi031.stdout:13 Sep 21:58:07 ntpd[18359]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-09-13T21:58:07.524 INFO:teuthology.orchestra.run.smithi031.stdout:13 Sep 21:58:07 ntpd[18359]: Command line: ntpd -gq 2024-09-13T21:58:07.524 INFO:teuthology.orchestra.run.smithi031.stdout:13 Sep 21:58:07 ntpd[18359]: ---------------------------------------------------- 2024-09-13T21:58:07.524 INFO:teuthology.orchestra.run.smithi031.stdout:13 Sep 21:58:07 ntpd[18359]: ntp-4 is maintained by Network Time Foundation, 2024-09-13T21:58:07.524 INFO:teuthology.orchestra.run.smithi031.stdout:13 Sep 21:58:07 ntpd[18359]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-09-13T21:58:07.524 INFO:teuthology.orchestra.run.smithi031.stdout:13 Sep 21:58:07 ntpd[18359]: corporation. Support and training for ntp-4 are 2024-09-13T21:58:07.524 INFO:teuthology.orchestra.run.smithi031.stdout:13 Sep 21:58:07 ntpd[18359]: available at https://www.nwtime.org/support 2024-09-13T21:58:07.524 INFO:teuthology.orchestra.run.smithi031.stdout:13 Sep 21:58:07 ntpd[18359]: ---------------------------------------------------- 2024-09-13T21:58:07.525 INFO:teuthology.orchestra.run.smithi031.stdout:13 Sep 21:58:07 ntpd[18359]: proto: precision = 0.049 usec (-24) 2024-09-13T21:58:07.525 INFO:teuthology.orchestra.run.smithi031.stdout:13 Sep 21:58:07 ntpd[18359]: basedate set to 2022-02-04 2024-09-13T21:58:07.525 INFO:teuthology.orchestra.run.smithi031.stdout:13 Sep 21:58:07 ntpd[18359]: gps base set to 2022-02-06 (week 2196) 2024-09-13T21:58:07.525 INFO:teuthology.orchestra.run.smithi031.stdout:13 Sep 21:58:07 ntpd[18359]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-13T21:58:07.525 INFO:teuthology.orchestra.run.smithi031.stdout:13 Sep 21:58:07 ntpd[18359]: restrict ::: KOD does nothing without LIMITED. 2024-09-13T21:58:07.525 INFO:teuthology.orchestra.run.smithi031.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-13T21:58:07.526 INFO:teuthology.orchestra.run.smithi031.stderr:restrict ::: KOD does nothing without LIMITED. 2024-09-13T21:58:07.526 INFO:teuthology.orchestra.run.smithi096.stdout:13 Sep 21:58:07 ntpd[18489]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-13T21:58:07.526 INFO:teuthology.orchestra.run.smithi096.stdout:13 Sep 21:58:07 ntpd[18489]: restrict ::: KOD does nothing without LIMITED. 2024-09-13T21:58:07.526 INFO:teuthology.orchestra.run.smithi096.stderr:restrict ::: KOD does nothing without LIMITED. 2024-09-13T21:58:07.529 INFO:teuthology.orchestra.run.smithi031.stdout:13 Sep 21:58:07 ntpd[18359]: Listen and drop on 0 v6wildcard [::]:123 2024-09-13T21:58:07.529 INFO:teuthology.orchestra.run.smithi031.stdout:13 Sep 21:58:07 ntpd[18359]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-09-13T21:58:07.529 INFO:teuthology.orchestra.run.smithi031.stdout:13 Sep 21:58:07 ntpd[18359]: Listen normally on 2 lo 127.0.0.1:123 2024-09-13T21:58:07.530 INFO:teuthology.orchestra.run.smithi031.stdout:13 Sep 21:58:07 ntpd[18359]: Listen normally on 3 ens1f0 172.21.15.31:123 2024-09-13T21:58:07.530 INFO:teuthology.orchestra.run.smithi031.stdout:13 Sep 21:58:07 ntpd[18359]: Listen normally on 4 lo [::1]:123 2024-09-13T21:58:07.530 INFO:teuthology.orchestra.run.smithi031.stdout:13 Sep 21:58:07 ntpd[18359]: Listen normally on 5 ens1f0 [fe80::ae1f:6bff:fea5:caba%4]:123 2024-09-13T21:58:07.530 INFO:teuthology.orchestra.run.smithi031.stdout:13 Sep 21:58:07 ntpd[18359]: Listening on routing socket on fd #22 for interface updates 2024-09-13T21:58:07.530 INFO:teuthology.orchestra.run.smithi096.stdout:13 Sep 21:58:07 ntpd[18489]: Listen and drop on 0 v6wildcard [::]:123 2024-09-13T21:58:07.531 INFO:teuthology.orchestra.run.smithi096.stdout:13 Sep 21:58:07 ntpd[18489]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-09-13T21:58:07.531 INFO:teuthology.orchestra.run.smithi096.stdout:13 Sep 21:58:07 ntpd[18489]: Listen normally on 2 lo 127.0.0.1:123 2024-09-13T21:58:07.531 INFO:teuthology.orchestra.run.smithi096.stdout:13 Sep 21:58:07 ntpd[18489]: Listen normally on 3 enp3s0f1 172.21.15.96:123 2024-09-13T21:58:07.531 INFO:teuthology.orchestra.run.smithi096.stdout:13 Sep 21:58:07 ntpd[18489]: Listen normally on 4 lo [::1]:123 2024-09-13T21:58:07.531 INFO:teuthology.orchestra.run.smithi096.stdout:13 Sep 21:58:07 ntpd[18489]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe8f:cc0d%5]:123 2024-09-13T21:58:07.531 INFO:teuthology.orchestra.run.smithi096.stdout:13 Sep 21:58:07 ntpd[18489]: Listening on routing socket on fd #22 for interface updates 2024-09-13T21:58:07.551 INFO:teuthology.orchestra.run.smithi138.stdout:13 Sep 21:58:07 ntpd[18485]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-09-13T21:58:07.551 INFO:teuthology.orchestra.run.smithi138.stdout:13 Sep 21:58:07 ntpd[18485]: Command line: ntpd -gq 2024-09-13T21:58:07.551 INFO:teuthology.orchestra.run.smithi138.stdout:13 Sep 21:58:07 ntpd[18485]: ---------------------------------------------------- 2024-09-13T21:58:07.551 INFO:teuthology.orchestra.run.smithi138.stdout:13 Sep 21:58:07 ntpd[18485]: ntp-4 is maintained by Network Time Foundation, 2024-09-13T21:58:07.551 INFO:teuthology.orchestra.run.smithi138.stdout:13 Sep 21:58:07 ntpd[18485]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-09-13T21:58:07.552 INFO:teuthology.orchestra.run.smithi138.stdout:13 Sep 21:58:07 ntpd[18485]: corporation. Support and training for ntp-4 are 2024-09-13T21:58:07.552 INFO:teuthology.orchestra.run.smithi138.stdout:13 Sep 21:58:07 ntpd[18485]: available at https://www.nwtime.org/support 2024-09-13T21:58:07.552 INFO:teuthology.orchestra.run.smithi138.stdout:13 Sep 21:58:07 ntpd[18485]: ---------------------------------------------------- 2024-09-13T21:58:07.552 INFO:teuthology.orchestra.run.smithi138.stdout:13 Sep 21:58:07 ntpd[18485]: proto: precision = 0.044 usec (-24) 2024-09-13T21:58:07.552 INFO:teuthology.orchestra.run.smithi138.stdout:13 Sep 21:58:07 ntpd[18485]: basedate set to 2022-02-04 2024-09-13T21:58:07.553 INFO:teuthology.orchestra.run.smithi138.stdout:13 Sep 21:58:07 ntpd[18485]: gps base set to 2022-02-06 (week 2196) 2024-09-13T21:58:07.553 INFO:teuthology.orchestra.run.smithi138.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-13T21:58:07.553 INFO:teuthology.orchestra.run.smithi138.stdout:13 Sep 21:58:07 ntpd[18485]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-13T21:58:07.553 INFO:teuthology.orchestra.run.smithi138.stdout:13 Sep 21:58:07 ntpd[18485]: restrict ::: KOD does nothing without LIMITED. 2024-09-13T21:58:07.554 INFO:teuthology.orchestra.run.smithi138.stderr:restrict ::: KOD does nothing without LIMITED. 2024-09-13T21:58:07.554 INFO:teuthology.orchestra.run.smithi138.stdout:13 Sep 21:58:07 ntpd[18485]: Listen and drop on 0 v6wildcard [::]:123 2024-09-13T21:58:07.554 INFO:teuthology.orchestra.run.smithi138.stdout:13 Sep 21:58:07 ntpd[18485]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-09-13T21:58:07.555 INFO:teuthology.orchestra.run.smithi138.stdout:13 Sep 21:58:07 ntpd[18485]: Listen normally on 2 lo 127.0.0.1:123 2024-09-13T21:58:07.555 INFO:teuthology.orchestra.run.smithi138.stdout:13 Sep 21:58:07 ntpd[18485]: Listen normally on 3 enp3s0f1 172.21.15.138:123 2024-09-13T21:58:07.555 INFO:teuthology.orchestra.run.smithi138.stdout:13 Sep 21:58:07 ntpd[18485]: Listen normally on 4 lo [::1]:123 2024-09-13T21:58:07.555 INFO:teuthology.orchestra.run.smithi138.stdout:13 Sep 21:58:07 ntpd[18485]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe88:6f71%5]:123 2024-09-13T21:58:07.555 INFO:teuthology.orchestra.run.smithi138.stdout:13 Sep 21:58:07 ntpd[18485]: Listening on routing socket on fd #22 for interface updates 2024-09-13T21:58:08.521 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:08 ntpd[18489]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:08.522 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:08 ntpd[18489]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:08.522 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:08 ntpd[18489]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:08.522 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:08 ntpd[18489]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:08.522 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:08 ntpd[18489]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:08.522 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:08 ntpd[18489]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:08.522 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:08 ntpd[18489]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:08.522 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:08 ntpd[18489]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:08.522 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:08 ntpd[18489]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-13T21:58:08.522 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:08 ntpd[18489]: can't open /var/log/ntpstats/peerstats.20240913: Permission denied 2024-09-13T21:58:08.522 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:08 ntpd[18489]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:08.522 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:08 ntpd[18489]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:08.522 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:08 ntpd[18489]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-13T21:58:08.522 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:08 ntpd[18489]: can't open /var/log/ntpstats/peerstats.20240913: Permission denied 2024-09-13T21:58:08.523 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:08 ntpd[18359]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:08.523 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:08 ntpd[18359]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:08.523 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:08 ntpd[18359]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:08.523 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:08 ntpd[18359]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:08.524 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:08 ntpd[18359]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-13T21:58:08.524 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:08 ntpd[18359]: can't open /var/log/ntpstats/peerstats.20240913: Permission denied 2024-09-13T21:58:08.555 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:08 ntpd[18485]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:08.556 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:08 ntpd[18485]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:08.556 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:08 ntpd[18485]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:08.556 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:08 ntpd[18485]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:08.556 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:08 ntpd[18485]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:08.557 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:08 ntpd[18485]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:08.557 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:08 ntpd[18485]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:08.557 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:08 ntpd[18485]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:08.557 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:08 ntpd[18485]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:08.557 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:08 ntpd[18485]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:08.557 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:08 ntpd[18485]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-13T21:58:08.558 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:08 ntpd[18485]: can't open /var/log/ntpstats/peerstats.20240913: Permission denied 2024-09-13T21:58:08.558 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:08 ntpd[18485]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:08.558 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:08 ntpd[18485]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:08.558 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:08 ntpd[18485]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-13T21:58:08.558 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:08 ntpd[18485]: can't open /var/log/ntpstats/peerstats.20240913: Permission denied 2024-09-13T21:58:08.559 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:08 ntpd[18485]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:08.559 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:08 ntpd[18485]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:08.559 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:08 ntpd[18485]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-13T21:58:08.559 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:08 ntpd[18485]: can't open /var/log/ntpstats/peerstats.20240913: Permission denied 2024-09-13T21:58:10.522 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:10 ntpd[18489]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:10.522 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:10 ntpd[18489]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:10.522 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:10 ntpd[18489]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:10.522 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:10 ntpd[18489]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:10.522 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:10 ntpd[18489]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:10.522 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:10 ntpd[18489]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:10.522 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:10 ntpd[18489]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-13T21:58:10.522 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:10 ntpd[18489]: can't open /var/log/ntpstats/peerstats.20240913: Permission denied 2024-09-13T21:58:10.522 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:10 ntpd[18489]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:10.522 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:10 ntpd[18489]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:10.522 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:10 ntpd[18489]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-13T21:58:10.522 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:10 ntpd[18489]: can't open /var/log/ntpstats/peerstats.20240913: Permission denied 2024-09-13T21:58:10.524 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:10 ntpd[18359]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:10.525 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:10 ntpd[18359]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:10.525 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:10 ntpd[18359]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:10.525 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:10 ntpd[18359]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:10.525 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:10 ntpd[18359]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:10.525 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:10 ntpd[18359]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:10.525 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:10 ntpd[18359]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:10.525 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:10 ntpd[18359]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:10.525 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:10 ntpd[18359]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-13T21:58:10.525 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:10 ntpd[18359]: can't open /var/log/ntpstats/peerstats.20240913: Permission denied 2024-09-13T21:58:10.525 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:10 ntpd[18359]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:10.525 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:10 ntpd[18359]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:10.525 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:10 ntpd[18359]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-13T21:58:10.525 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:10 ntpd[18359]: can't open /var/log/ntpstats/peerstats.20240913: Permission denied 2024-09-13T21:58:10.525 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:10 ntpd[18359]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:10.526 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:10 ntpd[18359]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:10.526 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:10 ntpd[18359]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-13T21:58:10.526 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:10 ntpd[18359]: can't open /var/log/ntpstats/peerstats.20240913: Permission denied 2024-09-13T21:58:10.553 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:10 ntpd[18485]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:10.553 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:10 ntpd[18485]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:10.553 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:10 ntpd[18485]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:10.554 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:10 ntpd[18485]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:10.554 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:10 ntpd[18485]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:10.554 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:10 ntpd[18485]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:10.554 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:10 ntpd[18485]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:10.554 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:10 ntpd[18485]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:10.554 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:10 ntpd[18485]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-13T21:58:10.554 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:10 ntpd[18485]: can't open /var/log/ntpstats/peerstats.20240913: Permission denied 2024-09-13T21:58:10.554 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:10 ntpd[18485]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:10.554 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:10 ntpd[18485]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:10.554 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:10 ntpd[18485]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-13T21:58:10.554 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:10 ntpd[18485]: can't open /var/log/ntpstats/peerstats.20240913: Permission denied 2024-09-13T21:58:10.554 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:10 ntpd[18485]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:10.554 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:10 ntpd[18485]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:10.554 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:10 ntpd[18485]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-13T21:58:10.554 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:10 ntpd[18485]: can't open /var/log/ntpstats/peerstats.20240913: Permission denied 2024-09-13T21:58:11.521 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:11 ntpd[18359]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:11.522 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:11 ntpd[18359]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:12.522 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:12 ntpd[18489]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:12.522 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:12 ntpd[18489]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:12.522 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:12 ntpd[18489]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:12.523 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:12 ntpd[18489]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:12.523 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:12 ntpd[18489]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:12.523 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:12 ntpd[18489]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:12.523 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:12 ntpd[18489]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:12.523 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:12 ntpd[18489]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:12.523 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:12 ntpd[18489]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-13T21:58:12.523 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:12 ntpd[18489]: can't open /var/log/ntpstats/peerstats.20240913: Permission denied 2024-09-13T21:58:12.523 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:12 ntpd[18489]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:12.523 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:12 ntpd[18489]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:12.523 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:12 ntpd[18489]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-13T21:58:12.523 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:12 ntpd[18489]: can't open /var/log/ntpstats/peerstats.20240913: Permission denied 2024-09-13T21:58:12.523 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:12 ntpd[18489]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:12.524 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:12 ntpd[18489]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:12.524 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:12 ntpd[18489]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-13T21:58:12.524 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:12 ntpd[18489]: can't open /var/log/ntpstats/peerstats.20240913: Permission denied 2024-09-13T21:58:12.526 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:12 ntpd[18359]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:12.526 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:12 ntpd[18359]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:12.526 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:12 ntpd[18359]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:12.526 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:12 ntpd[18359]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:12.526 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:12 ntpd[18359]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:12.526 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:12 ntpd[18359]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:12.526 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:12 ntpd[18359]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:12.526 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:12 ntpd[18359]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:12.526 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:12 ntpd[18359]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-13T21:58:12.527 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:12 ntpd[18359]: can't open /var/log/ntpstats/peerstats.20240913: Permission denied 2024-09-13T21:58:12.527 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:12 ntpd[18359]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:12.527 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:12 ntpd[18359]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:12.527 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:12 ntpd[18359]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-13T21:58:12.527 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:12 ntpd[18359]: can't open /var/log/ntpstats/peerstats.20240913: Permission denied 2024-09-13T21:58:12.527 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:12 ntpd[18359]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:12.527 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:12 ntpd[18359]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:12.527 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:12 ntpd[18359]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-13T21:58:12.527 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:12 ntpd[18359]: can't open /var/log/ntpstats/peerstats.20240913: Permission denied 2024-09-13T21:58:12.553 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:12 ntpd[18485]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:12.553 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:12 ntpd[18485]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:12.553 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:12 ntpd[18485]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:12.553 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:12 ntpd[18485]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:12.553 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:12 ntpd[18485]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:12.553 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:12 ntpd[18485]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:12.553 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:12 ntpd[18485]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:12.553 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:12 ntpd[18485]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:12.553 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:12 ntpd[18485]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-13T21:58:12.553 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:12 ntpd[18485]: can't open /var/log/ntpstats/peerstats.20240913: Permission denied 2024-09-13T21:58:12.553 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:12 ntpd[18485]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:12.553 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:12 ntpd[18485]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:12.554 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:12 ntpd[18485]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-13T21:58:12.554 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:12 ntpd[18485]: can't open /var/log/ntpstats/peerstats.20240913: Permission denied 2024-09-13T21:58:12.554 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:12 ntpd[18485]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:12.554 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:12 ntpd[18485]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:12.554 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:12 ntpd[18485]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-13T21:58:12.554 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:12 ntpd[18485]: can't open /var/log/ntpstats/peerstats.20240913: Permission denied 2024-09-13T21:58:14.522 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:14 ntpd[18489]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:14.522 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:14 ntpd[18489]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:14.522 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:14 ntpd[18489]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:14.522 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:14 ntpd[18489]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:14.522 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:14 ntpd[18489]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:14.522 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:14 ntpd[18489]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:14.522 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:14 ntpd[18489]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:14.522 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:14 ntpd[18489]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:14.522 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:14 ntpd[18489]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-13T21:58:14.522 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:14 ntpd[18489]: can't open /var/log/ntpstats/peerstats.20240913: Permission denied 2024-09-13T21:58:14.522 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:14 ntpd[18489]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:14.522 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:14 ntpd[18489]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:14.523 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:14 ntpd[18489]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-13T21:58:14.523 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:14 ntpd[18489]: can't open /var/log/ntpstats/peerstats.20240913: Permission denied 2024-09-13T21:58:14.523 INFO:teuthology.orchestra.run.smithi096.stdout:13 Sep 21:58:14 ntpd[18489]: ntpd: time slew -0.001206 s 2024-09-13T21:58:14.523 INFO:teuthology.orchestra.run.smithi096.stdout:ntpd: time slew -0.001206s 2024-09-13T21:58:14.523 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:14 ntpd[18489]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-09-13T21:58:14.523 INFO:teuthology.orchestra.run.smithi096.stderr:13 Sep 21:58:14 ntpd[18489]: can't open /var/log/ntpstats/loopstats.20240913: Permission denied 2024-09-13T21:58:14.525 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:14 ntpd[18359]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:14.525 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:14 ntpd[18359]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:14.525 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:14 ntpd[18359]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:14.526 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:14 ntpd[18359]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:14.526 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:14 ntpd[18359]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:14.526 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:14 ntpd[18359]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:14.526 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:14 ntpd[18359]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:14.526 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:14 ntpd[18359]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:14.526 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:14 ntpd[18359]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-13T21:58:14.526 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:14 ntpd[18359]: can't open /var/log/ntpstats/peerstats.20240913: Permission denied 2024-09-13T21:58:14.526 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:14 ntpd[18359]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:14.526 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:14 ntpd[18359]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:14.526 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:14 ntpd[18359]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-13T21:58:14.526 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:14 ntpd[18359]: can't open /var/log/ntpstats/peerstats.20240913: Permission denied 2024-09-13T21:58:14.526 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:14 ntpd[18359]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:14.526 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:14 ntpd[18359]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:14.526 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:14 ntpd[18359]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-13T21:58:14.527 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:14 ntpd[18359]: can't open /var/log/ntpstats/peerstats.20240913: Permission denied 2024-09-13T21:58:14.527 INFO:teuthology.orchestra.run.smithi031.stdout:13 Sep 21:58:14 ntpd[18359]: ntpd: time slew +0.000061 s 2024-09-13T21:58:14.527 INFO:teuthology.orchestra.run.smithi031.stdout:ntpd: time slew +0.000061s 2024-09-13T21:58:14.527 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:14 ntpd[18359]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-09-13T21:58:14.527 INFO:teuthology.orchestra.run.smithi031.stderr:13 Sep 21:58:14 ntpd[18359]: can't open /var/log/ntpstats/loopstats.20240913: Permission denied 2024-09-13T21:58:14.552 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:14 ntpd[18485]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:14.552 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:14 ntpd[18485]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:14.552 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:14 ntpd[18485]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:14.552 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:14 ntpd[18485]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:14.552 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:14 ntpd[18485]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:14.552 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:14 ntpd[18485]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:14.552 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:14 ntpd[18485]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-13T21:58:14.552 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:14 ntpd[18485]: can't open /var/log/ntpstats/rawstats.20240913: Permission denied 2024-09-13T21:58:14.553 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:14 ntpd[18485]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-13T21:58:14.553 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:14 ntpd[18485]: can't open /var/log/ntpstats/peerstats.20240913: Permission denied 2024-09-13T21:58:14.553 INFO:teuthology.orchestra.run.smithi138.stdout:13 Sep 21:58:14 ntpd[18485]: ntpd: time slew -0.000774 s 2024-09-13T21:58:14.553 INFO:teuthology.orchestra.run.smithi138.stdout:ntpd: time slew -0.000774s 2024-09-13T21:58:14.553 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:14 ntpd[18485]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-09-13T21:58:14.553 INFO:teuthology.orchestra.run.smithi138.stderr:13 Sep 21:58:14 ntpd[18485]: can't open /var/log/ntpstats/loopstats.20240913: Permission denied 2024-09-13T21:58:14.572 INFO:teuthology.orchestra.run.smithi031.stdout: remote refid st t when poll reach delay offset jitter 2024-09-13T21:58:14.572 INFO:teuthology.orchestra.run.smithi031.stdout:============================================================================== 2024-09-13T21:58:14.572 INFO:teuthology.orchestra.run.smithi031.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-13T21:58:14.573 INFO:teuthology.orchestra.run.smithi031.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-13T21:58:14.573 INFO:teuthology.orchestra.run.smithi031.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-13T21:58:14.573 INFO:teuthology.orchestra.run.smithi031.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-13T21:58:14.602 INFO:teuthology.orchestra.run.smithi138.stdout: remote refid st t when poll reach delay offset jitter 2024-09-13T21:58:14.602 INFO:teuthology.orchestra.run.smithi138.stdout:============================================================================== 2024-09-13T21:58:14.602 INFO:teuthology.orchestra.run.smithi138.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-13T21:58:14.602 INFO:teuthology.orchestra.run.smithi138.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-13T21:58:14.602 INFO:teuthology.orchestra.run.smithi138.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-13T21:58:14.602 INFO:teuthology.orchestra.run.smithi138.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-13T21:58:14.625 INFO:teuthology.orchestra.run.smithi096.stdout: remote refid st t when poll reach delay offset jitter 2024-09-13T21:58:14.625 INFO:teuthology.orchestra.run.smithi096.stdout:============================================================================== 2024-09-13T21:58:14.625 INFO:teuthology.orchestra.run.smithi096.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-13T21:58:14.625 INFO:teuthology.orchestra.run.smithi096.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-13T21:58:14.625 INFO:teuthology.orchestra.run.smithi096.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-13T21:58:14.625 INFO:teuthology.orchestra.run.smithi096.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-13T21:58:14.626 INFO:teuthology.run_tasks:Running task install... 2024-09-13T21:58:14.635 DEBUG:teuthology.task.install:project ceph 2024-09-13T21:58:14.635 DEBUG:teuthology.task.install:INSTALL overrides: {'ceph': {'flavor': 'default', 'sha1': 'ecab7be58963a5bd03910cd73eef66405d7fdd50'}} 2024-09-13T21:58:14.635 DEBUG:teuthology.task.install:config {'flavor': 'default', 'sha1': 'ecab7be58963a5bd03910cd73eef66405d7fdd50'} 2024-09-13T21:58:14.635 INFO:teuthology.task.install:Using flavor: default 2024-09-13T21:58:14.643 DEBUG:teuthology.task.install:Package list is: {'deb': ['ceph', 'cephadm', 'ceph-mds', 'ceph-mgr', 'ceph-common', 'ceph-fuse', 'ceph-test', 'ceph-volume', 'radosgw', 'python3-rados', 'python3-rgw', 'python3-cephfs', 'python3-rbd', 'libcephfs2', 'libcephfs-dev', 'librados2', 'librbd1', 'rbd-fuse'], 'rpm': ['ceph-radosgw', 'ceph-test', 'ceph', 'ceph-base', 'cephadm', 'ceph-immutable-object-cache', 'ceph-mgr', 'ceph-mgr-dashboard', 'ceph-mgr-diskprediction-local', 'ceph-mgr-rook', 'ceph-mgr-cephadm', 'ceph-fuse', 'ceph-volume', 'librados-devel', 'libcephfs2', 'libcephfs-devel', 'librados2', 'librbd1', 'python3-rados', 'python3-rgw', 'python3-cephfs', 'python3-rbd', 'rbd-fuse', 'rbd-mirror', 'rbd-nbd']} 2024-09-13T21:58:14.643 INFO:teuthology.task.install:extra packages: [] 2024-09-13T21:58:14.644 DEBUG:teuthology.orchestra.run.smithi031:> sudo apt-key list | grep Ceph 2024-09-13T21:58:14.644 DEBUG:teuthology.orchestra.run.smithi096:> sudo apt-key list | grep Ceph 2024-09-13T21:58:14.645 DEBUG:teuthology.orchestra.run.smithi138:> sudo apt-key list | grep Ceph 2024-09-13T21:58:14.703 INFO:teuthology.orchestra.run.smithi138.stderr:Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)). 2024-09-13T21:58:14.713 INFO:teuthology.orchestra.run.smithi031.stderr:Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)). 2024-09-13T21:58:14.732 INFO:teuthology.orchestra.run.smithi138.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-09-13T21:58:14.732 INFO:teuthology.orchestra.run.smithi138.stdout:uid [ unknown] Ceph.com (release key) 2024-09-13T21:58:14.732 INFO:teuthology.task.install.deb:Installing packages: ceph, cephadm, ceph-mds, ceph-mgr, ceph-common, ceph-fuse, ceph-test, ceph-volume, radosgw, python3-rados, python3-rgw, python3-cephfs, python3-rbd, libcephfs2, libcephfs-dev, librados2, librbd1, rbd-fuse on remote deb x86_64 2024-09-13T21:58:14.733 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=ecab7be58963a5bd03910cd73eef66405d7fdd50 2024-09-13T21:58:14.745 INFO:teuthology.orchestra.run.smithi096.stderr:Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)). 2024-09-13T21:58:14.747 INFO:teuthology.orchestra.run.smithi031.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-09-13T21:58:14.747 INFO:teuthology.orchestra.run.smithi031.stdout:uid [ unknown] Ceph.com (release key) 2024-09-13T21:58:14.747 INFO:teuthology.task.install.deb:Installing packages: ceph, cephadm, ceph-mds, ceph-mgr, ceph-common, ceph-fuse, ceph-test, ceph-volume, radosgw, python3-rados, python3-rgw, python3-cephfs, python3-rbd, libcephfs2, libcephfs-dev, librados2, librbd1, rbd-fuse on remote deb x86_64 2024-09-13T21:58:14.748 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=ecab7be58963a5bd03910cd73eef66405d7fdd50 2024-09-13T21:58:14.759 INFO:teuthology.orchestra.run.smithi096.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-09-13T21:58:14.760 INFO:teuthology.orchestra.run.smithi096.stdout:uid [ unknown] Ceph.com (release key) 2024-09-13T21:58:14.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-09-13T21:58:14.761 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=ecab7be58963a5bd03910cd73eef66405d7fdd50 2024-09-13T21:58:14.900 INFO:teuthology.task.install.deb:Pulling from https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default/ 2024-09-13T21:58:14.900 INFO:teuthology.task.install.deb:Package version is 19.1.1-324-gecab7be5-1jammy 2024-09-13T21:58:14.911 INFO:teuthology.task.install.deb:Pulling from https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default/ 2024-09-13T21:58:14.912 INFO:teuthology.task.install.deb:Package version is 19.1.1-324-gecab7be5-1jammy 2024-09-13T21:58:14.913 INFO:teuthology.task.install.deb:Pulling from https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default/ 2024-09-13T21:58:14.916 INFO:teuthology.task.install.deb:Package version is 19.1.1-324-gecab7be5-1jammy 2024-09-13T21:58:15.028 DEBUG:teuthology.orchestra.run.smithi138:> set -ex 2024-09-13T21:58:15.028 DEBUG:teuthology.orchestra.run.smithi138:> sudo dd of=/etc/apt/sources.list.d/ceph.list 2024-09-13T21:58:15.036 DEBUG:teuthology.orchestra.run.smithi096:> set -ex 2024-09-13T21:58:15.036 DEBUG:teuthology.orchestra.run.smithi096:> sudo dd of=/etc/apt/sources.list.d/ceph.list 2024-09-13T21:58:15.042 DEBUG:teuthology.orchestra.run.smithi138:> sudo apt-get update 2024-09-13T21:58:15.047 DEBUG:teuthology.orchestra.run.smithi031:> set -ex 2024-09-13T21:58:15.047 DEBUG:teuthology.orchestra.run.smithi031:> sudo dd of=/etc/apt/sources.list.d/ceph.list 2024-09-13T21:58:15.050 DEBUG:teuthology.orchestra.run.smithi096:> sudo apt-get update 2024-09-13T21:58:15.062 DEBUG:teuthology.orchestra.run.smithi031:> sudo apt-get update 2024-09-13T21:58:15.235 INFO:teuthology.orchestra.run.smithi031.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-13T21:58:15.235 INFO:teuthology.orchestra.run.smithi031.stdout:Hit:2 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-13T21:58:15.245 INFO:teuthology.orchestra.run.smithi031.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-13T21:58:15.262 INFO:teuthology.orchestra.run.smithi031.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-13T21:58:15.267 INFO:teuthology.orchestra.run.smithi138.stdout:Ign:1 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy InRelease 2024-09-13T21:58:15.272 INFO:teuthology.orchestra.run.smithi096.stdout:Ign:1 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy InRelease 2024-09-13T21:58:15.289 INFO:teuthology.orchestra.run.smithi138.stdout:Get:2 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy Release [7,662 B] 2024-09-13T21:58:15.290 INFO:teuthology.orchestra.run.smithi031.stdout:Ign:5 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy InRelease 2024-09-13T21:58:15.293 INFO:teuthology.orchestra.run.smithi096.stdout:Get:2 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy Release [7,662 B] 2024-09-13T21:58:15.311 INFO:teuthology.orchestra.run.smithi031.stdout:Get:6 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy Release [7,662 B] 2024-09-13T21:58:15.312 INFO:teuthology.orchestra.run.smithi138.stdout:Ign:3 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy Release.gpg 2024-09-13T21:58:15.317 INFO:teuthology.orchestra.run.smithi096.stdout:Ign:3 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy Release.gpg 2024-09-13T21:58:15.333 INFO:teuthology.orchestra.run.smithi031.stdout:Ign:7 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy Release.gpg 2024-09-13T21:58:15.338 INFO:teuthology.orchestra.run.smithi096.stdout:Get:4 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main i386 Packages [3,410 B] 2024-09-13T21:58:15.341 INFO:teuthology.orchestra.run.smithi138.stdout:Hit:4 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-13T21:58:15.341 INFO:teuthology.orchestra.run.smithi138.stdout:Get:5 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main i386 Packages [3,410 B] 2024-09-13T21:58:15.352 INFO:teuthology.orchestra.run.smithi138.stdout:Hit:6 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-13T21:58:15.354 INFO:teuthology.orchestra.run.smithi031.stdout:Get:8 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main i386 Packages [3,410 B] 2024-09-13T21:58:15.357 INFO:teuthology.orchestra.run.smithi096.stdout:Hit:5 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-13T21:58:15.357 INFO:teuthology.orchestra.run.smithi096.stdout:Hit:6 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-13T21:58:15.373 INFO:teuthology.orchestra.run.smithi138.stdout:Get:7 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 Packages [17.9 kB] 2024-09-13T21:58:15.378 INFO:teuthology.orchestra.run.smithi096.stdout:Get:7 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 Packages [17.9 kB] 2024-09-13T21:58:15.382 INFO:teuthology.orchestra.run.smithi031.stdout:Get:9 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 Packages [17.9 kB] 2024-09-13T21:58:15.433 INFO:teuthology.orchestra.run.smithi138.stdout:Hit:8 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-13T21:58:15.435 INFO:teuthology.orchestra.run.smithi096.stdout:Hit:8 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-13T21:58:15.514 INFO:teuthology.orchestra.run.smithi096.stdout:Hit:9 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-13T21:58:15.515 INFO:teuthology.orchestra.run.smithi138.stdout:Hit:9 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-13T21:58:15.593 INFO:teuthology.orchestra.run.smithi031.stdout:Fetched 29.0 kB in 0s (83.9 kB/s) 2024-09-13T21:58:15.717 INFO:teuthology.orchestra.run.smithi138.stdout:Fetched 29.0 kB in 0s (59.1 kB/s) 2024-09-13T21:58:15.725 INFO:teuthology.orchestra.run.smithi096.stdout:Fetched 29.0 kB in 0s (58.6 kB/s) 2024-09-13T21:58:16.640 INFO:teuthology.orchestra.run.smithi031.stdout:Reading package lists... 2024-09-13T21:58:16.656 DEBUG:teuthology.orchestra.run.smithi031:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install ceph=19.1.1-324-gecab7be5-1jammy cephadm=19.1.1-324-gecab7be5-1jammy ceph-mds=19.1.1-324-gecab7be5-1jammy ceph-mgr=19.1.1-324-gecab7be5-1jammy ceph-common=19.1.1-324-gecab7be5-1jammy ceph-fuse=19.1.1-324-gecab7be5-1jammy ceph-test=19.1.1-324-gecab7be5-1jammy ceph-volume=19.1.1-324-gecab7be5-1jammy radosgw=19.1.1-324-gecab7be5-1jammy python3-rados=19.1.1-324-gecab7be5-1jammy python3-rgw=19.1.1-324-gecab7be5-1jammy python3-cephfs=19.1.1-324-gecab7be5-1jammy python3-rbd=19.1.1-324-gecab7be5-1jammy libcephfs2=19.1.1-324-gecab7be5-1jammy libcephfs-dev=19.1.1-324-gecab7be5-1jammy librados2=19.1.1-324-gecab7be5-1jammy librbd1=19.1.1-324-gecab7be5-1jammy rbd-fuse=19.1.1-324-gecab7be5-1jammy 2024-09-13T21:58:16.721 INFO:teuthology.orchestra.run.smithi031.stdout:Reading package lists... 2024-09-13T21:58:16.754 INFO:teuthology.orchestra.run.smithi096.stdout:Reading package lists... 2024-09-13T21:58:16.768 DEBUG:teuthology.orchestra.run.smithi096:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install ceph=19.1.1-324-gecab7be5-1jammy cephadm=19.1.1-324-gecab7be5-1jammy ceph-mds=19.1.1-324-gecab7be5-1jammy ceph-mgr=19.1.1-324-gecab7be5-1jammy ceph-common=19.1.1-324-gecab7be5-1jammy ceph-fuse=19.1.1-324-gecab7be5-1jammy ceph-test=19.1.1-324-gecab7be5-1jammy ceph-volume=19.1.1-324-gecab7be5-1jammy radosgw=19.1.1-324-gecab7be5-1jammy python3-rados=19.1.1-324-gecab7be5-1jammy python3-rgw=19.1.1-324-gecab7be5-1jammy python3-cephfs=19.1.1-324-gecab7be5-1jammy python3-rbd=19.1.1-324-gecab7be5-1jammy libcephfs2=19.1.1-324-gecab7be5-1jammy libcephfs-dev=19.1.1-324-gecab7be5-1jammy librados2=19.1.1-324-gecab7be5-1jammy librbd1=19.1.1-324-gecab7be5-1jammy rbd-fuse=19.1.1-324-gecab7be5-1jammy 2024-09-13T21:58:16.780 INFO:teuthology.orchestra.run.smithi138.stdout:Reading package lists... 2024-09-13T21:58:16.796 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.1.1-324-gecab7be5-1jammy cephadm=19.1.1-324-gecab7be5-1jammy ceph-mds=19.1.1-324-gecab7be5-1jammy ceph-mgr=19.1.1-324-gecab7be5-1jammy ceph-common=19.1.1-324-gecab7be5-1jammy ceph-fuse=19.1.1-324-gecab7be5-1jammy ceph-test=19.1.1-324-gecab7be5-1jammy ceph-volume=19.1.1-324-gecab7be5-1jammy radosgw=19.1.1-324-gecab7be5-1jammy python3-rados=19.1.1-324-gecab7be5-1jammy python3-rgw=19.1.1-324-gecab7be5-1jammy python3-cephfs=19.1.1-324-gecab7be5-1jammy python3-rbd=19.1.1-324-gecab7be5-1jammy libcephfs2=19.1.1-324-gecab7be5-1jammy libcephfs-dev=19.1.1-324-gecab7be5-1jammy librados2=19.1.1-324-gecab7be5-1jammy librbd1=19.1.1-324-gecab7be5-1jammy rbd-fuse=19.1.1-324-gecab7be5-1jammy 2024-09-13T21:58:16.823 INFO:teuthology.orchestra.run.smithi096.stdout:Reading package lists... 2024-09-13T21:58:16.853 INFO:teuthology.orchestra.run.smithi138.stdout:Reading package lists... 2024-09-13T21:58:16.940 INFO:teuthology.orchestra.run.smithi031.stdout:Building dependency tree... 2024-09-13T21:58:16.940 INFO:teuthology.orchestra.run.smithi031.stdout:Reading state information... 2024-09-13T21:58:17.007 INFO:teuthology.orchestra.run.smithi096.stdout:Building dependency tree... 2024-09-13T21:58:17.008 INFO:teuthology.orchestra.run.smithi096.stdout:Reading state information... 2024-09-13T21:58:17.038 INFO:teuthology.orchestra.run.smithi138.stdout:Building dependency tree... 2024-09-13T21:58:17.039 INFO:teuthology.orchestra.run.smithi138.stdout:Reading state information... 2024-09-13T21:58:17.160 INFO:teuthology.orchestra.run.smithi031.stdout:The following packages were automatically installed and are no longer required: 2024-09-13T21:58:17.160 INFO:teuthology.orchestra.run.smithi031.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-13T21:58:17.160 INFO:teuthology.orchestra.run.smithi031.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-13T21:58:17.160 INFO:teuthology.orchestra.run.smithi031.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-13T21:58:17.161 INFO:teuthology.orchestra.run.smithi031.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-13T21:58:17.161 INFO:teuthology.orchestra.run.smithi031.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-13T21:58:17.161 INFO:teuthology.orchestra.run.smithi031.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-13T21:58:17.162 INFO:teuthology.orchestra.run.smithi031.stdout:The following additional packages will be installed: 2024-09-13T21:58:17.162 INFO:teuthology.orchestra.run.smithi031.stdout: ceph-base ceph-mgr-cephadm ceph-mgr-dashboard ceph-mgr-diskprediction-local 2024-09-13T21:58:17.162 INFO:teuthology.orchestra.run.smithi031.stdout: ceph-mgr-k8sevents ceph-mgr-modules-core ceph-mon ceph-osd jq 2024-09-13T21:58:17.164 INFO:teuthology.orchestra.run.smithi031.stdout: libdouble-conversion3 libjq1 liblttng-ust1 liblua5.3-dev liboath0 libonig5 2024-09-13T21:58:17.164 INFO:teuthology.orchestra.run.smithi031.stdout: libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 libradosstriper1 2024-09-13T21:58:17.164 INFO:teuthology.orchestra.run.smithi031.stdout: librdkafka1 libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 2024-09-13T21:58:17.164 INFO:teuthology.orchestra.run.smithi031.stdout: lua-any lua-sec lua-socket lua5.1 luarocks nvme-cli pkg-config 2024-09-13T21:58:17.164 INFO:teuthology.orchestra.run.smithi031.stdout: python-asyncssh-doc python-babel-localedata python-pastedeploy-tpl 2024-09-13T21:58:17.164 INFO:teuthology.orchestra.run.smithi031.stdout: python3-asyncssh python3-babel python3-bcrypt python3-cachetools 2024-09-13T21:58:17.164 INFO:teuthology.orchestra.run.smithi031.stdout: python3-ceph-argparse python3-ceph-common python3-certifi python3-cheroot 2024-09-13T21:58:17.165 INFO:teuthology.orchestra.run.smithi031.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-09-13T21:58:17.165 INFO:teuthology.orchestra.run.smithi031.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-09-13T21:58:17.165 INFO:teuthology.orchestra.run.smithi031.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-09-13T21:58:17.165 INFO:teuthology.orchestra.run.smithi031.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-09-13T21:58:17.165 INFO:teuthology.orchestra.run.smithi031.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-09-13T21:58:17.165 INFO:teuthology.orchestra.run.smithi031.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-09-13T21:58:17.165 INFO:teuthology.orchestra.run.smithi031.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-09-13T21:58:17.165 INFO:teuthology.orchestra.run.smithi031.stdout: python3-pygments python3-pyinotify python3-pytest python3-repoze.lru 2024-09-13T21:58:17.165 INFO:teuthology.orchestra.run.smithi031.stdout: python3-requests python3-requests-oauthlib python3-routes python3-rsa 2024-09-13T21:58:17.166 INFO:teuthology.orchestra.run.smithi031.stdout: python3-simplegeneric python3-simplejson python3-singledispatch 2024-09-13T21:58:17.166 INFO:teuthology.orchestra.run.smithi031.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-09-13T21:58:17.166 INFO:teuthology.orchestra.run.smithi031.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-09-13T21:58:17.166 INFO:teuthology.orchestra.run.smithi031.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-09-13T21:58:17.166 INFO:teuthology.orchestra.run.smithi031.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n socat unzip 2024-09-13T21:58:17.166 INFO:teuthology.orchestra.run.smithi031.stdout: xmlstarlet zip 2024-09-13T21:58:17.166 INFO:teuthology.orchestra.run.smithi031.stdout:Suggested packages: 2024-09-13T21:58:17.166 INFO:teuthology.orchestra.run.smithi031.stdout: python3-influxdb readline-doc python-jinja2-doc python3-beaker 2024-09-13T21:58:17.166 INFO:teuthology.orchestra.run.smithi031.stdout: python-mako-doc python-natsort-doc python-openssl-doc python3-openssl-dbg 2024-09-13T21:58:17.166 INFO:teuthology.orchestra.run.smithi031.stdout: httpd-wsgi libapache2-mod-python libapache2-mod-scgi libjs-mochikit 2024-09-13T21:58:17.167 INFO:teuthology.orchestra.run.smithi031.stdout: python-pecan-doc python-psutil-doc subversion python-pygments-doc 2024-09-13T21:58:17.167 INFO:teuthology.orchestra.run.smithi031.stdout: python-pyinotify-doc python3-socks python-requests-doc python3-dap 2024-09-13T21:58:17.167 INFO:teuthology.orchestra.run.smithi031.stdout: python-sklearn-doc ipython3 python-waitress-doc python-webob-doc 2024-09-13T21:58:17.167 INFO:teuthology.orchestra.run.smithi031.stdout: python-webtest-doc python-werkzeug-doc python3-watchdog 2024-09-13T21:58:17.167 INFO:teuthology.orchestra.run.smithi031.stdout:Recommended packages: 2024-09-13T21:58:17.167 INFO:teuthology.orchestra.run.smithi031.stdout: btrfs-tools 2024-09-13T21:58:17.192 INFO:teuthology.orchestra.run.smithi096.stdout:The following packages were automatically installed and are no longer required: 2024-09-13T21:58:17.192 INFO:teuthology.orchestra.run.smithi096.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-13T21:58:17.192 INFO:teuthology.orchestra.run.smithi096.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-13T21:58:17.192 INFO:teuthology.orchestra.run.smithi096.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-13T21:58:17.193 INFO:teuthology.orchestra.run.smithi096.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-13T21:58:17.193 INFO:teuthology.orchestra.run.smithi096.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-13T21:58:17.193 INFO:teuthology.orchestra.run.smithi096.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-13T21:58:17.194 INFO:teuthology.orchestra.run.smithi096.stdout:The following additional packages will be installed: 2024-09-13T21:58:17.194 INFO:teuthology.orchestra.run.smithi096.stdout: ceph-base ceph-mgr-cephadm ceph-mgr-dashboard ceph-mgr-diskprediction-local 2024-09-13T21:58:17.194 INFO:teuthology.orchestra.run.smithi096.stdout: ceph-mgr-k8sevents ceph-mgr-modules-core ceph-mon ceph-osd jq 2024-09-13T21:58:17.195 INFO:teuthology.orchestra.run.smithi096.stdout: libdouble-conversion3 libjq1 liblttng-ust1 liblua5.3-dev liboath0 libonig5 2024-09-13T21:58:17.195 INFO:teuthology.orchestra.run.smithi096.stdout: libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 libradosstriper1 2024-09-13T21:58:17.195 INFO:teuthology.orchestra.run.smithi096.stdout: librdkafka1 libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 2024-09-13T21:58:17.195 INFO:teuthology.orchestra.run.smithi096.stdout: lua-any lua-sec lua-socket lua5.1 luarocks nvme-cli pkg-config 2024-09-13T21:58:17.195 INFO:teuthology.orchestra.run.smithi096.stdout: python-asyncssh-doc python-babel-localedata python-pastedeploy-tpl 2024-09-13T21:58:17.195 INFO:teuthology.orchestra.run.smithi096.stdout: python3-asyncssh python3-babel python3-bcrypt python3-cachetools 2024-09-13T21:58:17.195 INFO:teuthology.orchestra.run.smithi096.stdout: python3-ceph-argparse python3-ceph-common python3-certifi python3-cheroot 2024-09-13T21:58:17.195 INFO:teuthology.orchestra.run.smithi096.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-09-13T21:58:17.195 INFO:teuthology.orchestra.run.smithi096.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-09-13T21:58:17.195 INFO:teuthology.orchestra.run.smithi096.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-09-13T21:58:17.195 INFO:teuthology.orchestra.run.smithi096.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-09-13T21:58:17.195 INFO:teuthology.orchestra.run.smithi096.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-09-13T21:58:17.196 INFO:teuthology.orchestra.run.smithi096.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-09-13T21:58:17.196 INFO:teuthology.orchestra.run.smithi096.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-09-13T21:58:17.196 INFO:teuthology.orchestra.run.smithi096.stdout: python3-pygments python3-pyinotify python3-pytest python3-repoze.lru 2024-09-13T21:58:17.196 INFO:teuthology.orchestra.run.smithi096.stdout: python3-requests python3-requests-oauthlib python3-routes python3-rsa 2024-09-13T21:58:17.196 INFO:teuthology.orchestra.run.smithi096.stdout: python3-simplegeneric python3-simplejson python3-singledispatch 2024-09-13T21:58:17.196 INFO:teuthology.orchestra.run.smithi096.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-09-13T21:58:17.196 INFO:teuthology.orchestra.run.smithi096.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-09-13T21:58:17.196 INFO:teuthology.orchestra.run.smithi096.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-09-13T21:58:17.196 INFO:teuthology.orchestra.run.smithi096.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n socat unzip 2024-09-13T21:58:17.196 INFO:teuthology.orchestra.run.smithi096.stdout: xmlstarlet zip 2024-09-13T21:58:17.197 INFO:teuthology.orchestra.run.smithi096.stdout:Suggested packages: 2024-09-13T21:58:17.197 INFO:teuthology.orchestra.run.smithi096.stdout: python3-influxdb readline-doc python-jinja2-doc python3-beaker 2024-09-13T21:58:17.197 INFO:teuthology.orchestra.run.smithi096.stdout: python-mako-doc python-natsort-doc python-openssl-doc python3-openssl-dbg 2024-09-13T21:58:17.197 INFO:teuthology.orchestra.run.smithi096.stdout: httpd-wsgi libapache2-mod-python libapache2-mod-scgi libjs-mochikit 2024-09-13T21:58:17.197 INFO:teuthology.orchestra.run.smithi096.stdout: python-pecan-doc python-psutil-doc subversion python-pygments-doc 2024-09-13T21:58:17.197 INFO:teuthology.orchestra.run.smithi096.stdout: python-pyinotify-doc python3-socks python-requests-doc python3-dap 2024-09-13T21:58:17.197 INFO:teuthology.orchestra.run.smithi096.stdout: python-sklearn-doc ipython3 python-waitress-doc python-webob-doc 2024-09-13T21:58:17.197 INFO:teuthology.orchestra.run.smithi096.stdout: python-webtest-doc python-werkzeug-doc python3-watchdog 2024-09-13T21:58:17.197 INFO:teuthology.orchestra.run.smithi096.stdout:Recommended packages: 2024-09-13T21:58:17.197 INFO:teuthology.orchestra.run.smithi096.stdout: btrfs-tools 2024-09-13T21:58:17.225 INFO:teuthology.orchestra.run.smithi138.stdout:The following packages were automatically installed and are no longer required: 2024-09-13T21:58:17.225 INFO:teuthology.orchestra.run.smithi138.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-13T21:58:17.225 INFO:teuthology.orchestra.run.smithi138.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-13T21:58:17.226 INFO:teuthology.orchestra.run.smithi138.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-13T21:58:17.226 INFO:teuthology.orchestra.run.smithi138.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-13T21:58:17.227 INFO:teuthology.orchestra.run.smithi138.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-13T21:58:17.227 INFO:teuthology.orchestra.run.smithi138.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-13T21:58:17.227 INFO:teuthology.orchestra.run.smithi138.stdout:The following additional packages will be installed: 2024-09-13T21:58:17.227 INFO:teuthology.orchestra.run.smithi138.stdout: ceph-base ceph-mgr-cephadm ceph-mgr-dashboard ceph-mgr-diskprediction-local 2024-09-13T21:58:17.227 INFO:teuthology.orchestra.run.smithi138.stdout: ceph-mgr-k8sevents ceph-mgr-modules-core ceph-mon ceph-osd jq 2024-09-13T21:58:17.227 INFO:teuthology.orchestra.run.smithi138.stdout: libdouble-conversion3 libjq1 liblttng-ust1 liblua5.3-dev liboath0 libonig5 2024-09-13T21:58:17.227 INFO:teuthology.orchestra.run.smithi138.stdout: libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 libradosstriper1 2024-09-13T21:58:17.228 INFO:teuthology.orchestra.run.smithi138.stdout: librdkafka1 libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 2024-09-13T21:58:17.228 INFO:teuthology.orchestra.run.smithi138.stdout: lua-any lua-sec lua-socket lua5.1 luarocks nvme-cli pkg-config 2024-09-13T21:58:17.229 INFO:teuthology.orchestra.run.smithi138.stdout: python-asyncssh-doc python-babel-localedata python-pastedeploy-tpl 2024-09-13T21:58:17.229 INFO:teuthology.orchestra.run.smithi138.stdout: python3-asyncssh python3-babel python3-bcrypt python3-cachetools 2024-09-13T21:58:17.229 INFO:teuthology.orchestra.run.smithi138.stdout: python3-ceph-argparse python3-ceph-common python3-certifi python3-cheroot 2024-09-13T21:58:17.229 INFO:teuthology.orchestra.run.smithi138.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-09-13T21:58:17.229 INFO:teuthology.orchestra.run.smithi138.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-09-13T21:58:17.229 INFO:teuthology.orchestra.run.smithi138.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-09-13T21:58:17.229 INFO:teuthology.orchestra.run.smithi138.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-09-13T21:58:17.229 INFO:teuthology.orchestra.run.smithi138.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-09-13T21:58:17.229 INFO:teuthology.orchestra.run.smithi138.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-09-13T21:58:17.229 INFO:teuthology.orchestra.run.smithi138.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-09-13T21:58:17.229 INFO:teuthology.orchestra.run.smithi138.stdout: python3-pygments python3-pyinotify python3-pytest python3-repoze.lru 2024-09-13T21:58:17.229 INFO:teuthology.orchestra.run.smithi138.stdout: python3-requests python3-requests-oauthlib python3-routes python3-rsa 2024-09-13T21:58:17.229 INFO:teuthology.orchestra.run.smithi138.stdout: python3-simplegeneric python3-simplejson python3-singledispatch 2024-09-13T21:58:17.229 INFO:teuthology.orchestra.run.smithi138.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-09-13T21:58:17.230 INFO:teuthology.orchestra.run.smithi138.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-09-13T21:58:17.230 INFO:teuthology.orchestra.run.smithi138.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-09-13T21:58:17.230 INFO:teuthology.orchestra.run.smithi138.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n socat unzip 2024-09-13T21:58:17.230 INFO:teuthology.orchestra.run.smithi138.stdout: xmlstarlet zip 2024-09-13T21:58:17.230 INFO:teuthology.orchestra.run.smithi138.stdout:Suggested packages: 2024-09-13T21:58:17.230 INFO:teuthology.orchestra.run.smithi138.stdout: python3-influxdb readline-doc python-jinja2-doc python3-beaker 2024-09-13T21:58:17.230 INFO:teuthology.orchestra.run.smithi138.stdout: python-mako-doc python-natsort-doc python-openssl-doc python3-openssl-dbg 2024-09-13T21:58:17.231 INFO:teuthology.orchestra.run.smithi138.stdout: httpd-wsgi libapache2-mod-python libapache2-mod-scgi libjs-mochikit 2024-09-13T21:58:17.231 INFO:teuthology.orchestra.run.smithi138.stdout: python-pecan-doc python-psutil-doc subversion python-pygments-doc 2024-09-13T21:58:17.231 INFO:teuthology.orchestra.run.smithi138.stdout: python-pyinotify-doc python3-socks python-requests-doc python3-dap 2024-09-13T21:58:17.231 INFO:teuthology.orchestra.run.smithi138.stdout: python-sklearn-doc ipython3 python-waitress-doc python-webob-doc 2024-09-13T21:58:17.231 INFO:teuthology.orchestra.run.smithi138.stdout: python-webtest-doc python-werkzeug-doc python3-watchdog 2024-09-13T21:58:17.231 INFO:teuthology.orchestra.run.smithi138.stdout:Recommended packages: 2024-09-13T21:58:17.231 INFO:teuthology.orchestra.run.smithi138.stdout: btrfs-tools 2024-09-13T21:58:17.275 INFO:teuthology.orchestra.run.smithi031.stdout:The following NEW packages will be installed: 2024-09-13T21:58:17.275 INFO:teuthology.orchestra.run.smithi031.stdout: ceph ceph-base ceph-common ceph-fuse ceph-mds ceph-mgr ceph-mgr-cephadm 2024-09-13T21:58:17.276 INFO:teuthology.orchestra.run.smithi031.stdout: ceph-mgr-dashboard ceph-mgr-diskprediction-local ceph-mgr-k8sevents 2024-09-13T21:58:17.276 INFO:teuthology.orchestra.run.smithi031.stdout: ceph-mgr-modules-core ceph-mon ceph-osd ceph-test ceph-volume cephadm jq 2024-09-13T21:58:17.276 INFO:teuthology.orchestra.run.smithi031.stdout: libcephfs-dev libcephfs2 libdouble-conversion3 libjq1 liblttng-ust1 2024-09-13T21:58:17.276 INFO:teuthology.orchestra.run.smithi031.stdout: liblua5.3-dev liboath0 libonig5 libpcre2-16-0 libqt5core5a libqt5dbus5 2024-09-13T21:58:17.276 INFO:teuthology.orchestra.run.smithi031.stdout: libqt5network5 librados2 libradosstriper1 librbd1 librdkafka1 2024-09-13T21:58:17.277 INFO:teuthology.orchestra.run.smithi031.stdout: libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 lua-any lua-sec 2024-09-13T21:58:17.277 INFO:teuthology.orchestra.run.smithi031.stdout: lua-socket lua5.1 luarocks nvme-cli pkg-config python-asyncssh-doc 2024-09-13T21:58:17.277 INFO:teuthology.orchestra.run.smithi031.stdout: python-babel-localedata python-pastedeploy-tpl python3-asyncssh 2024-09-13T21:58:17.277 INFO:teuthology.orchestra.run.smithi031.stdout: python3-babel python3-bcrypt python3-cachetools python3-ceph-argparse 2024-09-13T21:58:17.277 INFO:teuthology.orchestra.run.smithi031.stdout: python3-ceph-common python3-cephfs python3-certifi python3-cheroot 2024-09-13T21:58:17.278 INFO:teuthology.orchestra.run.smithi031.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-09-13T21:58:17.278 INFO:teuthology.orchestra.run.smithi031.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-09-13T21:58:17.278 INFO:teuthology.orchestra.run.smithi031.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-09-13T21:58:17.278 INFO:teuthology.orchestra.run.smithi031.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-09-13T21:58:17.278 INFO:teuthology.orchestra.run.smithi031.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-09-13T21:58:17.278 INFO:teuthology.orchestra.run.smithi031.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-09-13T21:58:17.278 INFO:teuthology.orchestra.run.smithi031.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-09-13T21:58:17.278 INFO:teuthology.orchestra.run.smithi031.stdout: python3-pygments python3-pyinotify python3-pytest python3-rados python3-rbd 2024-09-13T21:58:17.278 INFO:teuthology.orchestra.run.smithi031.stdout: python3-repoze.lru python3-requests python3-requests-oauthlib python3-rgw 2024-09-13T21:58:17.278 INFO:teuthology.orchestra.run.smithi031.stdout: python3-routes python3-rsa python3-simplegeneric python3-simplejson 2024-09-13T21:58:17.278 INFO:teuthology.orchestra.run.smithi031.stdout: python3-singledispatch python3-sklearn python3-sklearn-lib python3-tempita 2024-09-13T21:58:17.279 INFO:teuthology.orchestra.run.smithi031.stdout: python3-tempora python3-threadpoolctl python3-toml python3-urllib3 2024-09-13T21:58:17.279 INFO:teuthology.orchestra.run.smithi031.stdout: python3-waitress python3-wcwidth python3-webob python3-websocket 2024-09-13T21:58:17.279 INFO:teuthology.orchestra.run.smithi031.stdout: python3-webtest python3-werkzeug python3-zc.lockfile qttranslations5-l10n 2024-09-13T21:58:17.279 INFO:teuthology.orchestra.run.smithi031.stdout: radosgw rbd-fuse socat unzip xmlstarlet zip 2024-09-13T21:58:17.303 INFO:teuthology.orchestra.run.smithi096.stdout:The following NEW packages will be installed: 2024-09-13T21:58:17.303 INFO:teuthology.orchestra.run.smithi096.stdout: ceph ceph-base ceph-common ceph-fuse ceph-mds ceph-mgr ceph-mgr-cephadm 2024-09-13T21:58:17.303 INFO:teuthology.orchestra.run.smithi096.stdout: ceph-mgr-dashboard ceph-mgr-diskprediction-local ceph-mgr-k8sevents 2024-09-13T21:58:17.303 INFO:teuthology.orchestra.run.smithi096.stdout: ceph-mgr-modules-core ceph-mon ceph-osd ceph-test ceph-volume cephadm jq 2024-09-13T21:58:17.303 INFO:teuthology.orchestra.run.smithi096.stdout: libcephfs-dev libcephfs2 libdouble-conversion3 libjq1 liblttng-ust1 2024-09-13T21:58:17.303 INFO:teuthology.orchestra.run.smithi096.stdout: liblua5.3-dev liboath0 libonig5 libpcre2-16-0 libqt5core5a libqt5dbus5 2024-09-13T21:58:17.304 INFO:teuthology.orchestra.run.smithi096.stdout: libqt5network5 librados2 libradosstriper1 librbd1 librdkafka1 2024-09-13T21:58:17.304 INFO:teuthology.orchestra.run.smithi096.stdout: libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 lua-any lua-sec 2024-09-13T21:58:17.305 INFO:teuthology.orchestra.run.smithi096.stdout: lua-socket lua5.1 luarocks nvme-cli pkg-config python-asyncssh-doc 2024-09-13T21:58:17.305 INFO:teuthology.orchestra.run.smithi096.stdout: python-babel-localedata python-pastedeploy-tpl python3-asyncssh 2024-09-13T21:58:17.305 INFO:teuthology.orchestra.run.smithi096.stdout: python3-babel python3-bcrypt python3-cachetools python3-ceph-argparse 2024-09-13T21:58:17.305 INFO:teuthology.orchestra.run.smithi096.stdout: python3-ceph-common python3-cephfs python3-certifi python3-cheroot 2024-09-13T21:58:17.305 INFO:teuthology.orchestra.run.smithi096.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-09-13T21:58:17.305 INFO:teuthology.orchestra.run.smithi096.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-09-13T21:58:17.305 INFO:teuthology.orchestra.run.smithi096.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-09-13T21:58:17.305 INFO:teuthology.orchestra.run.smithi096.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-09-13T21:58:17.305 INFO:teuthology.orchestra.run.smithi096.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-09-13T21:58:17.306 INFO:teuthology.orchestra.run.smithi096.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-09-13T21:58:17.306 INFO:teuthology.orchestra.run.smithi096.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-09-13T21:58:17.306 INFO:teuthology.orchestra.run.smithi096.stdout: python3-pygments python3-pyinotify python3-pytest python3-rados python3-rbd 2024-09-13T21:58:17.306 INFO:teuthology.orchestra.run.smithi096.stdout: python3-repoze.lru python3-requests python3-requests-oauthlib python3-rgw 2024-09-13T21:58:17.306 INFO:teuthology.orchestra.run.smithi096.stdout: python3-routes python3-rsa python3-simplegeneric python3-simplejson 2024-09-13T21:58:17.306 INFO:teuthology.orchestra.run.smithi096.stdout: python3-singledispatch python3-sklearn python3-sklearn-lib python3-tempita 2024-09-13T21:58:17.306 INFO:teuthology.orchestra.run.smithi096.stdout: python3-tempora python3-threadpoolctl python3-toml python3-urllib3 2024-09-13T21:58:17.306 INFO:teuthology.orchestra.run.smithi096.stdout: python3-waitress python3-wcwidth python3-webob python3-websocket 2024-09-13T21:58:17.306 INFO:teuthology.orchestra.run.smithi096.stdout: python3-webtest python3-werkzeug python3-zc.lockfile qttranslations5-l10n 2024-09-13T21:58:17.306 INFO:teuthology.orchestra.run.smithi096.stdout: radosgw rbd-fuse socat unzip xmlstarlet zip 2024-09-13T21:58:17.334 INFO:teuthology.orchestra.run.smithi138.stdout:The following NEW packages will be installed: 2024-09-13T21:58:17.335 INFO:teuthology.orchestra.run.smithi138.stdout: ceph ceph-base ceph-common ceph-fuse ceph-mds ceph-mgr ceph-mgr-cephadm 2024-09-13T21:58:17.335 INFO:teuthology.orchestra.run.smithi138.stdout: ceph-mgr-dashboard ceph-mgr-diskprediction-local ceph-mgr-k8sevents 2024-09-13T21:58:17.335 INFO:teuthology.orchestra.run.smithi138.stdout: ceph-mgr-modules-core ceph-mon ceph-osd ceph-test ceph-volume cephadm jq 2024-09-13T21:58:17.335 INFO:teuthology.orchestra.run.smithi138.stdout: libcephfs-dev libcephfs2 libdouble-conversion3 libjq1 liblttng-ust1 2024-09-13T21:58:17.335 INFO:teuthology.orchestra.run.smithi138.stdout: liblua5.3-dev liboath0 libonig5 libpcre2-16-0 libqt5core5a libqt5dbus5 2024-09-13T21:58:17.336 INFO:teuthology.orchestra.run.smithi138.stdout: libqt5network5 librados2 libradosstriper1 librbd1 librdkafka1 2024-09-13T21:58:17.336 INFO:teuthology.orchestra.run.smithi138.stdout: libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 lua-any lua-sec 2024-09-13T21:58:17.336 INFO:teuthology.orchestra.run.smithi138.stdout: lua-socket lua5.1 luarocks nvme-cli pkg-config python-asyncssh-doc 2024-09-13T21:58:17.336 INFO:teuthology.orchestra.run.smithi138.stdout: python-babel-localedata python-pastedeploy-tpl python3-asyncssh 2024-09-13T21:58:17.336 INFO:teuthology.orchestra.run.smithi138.stdout: python3-babel python3-bcrypt python3-cachetools python3-ceph-argparse 2024-09-13T21:58:17.336 INFO:teuthology.orchestra.run.smithi138.stdout: python3-ceph-common python3-cephfs python3-certifi python3-cheroot 2024-09-13T21:58:17.337 INFO:teuthology.orchestra.run.smithi138.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-09-13T21:58:17.337 INFO:teuthology.orchestra.run.smithi138.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-09-13T21:58:17.337 INFO:teuthology.orchestra.run.smithi138.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-09-13T21:58:17.337 INFO:teuthology.orchestra.run.smithi138.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-09-13T21:58:17.337 INFO:teuthology.orchestra.run.smithi138.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-09-13T21:58:17.338 INFO:teuthology.orchestra.run.smithi138.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-09-13T21:58:17.338 INFO:teuthology.orchestra.run.smithi138.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-09-13T21:58:17.338 INFO:teuthology.orchestra.run.smithi138.stdout: python3-pygments python3-pyinotify python3-pytest python3-rados python3-rbd 2024-09-13T21:58:17.338 INFO:teuthology.orchestra.run.smithi138.stdout: python3-repoze.lru python3-requests python3-requests-oauthlib python3-rgw 2024-09-13T21:58:17.338 INFO:teuthology.orchestra.run.smithi138.stdout: python3-routes python3-rsa python3-simplegeneric python3-simplejson 2024-09-13T21:58:17.338 INFO:teuthology.orchestra.run.smithi138.stdout: python3-singledispatch python3-sklearn python3-sklearn-lib python3-tempita 2024-09-13T21:58:17.338 INFO:teuthology.orchestra.run.smithi138.stdout: python3-tempora python3-threadpoolctl python3-toml python3-urllib3 2024-09-13T21:58:17.339 INFO:teuthology.orchestra.run.smithi138.stdout: python3-waitress python3-wcwidth python3-webob python3-websocket 2024-09-13T21:58:17.339 INFO:teuthology.orchestra.run.smithi138.stdout: python3-webtest python3-werkzeug python3-zc.lockfile qttranslations5-l10n 2024-09-13T21:58:17.339 INFO:teuthology.orchestra.run.smithi138.stdout: radosgw rbd-fuse socat unzip xmlstarlet zip 2024-09-13T21:58:17.339 INFO:teuthology.orchestra.run.smithi031.stdout:0 upgraded, 118 newly installed, 0 to remove and 331 not upgraded. 2024-09-13T21:58:17.340 INFO:teuthology.orchestra.run.smithi031.stdout:Need to get 181 MB of archives. 2024-09-13T21:58:17.340 INFO:teuthology.orchestra.run.smithi031.stdout:After this operation, 829 MB of additional disk space will be used. 2024-09-13T21:58:17.340 INFO:teuthology.orchestra.run.smithi031.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblttng-ust1 amd64 2.13.1-1ubuntu1 [190 kB] 2024-09-13T21:58:17.365 INFO:teuthology.orchestra.run.smithi096.stdout:0 upgraded, 118 newly installed, 0 to remove and 331 not upgraded. 2024-09-13T21:58:17.365 INFO:teuthology.orchestra.run.smithi096.stdout:Need to get 181 MB of archives. 2024-09-13T21:58:17.366 INFO:teuthology.orchestra.run.smithi096.stdout:After this operation, 829 MB of additional disk space will be used. 2024-09-13T21:58:17.366 INFO:teuthology.orchestra.run.smithi096.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblttng-ust1 amd64 2.13.1-1ubuntu1 [190 kB] 2024-09-13T21:58:17.395 INFO:teuthology.orchestra.run.smithi138.stdout:0 upgraded, 118 newly installed, 0 to remove and 331 not upgraded. 2024-09-13T21:58:17.395 INFO:teuthology.orchestra.run.smithi138.stdout:Need to get 181 MB of archives. 2024-09-13T21:58:17.395 INFO:teuthology.orchestra.run.smithi138.stdout:After this operation, 829 MB of additional disk space will be used. 2024-09-13T21:58:17.395 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-09-13T21:58:17.418 INFO:teuthology.orchestra.run.smithi031.stdout:Get:2 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 librados2 amd64 19.1.1-324-gecab7be5-1jammy [3,591 kB] 2024-09-13T21:58:17.425 INFO:teuthology.orchestra.run.smithi031.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdouble-conversion3 amd64 3.1.7-4 [39.0 kB] 2024-09-13T21:58:17.427 INFO:teuthology.orchestra.run.smithi031.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre2-16-0 amd64 10.39-3ubuntu0.1 [203 kB] 2024-09-13T21:58:17.444 INFO:teuthology.orchestra.run.smithi096.stdout:Get:2 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 librados2 amd64 19.1.1-324-gecab7be5-1jammy [3,591 kB] 2024-09-13T21:58:17.445 INFO:teuthology.orchestra.run.smithi031.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5core5a amd64 5.15.3+dfsg-2ubuntu0.2 [2,006 kB] 2024-09-13T21:58:17.455 INFO:teuthology.orchestra.run.smithi096.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdouble-conversion3 amd64 3.1.7-4 [39.0 kB] 2024-09-13T21:58:17.457 INFO:teuthology.orchestra.run.smithi096.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre2-16-0 amd64 10.39-3ubuntu0.1 [203 kB] 2024-09-13T21:58:17.475 INFO:teuthology.orchestra.run.smithi096.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5core5a amd64 5.15.3+dfsg-2ubuntu0.2 [2,006 kB] 2024-09-13T21:58:17.477 INFO:teuthology.orchestra.run.smithi138.stdout:Get:2 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 librados2 amd64 19.1.1-324-gecab7be5-1jammy [3,591 kB] 2024-09-13T21:58:17.484 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-09-13T21:58:17.487 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-09-13T21:58:17.505 INFO:teuthology.orchestra.run.smithi031.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5dbus5 amd64 5.15.3+dfsg-2ubuntu0.2 [222 kB] 2024-09-13T21:58:17.509 INFO:teuthology.orchestra.run.smithi031.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5network5 amd64 5.15.3+dfsg-2ubuntu0.2 [731 kB] 2024-09-13T21:58:17.523 INFO:teuthology.orchestra.run.smithi031.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libthrift-0.16.0 amd64 0.16.0-2 [267 kB] 2024-09-13T21:58:17.527 INFO:teuthology.orchestra.run.smithi031.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-wcwidth all 0.2.5+dfsg1-1 [21.9 kB] 2024-09-13T21:58:17.527 INFO:teuthology.orchestra.run.smithi031.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-prettytable all 2.5.0-2 [31.3 kB] 2024-09-13T21:58:17.528 INFO:teuthology.orchestra.run.smithi031.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy/universe amd64 librdkafka1 amd64 1.8.0-1build1 [633 kB] 2024-09-13T21:58:17.531 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-09-13T21:58:17.534 INFO:teuthology.orchestra.run.smithi096.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5dbus5 amd64 5.15.3+dfsg-2ubuntu0.2 [222 kB] 2024-09-13T21:58:17.537 INFO:teuthology.orchestra.run.smithi031.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy/main amd64 libreadline-dev amd64 8.1.2-1 [166 kB] 2024-09-13T21:58:17.539 INFO:teuthology.orchestra.run.smithi096.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5network5 amd64 5.15.3+dfsg-2ubuntu0.2 [731 kB] 2024-09-13T21:58:17.539 INFO:teuthology.orchestra.run.smithi031.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblua5.3-dev amd64 5.3.6-1build1 [167 kB] 2024-09-13T21:58:17.542 INFO:teuthology.orchestra.run.smithi031.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua5.1 amd64 5.1.5-8.1build4 [94.6 kB] 2024-09-13T21:58:17.543 INFO:teuthology.orchestra.run.smithi031.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-any all 27ubuntu1 [5,034 B] 2024-09-13T21:58:17.551 INFO:teuthology.orchestra.run.smithi096.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libthrift-0.16.0 amd64 0.16.0-2 [267 kB] 2024-09-13T21:58:17.552 INFO:teuthology.orchestra.run.smithi031.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy/main amd64 zip amd64 3.0-12build2 [176 kB] 2024-09-13T21:58:17.554 INFO:teuthology.orchestra.run.smithi031.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 unzip amd64 6.0-26ubuntu3.2 [175 kB] 2024-09-13T21:58:17.555 INFO:teuthology.orchestra.run.smithi096.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-wcwidth all 0.2.5+dfsg1-1 [21.9 kB] 2024-09-13T21:58:17.556 INFO:teuthology.orchestra.run.smithi096.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-prettytable all 2.5.0-2 [31.3 kB] 2024-09-13T21:58:17.556 INFO:teuthology.orchestra.run.smithi096.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy/universe amd64 librdkafka1 amd64 1.8.0-1build1 [633 kB] 2024-09-13T21:58:17.557 INFO:teuthology.orchestra.run.smithi031.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy/universe amd64 luarocks all 3.8.0+dfsg1-1 [140 kB] 2024-09-13T21:58:17.559 INFO:teuthology.orchestra.run.smithi031.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy/main amd64 liboath0 amd64 2.6.7-3build1 [41.1 kB] 2024-09-13T21:58:17.559 INFO:teuthology.orchestra.run.smithi031.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.functools all 3.4.0-2 [9,030 B] 2024-09-13T21:58:17.565 INFO:teuthology.orchestra.run.smithi096.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy/main amd64 libreadline-dev amd64 8.1.2-1 [166 kB] 2024-09-13T21:58:17.568 INFO:teuthology.orchestra.run.smithi096.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblua5.3-dev amd64 5.3.6-1build1 [167 kB] 2024-09-13T21:58:17.569 INFO:teuthology.orchestra.run.smithi031.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-09-13T21:58:17.570 INFO:teuthology.orchestra.run.smithi096.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua5.1 amd64 5.1.5-8.1build4 [94.6 kB] 2024-09-13T21:58:17.571 INFO:teuthology.orchestra.run.smithi031.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.classes all 3.2.1-3 [6,452 B] 2024-09-13T21:58:17.571 INFO:teuthology.orchestra.run.smithi031.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.text all 3.6.0-2 [8,716 B] 2024-09-13T21:58:17.572 INFO:teuthology.orchestra.run.smithi096.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-any all 27ubuntu1 [5,034 B] 2024-09-13T21:58:17.572 INFO:teuthology.orchestra.run.smithi031.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.collections all 3.4.0-2 [11.4 kB] 2024-09-13T21:58:17.573 INFO:teuthology.orchestra.run.smithi031.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempora all 4.1.2-1 [14.8 kB] 2024-09-13T21:58:17.573 INFO:teuthology.orchestra.run.smithi096.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy/main amd64 zip amd64 3.0-12build2 [176 kB] 2024-09-13T21:58:17.577 INFO:teuthology.orchestra.run.smithi096.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 unzip amd64 6.0-26ubuntu3.2 [175 kB] 2024-09-13T21:58:17.586 INFO:teuthology.orchestra.run.smithi031.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-portend all 3.0.0-1 [7,240 B] 2024-09-13T21:58:17.587 INFO:teuthology.orchestra.run.smithi031.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-zc.lockfile all 2.0-1 [8,980 B] 2024-09-13T21:58:17.587 INFO:teuthology.orchestra.run.smithi031.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cherrypy3 all 18.6.1-4 [208 kB] 2024-09-13T21:58:17.588 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-09-13T21:58:17.589 INFO:teuthology.orchestra.run.smithi096.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy/universe amd64 luarocks all 3.8.0+dfsg1-1 [140 kB] 2024-09-13T21:58:17.590 INFO:teuthology.orchestra.run.smithi031.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-natsort all 8.0.2-1 [35.3 kB] 2024-09-13T21:58:17.590 INFO:teuthology.orchestra.run.smithi031.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-logutils all 0.3.3-8 [17.6 kB] 2024-09-13T21:58:17.591 INFO:teuthology.orchestra.run.smithi096.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy/main amd64 liboath0 amd64 2.6.7-3build1 [41.1 kB] 2024-09-13T21:58:17.591 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-09-13T21:58:17.592 INFO:teuthology.orchestra.run.smithi096.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.functools all 3.4.0-2 [9,030 B] 2024-09-13T21:58:17.592 INFO:teuthology.orchestra.run.smithi096.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-09-13T21:58:17.593 INFO:teuthology.orchestra.run.smithi096.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.classes all 3.2.1-3 [6,452 B] 2024-09-13T21:58:17.593 INFO:teuthology.orchestra.run.smithi096.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.text all 3.6.0-2 [8,716 B] 2024-09-13T21:58:17.594 INFO:teuthology.orchestra.run.smithi096.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.collections all 3.4.0-2 [11.4 kB] 2024-09-13T21:58:17.594 INFO:teuthology.orchestra.run.smithi096.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempora all 4.1.2-1 [14.8 kB] 2024-09-13T21:58:17.600 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-09-13T21:58:17.603 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-09-13T21:58:17.603 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-09-13T21:58:17.604 INFO:teuthology.orchestra.run.smithi031.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-markupsafe amd64 2.0.1-2build1 [12.7 kB] 2024-09-13T21:58:17.604 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-09-13T21:58:17.604 INFO:teuthology.orchestra.run.smithi031.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-09-13T21:58:17.605 INFO:teuthology.orchestra.run.smithi031.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplegeneric all 0.8.1-3 [11.3 kB] 2024-09-13T21:58:17.605 INFO:teuthology.orchestra.run.smithi031.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-singledispatch all 3.4.0.3-3 [7,320 B] 2024-09-13T21:58:17.606 INFO:teuthology.orchestra.run.smithi031.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-webob all 1:1.8.6-1.1ubuntu0.1 [86.7 kB] 2024-09-13T21:58:17.607 INFO:teuthology.orchestra.run.smithi096.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-portend all 3.0.0-1 [7,240 B] 2024-09-13T21:58:17.608 INFO:teuthology.orchestra.run.smithi096.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-zc.lockfile all 2.0-1 [8,980 B] 2024-09-13T21:58:17.611 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-09-13T21:58:17.614 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-09-13T21:58:17.616 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-09-13T21:58:17.617 INFO:teuthology.orchestra.run.smithi138.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-any all 27ubuntu1 [5,034 B] 2024-09-13T21:58:17.621 INFO:teuthology.orchestra.run.smithi031.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-waitress all 1.4.4-1.1ubuntu1 [47.3 kB] 2024-09-13T21:58:17.622 INFO:teuthology.orchestra.run.smithi031.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempita all 0.5.2-6ubuntu1 [15.1 kB] 2024-09-13T21:58:17.622 INFO:teuthology.orchestra.run.smithi031.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-paste all 3.5.0+dfsg1-1 [456 kB] 2024-09-13T21:58:17.624 INFO:teuthology.orchestra.run.smithi031.stdout:Get:39 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 librbd1 amd64 19.1.1-324-gecab7be5-1jammy [3,241 kB] 2024-09-13T21:58:17.625 INFO:teuthology.orchestra.run.smithi096.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cherrypy3 all 18.6.1-4 [208 kB] 2024-09-13T21:58:17.626 INFO:teuthology.orchestra.run.smithi138.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy/main amd64 zip amd64 3.0-12build2 [176 kB] 2024-09-13T21:58:17.627 INFO:teuthology.orchestra.run.smithi096.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-natsort all 8.0.2-1 [35.3 kB] 2024-09-13T21:58:17.628 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-09-13T21:58:17.629 INFO:teuthology.orchestra.run.smithi031.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-pastedeploy-tpl all 2.1.1-1 [4,892 B] 2024-09-13T21:58:17.629 INFO:teuthology.orchestra.run.smithi031.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastedeploy all 2.1.1-1 [26.6 kB] 2024-09-13T21:58:17.629 INFO:teuthology.orchestra.run.smithi096.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-logutils all 0.3.3-8 [17.6 kB] 2024-09-13T21:58:17.629 INFO:teuthology.orchestra.run.smithi096.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-markupsafe amd64 2.0.1-2build1 [12.7 kB] 2024-09-13T21:58:17.629 INFO:teuthology.orchestra.run.smithi096.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-09-13T21:58:17.630 INFO:teuthology.orchestra.run.smithi096.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplegeneric all 0.8.1-3 [11.3 kB] 2024-09-13T21:58:17.630 INFO:teuthology.orchestra.run.smithi096.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-singledispatch all 3.4.0.3-3 [7,320 B] 2024-09-13T21:58:17.631 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-09-13T21:58:17.631 INFO:teuthology.orchestra.run.smithi096.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-webob all 1:1.8.6-1.1ubuntu0.1 [86.7 kB] 2024-09-13T21:58:17.632 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-09-13T21:58:17.632 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-09-13T21:58:17.638 INFO:teuthology.orchestra.run.smithi031.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webtest all 2.0.35-1 [28.5 kB] 2024-09-13T21:58:17.638 INFO:teuthology.orchestra.run.smithi031.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pecan all 1.3.3-4ubuntu2 [87.3 kB] 2024-09-13T21:58:17.640 INFO:teuthology.orchestra.run.smithi031.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-09-13T21:58:17.642 INFO:teuthology.orchestra.run.smithi031.stdout:Get:45 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-idna all 3.3-1ubuntu0.1 [52.1 kB] 2024-09-13T21:58:17.643 INFO:teuthology.orchestra.run.smithi096.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-waitress all 1.4.4-1.1ubuntu1 [47.3 kB] 2024-09-13T21:58:17.643 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-09-13T21:58:17.643 INFO:teuthology.orchestra.run.smithi031.stdout:Get:46 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-urllib3 all 1.26.5-1~exp1ubuntu0.1 [98.2 kB] 2024-09-13T21:58:17.644 INFO:teuthology.orchestra.run.smithi096.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempita all 0.5.2-6ubuntu1 [15.1 kB] 2024-09-13T21:58:17.644 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-09-13T21:58:17.644 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-09-13T21:58:17.645 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-09-13T21:58:17.645 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-09-13T21:58:17.655 INFO:teuthology.orchestra.run.smithi031.stdout:Get:47 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-requests all 2.25.1+dfsg-2ubuntu0.1 [48.8 kB] 2024-09-13T21:58:17.656 INFO:teuthology.orchestra.run.smithi031.stdout:Get:48 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-werkzeug all 2.0.2+dfsg1-1ubuntu0.22.04.2 [181 kB] 2024-09-13T21:58:17.658 INFO:teuthology.orchestra.run.smithi031.stdout:Get:49 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-bcrypt amd64 3.2.0-1build1 [32.7 kB] 2024-09-13T21:58:17.659 INFO:teuthology.orchestra.run.smithi031.stdout:Get:50 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-openssl all 21.0.0-1 [45.2 kB] 2024-09-13T21:58:17.659 INFO:teuthology.orchestra.run.smithi096.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-paste all 3.5.0+dfsg1-1 [456 kB] 2024-09-13T21:58:17.660 INFO:teuthology.orchestra.run.smithi031.stdout:Get:51 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-asyncssh all 2.5.0-1 [185 kB] 2024-09-13T21:58:17.660 INFO:teuthology.orchestra.run.smithi138.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-portend all 3.0.0-1 [7,240 B] 2024-09-13T21:58:17.661 INFO:teuthology.orchestra.run.smithi138.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-zc.lockfile all 2.0-1 [8,980 B] 2024-09-13T21:58:17.661 INFO:teuthology.orchestra.run.smithi138.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cherrypy3 all 18.6.1-4 [208 kB] 2024-09-13T21:58:17.664 INFO:teuthology.orchestra.run.smithi138.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-natsort all 8.0.2-1 [35.3 kB] 2024-09-13T21:58:17.664 INFO:teuthology.orchestra.run.smithi138.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-logutils all 0.3.3-8 [17.6 kB] 2024-09-13T21:58:17.665 INFO:teuthology.orchestra.run.smithi096.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-pastedeploy-tpl all 2.1.1-1 [4,892 B] 2024-09-13T21:58:17.665 INFO:teuthology.orchestra.run.smithi096.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastedeploy all 2.1.1-1 [26.6 kB] 2024-09-13T21:58:17.665 INFO:teuthology.orchestra.run.smithi096.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webtest all 2.0.35-1 [28.5 kB] 2024-09-13T21:58:17.666 INFO:teuthology.orchestra.run.smithi096.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pecan all 1.3.3-4ubuntu2 [87.3 kB] 2024-09-13T21:58:17.667 INFO:teuthology.orchestra.run.smithi096.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-09-13T21:58:17.669 INFO:teuthology.orchestra.run.smithi096.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-idna all 3.3-1ubuntu0.1 [52.1 kB] 2024-09-13T21:58:17.670 INFO:teuthology.orchestra.run.smithi096.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-09-13T21:58:17.672 INFO:teuthology.orchestra.run.smithi031.stdout:Get:52 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-babel-localedata all 2.8.0+dfsg.1-7 [4,982 kB] 2024-09-13T21:58:17.677 INFO:teuthology.orchestra.run.smithi096.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-09-13T21:58:17.678 INFO:teuthology.orchestra.run.smithi096.stdout:Get:47 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-werkzeug all 2.0.2+dfsg1-1ubuntu0.22.04.2 [181 kB] 2024-09-13T21:58:17.678 INFO:teuthology.orchestra.run.smithi138.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-markupsafe amd64 2.0.1-2build1 [12.7 kB] 2024-09-13T21:58:17.678 INFO:teuthology.orchestra.run.smithi138.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-09-13T21:58:17.679 INFO:teuthology.orchestra.run.smithi138.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplegeneric all 0.8.1-3 [11.3 kB] 2024-09-13T21:58:17.679 INFO:teuthology.orchestra.run.smithi138.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-singledispatch all 3.4.0.3-3 [7,320 B] 2024-09-13T21:58:17.680 INFO:teuthology.orchestra.run.smithi138.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-webob all 1:1.8.6-1.1ubuntu0.1 [86.7 kB] 2024-09-13T21:58:17.687 INFO:teuthology.orchestra.run.smithi096.stdout:Get:48 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 librbd1 amd64 19.1.1-324-gecab7be5-1jammy [3,241 kB] 2024-09-13T21:58:17.694 INFO:teuthology.orchestra.run.smithi096.stdout:Get:49 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-bcrypt amd64 3.2.0-1build1 [32.7 kB] 2024-09-13T21:58:17.695 INFO:teuthology.orchestra.run.smithi096.stdout:Get:50 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-openssl all 21.0.0-1 [45.2 kB] 2024-09-13T21:58:17.695 INFO:teuthology.orchestra.run.smithi138.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-waitress all 1.4.4-1.1ubuntu1 [47.3 kB] 2024-09-13T21:58:17.695 INFO:teuthology.orchestra.run.smithi096.stdout:Get:51 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-asyncssh all 2.5.0-1 [185 kB] 2024-09-13T21:58:17.697 INFO:teuthology.orchestra.run.smithi138.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempita all 0.5.2-6ubuntu1 [15.1 kB] 2024-09-13T21:58:17.697 INFO:teuthology.orchestra.run.smithi138.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-paste all 3.5.0+dfsg1-1 [456 kB] 2024-09-13T21:58:17.698 INFO:teuthology.orchestra.run.smithi096.stdout:Get:52 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-babel-localedata all 2.8.0+dfsg.1-7 [4,982 kB] 2024-09-13T21:58:17.707 INFO:teuthology.orchestra.run.smithi138.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-pastedeploy-tpl all 2.1.1-1 [4,892 B] 2024-09-13T21:58:17.708 INFO:teuthology.orchestra.run.smithi138.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastedeploy all 2.1.1-1 [26.6 kB] 2024-09-13T21:58:17.713 INFO:teuthology.orchestra.run.smithi138.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webtest all 2.0.35-1 [28.5 kB] 2024-09-13T21:58:17.714 INFO:teuthology.orchestra.run.smithi138.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pecan all 1.3.3-4ubuntu2 [87.3 kB] 2024-09-13T21:58:17.715 INFO:teuthology.orchestra.run.smithi138.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-09-13T21:58:17.717 INFO:teuthology.orchestra.run.smithi138.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-idna all 3.3-1ubuntu0.1 [52.1 kB] 2024-09-13T21:58:17.718 INFO:teuthology.orchestra.run.smithi138.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-09-13T21:58:17.724 INFO:teuthology.orchestra.run.smithi031.stdout:Get:53 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs2 amd64 19.1.1-324-gecab7be5-1jammy [718 kB] 2024-09-13T21:58:17.728 INFO:teuthology.orchestra.run.smithi031.stdout:Get:54 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-babel all 2.8.0+dfsg.1-7 [85.1 kB] 2024-09-13T21:58:17.729 INFO:teuthology.orchestra.run.smithi031.stdout:Get:55 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-jinja2 all 3.0.3-1ubuntu0.2 [108 kB] 2024-09-13T21:58:17.731 INFO:teuthology.orchestra.run.smithi138.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-09-13T21:58:17.731 INFO:teuthology.orchestra.run.smithi031.stdout:Get:56 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-repoze.lru all 0.7-2 [12.1 kB] 2024-09-13T21:58:17.731 INFO:teuthology.orchestra.run.smithi031.stdout:Get:57 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-routes all 2.5.1-1ubuntu1 [89.0 kB] 2024-09-13T21:58:17.732 INFO:teuthology.orchestra.run.smithi138.stdout:Get:47 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-werkzeug all 2.0.2+dfsg1-1ubuntu0.22.04.2 [181 kB] 2024-09-13T21:58:17.732 INFO:teuthology.orchestra.run.smithi031.stdout:Get:58 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn-lib amd64 0.23.2-5ubuntu6 [2,058 kB] 2024-09-13T21:58:17.736 INFO:teuthology.orchestra.run.smithi138.stdout:Get:48 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-bcrypt amd64 3.2.0-1build1 [32.7 kB] 2024-09-13T21:58:17.737 INFO:teuthology.orchestra.run.smithi138.stdout:Get:49 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-openssl all 21.0.0-1 [45.2 kB] 2024-09-13T21:58:17.738 INFO:teuthology.orchestra.run.smithi031.stdout:Get:59 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 python3-rados amd64 19.1.1-324-gecab7be5-1jammy [356 kB] 2024-09-13T21:58:17.739 INFO:teuthology.orchestra.run.smithi138.stdout:Get:50 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-asyncssh all 2.5.0-1 [185 kB] 2024-09-13T21:58:17.746 INFO:teuthology.orchestra.run.smithi031.stdout:Get:60 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-argparse all 19.1.1-324-gecab7be5-1jammy [32.8 kB] 2024-09-13T21:58:17.747 INFO:teuthology.orchestra.run.smithi031.stdout:Get:61 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 python3-cephfs amd64 19.1.1-324-gecab7be5-1jammy [180 kB] 2024-09-13T21:58:17.748 INFO:teuthology.orchestra.run.smithi138.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-09-13T21:58:17.750 INFO:teuthology.orchestra.run.smithi031.stdout:Get:62 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-joblib all 0.17.0-4ubuntu1 [204 kB] 2024-09-13T21:58:17.751 INFO:teuthology.orchestra.run.smithi096.stdout:Get:53 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-babel all 2.8.0+dfsg.1-7 [85.1 kB] 2024-09-13T21:58:17.752 INFO:teuthology.orchestra.run.smithi096.stdout:Get:54 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-jinja2 all 3.0.3-1ubuntu0.2 [108 kB] 2024-09-13T21:58:17.752 INFO:teuthology.orchestra.run.smithi031.stdout:Get:63 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-threadpoolctl all 3.1.0-1 [21.3 kB] 2024-09-13T21:58:17.752 INFO:teuthology.orchestra.run.smithi031.stdout:Get:64 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn all 0.23.2-5ubuntu6 [1,829 kB] 2024-09-13T21:58:17.753 INFO:teuthology.orchestra.run.smithi096.stdout:Get:55 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-repoze.lru all 0.7-2 [12.1 kB] 2024-09-13T21:58:17.753 INFO:teuthology.orchestra.run.smithi096.stdout:Get:56 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-routes all 2.5.1-1ubuntu1 [89.0 kB] 2024-09-13T21:58:17.754 INFO:teuthology.orchestra.run.smithi096.stdout:Get:57 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn-lib amd64 0.23.2-5ubuntu6 [2,058 kB] 2024-09-13T21:58:17.767 INFO:teuthology.orchestra.run.smithi031.stdout:Get:65 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cachetools all 5.0.0-1 [9,722 B] 2024-09-13T21:58:17.767 INFO:teuthology.orchestra.run.smithi031.stdout:Get:66 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1 all 0.4.8-1 [50.9 kB] 2024-09-13T21:58:17.767 INFO:teuthology.orchestra.run.smithi031.stdout:Get:67 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1-modules all 0.2.1-1 [33.0 kB] 2024-09-13T21:58:17.768 INFO:teuthology.orchestra.run.smithi031.stdout:Get:68 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-rsa all 4.8-1 [28.4 kB] 2024-09-13T21:58:17.769 INFO:teuthology.orchestra.run.smithi031.stdout:Get:69 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-google-auth all 1.5.1-3 [35.7 kB] 2024-09-13T21:58:17.769 INFO:teuthology.orchestra.run.smithi031.stdout:Get:70 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-requests-oauthlib all 1.3.0+ds-0.1 [18.7 kB] 2024-09-13T21:58:17.771 INFO:teuthology.orchestra.run.smithi096.stdout:Get:58 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-joblib all 0.17.0-4ubuntu1 [204 kB] 2024-09-13T21:58:17.773 INFO:teuthology.orchestra.run.smithi096.stdout:Get:59 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-threadpoolctl all 3.1.0-1 [21.3 kB] 2024-09-13T21:58:17.774 INFO:teuthology.orchestra.run.smithi096.stdout:Get:60 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn all 0.23.2-5ubuntu6 [1,829 kB] 2024-09-13T21:58:17.777 INFO:teuthology.orchestra.run.smithi031.stdout:Get:71 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-common all 19.1.1-324-gecab7be5-1jammy [67.8 kB] 2024-09-13T21:58:17.778 INFO:teuthology.orchestra.run.smithi031.stdout:Get:72 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 python3-rbd amd64 19.1.1-324-gecab7be5-1jammy [333 kB] 2024-09-13T21:58:17.782 INFO:teuthology.orchestra.run.smithi031.stdout:Get:73 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-websocket all 1.2.3-1 [34.7 kB] 2024-09-13T21:58:17.782 INFO:teuthology.orchestra.run.smithi031.stdout:Get:74 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-kubernetes all 12.0.1-1ubuntu1 [353 kB] 2024-09-13T21:58:17.785 INFO:teuthology.orchestra.run.smithi031.stdout:Get:75 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 librgw2 amd64 19.1.1-324-gecab7be5-1jammy [6,875 kB] 2024-09-13T21:58:17.785 INFO:teuthology.orchestra.run.smithi031.stdout:Get:76 http://archive.ubuntu.com/ubuntu jammy/main amd64 libonig5 amd64 6.9.7.1-2build1 [172 kB] 2024-09-13T21:58:17.788 INFO:teuthology.orchestra.run.smithi096.stdout:Get:61 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cachetools all 5.0.0-1 [9,722 B] 2024-09-13T21:58:17.788 INFO:teuthology.orchestra.run.smithi096.stdout:Get:62 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1 all 0.4.8-1 [50.9 kB] 2024-09-13T21:58:17.789 INFO:teuthology.orchestra.run.smithi096.stdout:Get:63 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1-modules all 0.2.1-1 [33.0 kB] 2024-09-13T21:58:17.789 INFO:teuthology.orchestra.run.smithi096.stdout:Get:64 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-rsa all 4.8-1 [28.4 kB] 2024-09-13T21:58:17.789 INFO:teuthology.orchestra.run.smithi096.stdout:Get:65 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-google-auth all 1.5.1-3 [35.7 kB] 2024-09-13T21:58:17.790 INFO:teuthology.orchestra.run.smithi096.stdout:Get:66 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-requests-oauthlib all 1.3.0+ds-0.1 [18.7 kB] 2024-09-13T21:58:17.799 INFO:teuthology.orchestra.run.smithi031.stdout:Get:77 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjq1 amd64 1.6-2.1ubuntu3 [133 kB] 2024-09-13T21:58:17.800 INFO:teuthology.orchestra.run.smithi031.stdout:Get:78 http://archive.ubuntu.com/ubuntu jammy/main amd64 jq amd64 1.6-2.1ubuntu3 [52.5 kB] 2024-09-13T21:58:17.800 INFO:teuthology.orchestra.run.smithi031.stdout:Get:79 http://archive.ubuntu.com/ubuntu jammy/main amd64 socat amd64 1.7.4.1-3ubuntu4 [349 kB] 2024-09-13T21:58:17.804 INFO:teuthology.orchestra.run.smithi031.stdout:Get:80 http://archive.ubuntu.com/ubuntu jammy/universe amd64 xmlstarlet amd64 1.6.1-2.1 [265 kB] 2024-09-13T21:58:17.805 INFO:teuthology.orchestra.run.smithi096.stdout:Get:67 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-websocket all 1.2.3-1 [34.7 kB] 2024-09-13T21:58:17.805 INFO:teuthology.orchestra.run.smithi096.stdout:Get:68 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-kubernetes all 12.0.1-1ubuntu1 [353 kB] 2024-09-13T21:58:17.806 INFO:teuthology.orchestra.run.smithi031.stdout:Get:81 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-socket amd64 3.0~rc1+git+ac3201d-6 [78.9 kB] 2024-09-13T21:58:17.807 INFO:teuthology.orchestra.run.smithi031.stdout:Get:82 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-sec amd64 1.0.2-1 [37.6 kB] 2024-09-13T21:58:17.807 INFO:teuthology.orchestra.run.smithi031.stdout:Get:83 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 nvme-cli amd64 1.16-3ubuntu0.3 [474 kB] 2024-09-13T21:58:17.808 INFO:teuthology.orchestra.run.smithi096.stdout:Get:69 http://archive.ubuntu.com/ubuntu jammy/main amd64 libonig5 amd64 6.9.7.1-2build1 [172 kB] 2024-09-13T21:58:17.814 INFO:teuthology.orchestra.run.smithi096.stdout:Get:70 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs2 amd64 19.1.1-324-gecab7be5-1jammy [718 kB] 2024-09-13T21:58:17.816 INFO:teuthology.orchestra.run.smithi031.stdout:Get:84 http://archive.ubuntu.com/ubuntu jammy/main amd64 pkg-config amd64 0.29.2-1ubuntu3 [48.2 kB] 2024-09-13T21:58:17.817 INFO:teuthology.orchestra.run.smithi031.stdout:Get:85 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python-asyncssh-doc all 2.5.0-1 [318 kB] 2024-09-13T21:58:17.817 INFO:teuthology.orchestra.run.smithi138.stdout:Get:52 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-babel all 2.8.0+dfsg.1-7 [85.1 kB] 2024-09-13T21:58:17.818 INFO:teuthology.orchestra.run.smithi138.stdout:Get:53 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-jinja2 all 3.0.3-1ubuntu0.2 [108 kB] 2024-09-13T21:58:17.820 INFO:teuthology.orchestra.run.smithi031.stdout:Get:86 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-iniconfig all 1.1.1-2 [6,024 B] 2024-09-13T21:58:17.820 INFO:teuthology.orchestra.run.smithi138.stdout:Get:54 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-repoze.lru all 0.7-2 [12.1 kB] 2024-09-13T21:58:17.820 INFO:teuthology.orchestra.run.smithi138.stdout:Get:55 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-routes all 2.5.1-1ubuntu1 [89.0 kB] 2024-09-13T21:58:17.821 INFO:teuthology.orchestra.run.smithi138.stdout:Get:56 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn-lib amd64 0.23.2-5ubuntu6 [2,058 kB] 2024-09-13T21:58:17.822 INFO:teuthology.orchestra.run.smithi096.stdout:Get:71 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjq1 amd64 1.6-2.1ubuntu3 [133 kB] 2024-09-13T21:58:17.823 INFO:teuthology.orchestra.run.smithi096.stdout:Get:72 http://archive.ubuntu.com/ubuntu jammy/main amd64 jq amd64 1.6-2.1ubuntu3 [52.5 kB] 2024-09-13T21:58:17.824 INFO:teuthology.orchestra.run.smithi096.stdout:Get:73 http://archive.ubuntu.com/ubuntu jammy/main amd64 socat amd64 1.7.4.1-3ubuntu4 [349 kB] 2024-09-13T21:58:17.827 INFO:teuthology.orchestra.run.smithi096.stdout:Get:74 http://archive.ubuntu.com/ubuntu jammy/universe amd64 xmlstarlet amd64 1.6.1-2.1 [265 kB] 2024-09-13T21:58:17.828 INFO:teuthology.orchestra.run.smithi096.stdout:Get:75 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 python3-rados amd64 19.1.1-324-gecab7be5-1jammy [356 kB] 2024-09-13T21:58:17.829 INFO:teuthology.orchestra.run.smithi096.stdout:Get:76 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-socket amd64 3.0~rc1+git+ac3201d-6 [78.9 kB] 2024-09-13T21:58:17.830 INFO:teuthology.orchestra.run.smithi096.stdout:Get:77 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-sec amd64 1.0.2-1 [37.6 kB] 2024-09-13T21:58:17.830 INFO:teuthology.orchestra.run.smithi096.stdout:Get:78 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 nvme-cli amd64 1.16-3ubuntu0.3 [474 kB] 2024-09-13T21:58:17.833 INFO:teuthology.orchestra.run.smithi031.stdout:Get:87 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastescript all 2.0.2-4 [54.6 kB] 2024-09-13T21:58:17.834 INFO:teuthology.orchestra.run.smithi031.stdout:Get:88 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pluggy all 0.13.0-7.1 [19.0 kB] 2024-09-13T21:58:17.834 INFO:teuthology.orchestra.run.smithi031.stdout:Get:89 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-psutil amd64 5.9.0-1build1 [158 kB] 2024-09-13T21:58:17.835 INFO:teuthology.orchestra.run.smithi096.stdout:Get:79 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-argparse all 19.1.1-324-gecab7be5-1jammy [32.8 kB] 2024-09-13T21:58:17.836 INFO:teuthology.orchestra.run.smithi031.stdout:Get:90 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-py all 1.10.0-1 [71.9 kB] 2024-09-13T21:58:17.837 INFO:teuthology.orchestra.run.smithi031.stdout:Get:91 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pygments all 2.11.2+dfsg-2 [750 kB] 2024-09-13T21:58:17.837 INFO:teuthology.orchestra.run.smithi096.stdout:Get:80 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 python3-cephfs amd64 19.1.1-324-gecab7be5-1jammy [180 kB] 2024-09-13T21:58:17.838 INFO:teuthology.orchestra.run.smithi138.stdout:Get:57 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-joblib all 0.17.0-4ubuntu1 [204 kB] 2024-09-13T21:58:17.839 INFO:teuthology.orchestra.run.smithi096.stdout:Get:81 http://archive.ubuntu.com/ubuntu jammy/main amd64 pkg-config amd64 0.29.2-1ubuntu3 [48.2 kB] 2024-09-13T21:58:17.840 INFO:teuthology.orchestra.run.smithi096.stdout:Get:82 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python-asyncssh-doc all 2.5.0-1 [318 kB] 2024-09-13T21:58:17.840 INFO:teuthology.orchestra.run.smithi138.stdout:Get:58 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-threadpoolctl all 3.1.0-1 [21.3 kB] 2024-09-13T21:58:17.840 INFO:teuthology.orchestra.run.smithi138.stdout:Get:59 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn all 0.23.2-5ubuntu6 [1,829 kB] 2024-09-13T21:58:17.842 INFO:teuthology.orchestra.run.smithi096.stdout:Get:83 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-iniconfig all 1.1.1-2 [6,024 B] 2024-09-13T21:58:17.843 INFO:teuthology.orchestra.run.smithi031.stdout:Get:92 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyinotify all 0.9.6-1.3 [24.8 kB] 2024-09-13T21:58:17.843 INFO:teuthology.orchestra.run.smithi031.stdout:Get:93 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-toml all 0.10.2-1 [16.5 kB] 2024-09-13T21:58:17.850 INFO:teuthology.orchestra.run.smithi031.stdout:Get:94 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pytest all 6.2.5-1ubuntu2 [214 kB] 2024-09-13T21:58:17.852 INFO:teuthology.orchestra.run.smithi031.stdout:Get:95 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplejson amd64 3.17.6-1build1 [54.7 kB] 2024-09-13T21:58:17.853 INFO:teuthology.orchestra.run.smithi031.stdout:Get:96 http://archive.ubuntu.com/ubuntu jammy/universe amd64 qttranslations5-l10n all 5.15.3-1 [1,983 kB] 2024-09-13T21:58:17.855 INFO:teuthology.orchestra.run.smithi138.stdout:Get:60 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cachetools all 5.0.0-1 [9,722 B] 2024-09-13T21:58:17.855 INFO:teuthology.orchestra.run.smithi138.stdout:Get:61 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1 all 0.4.8-1 [50.9 kB] 2024-09-13T21:58:17.855 INFO:teuthology.orchestra.run.smithi138.stdout:Get:62 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1-modules all 0.2.1-1 [33.0 kB] 2024-09-13T21:58:17.856 INFO:teuthology.orchestra.run.smithi138.stdout:Get:63 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-rsa all 4.8-1 [28.4 kB] 2024-09-13T21:58:17.856 INFO:teuthology.orchestra.run.smithi138.stdout:Get:64 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-google-auth all 1.5.1-3 [35.7 kB] 2024-09-13T21:58:17.857 INFO:teuthology.orchestra.run.smithi096.stdout:Get:84 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastescript all 2.0.2-4 [54.6 kB] 2024-09-13T21:58:17.857 INFO:teuthology.orchestra.run.smithi138.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-09-13T21:58:17.857 INFO:teuthology.orchestra.run.smithi096.stdout:Get:85 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pluggy all 0.13.0-7.1 [19.0 kB] 2024-09-13T21:58:17.858 INFO:teuthology.orchestra.run.smithi096.stdout:Get:86 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-psutil amd64 5.9.0-1build1 [158 kB] 2024-09-13T21:58:17.859 INFO:teuthology.orchestra.run.smithi096.stdout:Get:87 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-py all 1.10.0-1 [71.9 kB] 2024-09-13T21:58:17.859 INFO:teuthology.orchestra.run.smithi096.stdout:Get:88 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pygments all 2.11.2+dfsg-2 [750 kB] 2024-09-13T21:58:17.866 INFO:teuthology.orchestra.run.smithi096.stdout:Get:89 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyinotify all 0.9.6-1.3 [24.8 kB] 2024-09-13T21:58:17.866 INFO:teuthology.orchestra.run.smithi096.stdout:Get:90 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-toml all 0.10.2-1 [16.5 kB] 2024-09-13T21:58:17.871 INFO:teuthology.orchestra.run.smithi096.stdout:Get:91 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-common all 19.1.1-324-gecab7be5-1jammy [67.8 kB] 2024-09-13T21:58:17.871 INFO:teuthology.orchestra.run.smithi138.stdout:Get:66 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-websocket all 1.2.3-1 [34.7 kB] 2024-09-13T21:58:17.872 INFO:teuthology.orchestra.run.smithi138.stdout:Get:67 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-kubernetes all 12.0.1-1ubuntu1 [353 kB] 2024-09-13T21:58:17.873 INFO:teuthology.orchestra.run.smithi096.stdout:Get:92 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 python3-rbd amd64 19.1.1-324-gecab7be5-1jammy [333 kB] 2024-09-13T21:58:17.874 INFO:teuthology.orchestra.run.smithi096.stdout:Get:93 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pytest all 6.2.5-1ubuntu2 [214 kB] 2024-09-13T21:58:17.875 INFO:teuthology.orchestra.run.smithi138.stdout:Get:68 http://archive.ubuntu.com/ubuntu jammy/main amd64 libonig5 amd64 6.9.7.1-2build1 [172 kB] 2024-09-13T21:58:17.876 INFO:teuthology.orchestra.run.smithi096.stdout:Get:94 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplejson amd64 3.17.6-1build1 [54.7 kB] 2024-09-13T21:58:17.876 INFO:teuthology.orchestra.run.smithi096.stdout:Get:95 http://archive.ubuntu.com/ubuntu jammy/universe amd64 qttranslations5-l10n all 5.15.3-1 [1,983 kB] 2024-09-13T21:58:17.879 INFO:teuthology.orchestra.run.smithi096.stdout:Get:96 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 librgw2 amd64 19.1.1-324-gecab7be5-1jammy [6,875 kB] 2024-09-13T21:58:17.889 INFO:teuthology.orchestra.run.smithi138.stdout:Get:69 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjq1 amd64 1.6-2.1ubuntu3 [133 kB] 2024-09-13T21:58:17.890 INFO:teuthology.orchestra.run.smithi138.stdout:Get:70 http://archive.ubuntu.com/ubuntu jammy/main amd64 jq amd64 1.6-2.1ubuntu3 [52.5 kB] 2024-09-13T21:58:17.891 INFO:teuthology.orchestra.run.smithi138.stdout:Get:71 http://archive.ubuntu.com/ubuntu jammy/main amd64 socat amd64 1.7.4.1-3ubuntu4 [349 kB] 2024-09-13T21:58:17.894 INFO:teuthology.orchestra.run.smithi138.stdout:Get:72 http://archive.ubuntu.com/ubuntu jammy/universe amd64 xmlstarlet amd64 1.6.1-2.1 [265 kB] 2024-09-13T21:58:17.896 INFO:teuthology.orchestra.run.smithi138.stdout:Get:73 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-socket amd64 3.0~rc1+git+ac3201d-6 [78.9 kB] 2024-09-13T21:58:17.897 INFO:teuthology.orchestra.run.smithi138.stdout:Get:74 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-sec amd64 1.0.2-1 [37.6 kB] 2024-09-13T21:58:17.897 INFO:teuthology.orchestra.run.smithi138.stdout:Get:75 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 nvme-cli amd64 1.16-3ubuntu0.3 [474 kB] 2024-09-13T21:58:17.906 INFO:teuthology.orchestra.run.smithi138.stdout:Get:76 http://archive.ubuntu.com/ubuntu jammy/main amd64 pkg-config amd64 0.29.2-1ubuntu3 [48.2 kB] 2024-09-13T21:58:17.907 INFO:teuthology.orchestra.run.smithi138.stdout:Get:77 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python-asyncssh-doc all 2.5.0-1 [318 kB] 2024-09-13T21:58:17.909 INFO:teuthology.orchestra.run.smithi138.stdout:Get:78 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-iniconfig all 1.1.1-2 [6,024 B] 2024-09-13T21:58:17.924 INFO:teuthology.orchestra.run.smithi138.stdout:Get:79 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastescript all 2.0.2-4 [54.6 kB] 2024-09-13T21:58:17.925 INFO:teuthology.orchestra.run.smithi138.stdout:Get:80 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pluggy all 0.13.0-7.1 [19.0 kB] 2024-09-13T21:58:17.925 INFO:teuthology.orchestra.run.smithi138.stdout:Get:81 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-psutil amd64 5.9.0-1build1 [158 kB] 2024-09-13T21:58:17.926 INFO:teuthology.orchestra.run.smithi138.stdout:Get:82 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-py all 1.10.0-1 [71.9 kB] 2024-09-13T21:58:17.927 INFO:teuthology.orchestra.run.smithi138.stdout:Get:83 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pygments all 2.11.2+dfsg-2 [750 kB] 2024-09-13T21:58:17.931 INFO:teuthology.orchestra.run.smithi138.stdout:Get:84 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 librbd1 amd64 19.1.1-324-gecab7be5-1jammy [3,241 kB] 2024-09-13T21:58:17.933 INFO:teuthology.orchestra.run.smithi138.stdout:Get:85 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyinotify all 0.9.6-1.3 [24.8 kB] 2024-09-13T21:58:17.933 INFO:teuthology.orchestra.run.smithi138.stdout:Get:86 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-toml all 0.10.2-1 [16.5 kB] 2024-09-13T21:58:17.941 INFO:teuthology.orchestra.run.smithi138.stdout:Get:87 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pytest all 6.2.5-1ubuntu2 [214 kB] 2024-09-13T21:58:17.943 INFO:teuthology.orchestra.run.smithi138.stdout:Get:88 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplejson amd64 3.17.6-1build1 [54.7 kB] 2024-09-13T21:58:17.943 INFO:teuthology.orchestra.run.smithi138.stdout:Get:89 http://archive.ubuntu.com/ubuntu jammy/universe amd64 qttranslations5-l10n all 5.15.3-1 [1,983 kB] 2024-09-13T21:58:18.045 INFO:teuthology.orchestra.run.smithi031.stdout:Get:97 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 python3-rgw amd64 19.1.1-324-gecab7be5-1jammy [112 kB] 2024-09-13T21:58:18.047 INFO:teuthology.orchestra.run.smithi031.stdout:Get:98 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 libradosstriper1 amd64 19.1.1-324-gecab7be5-1jammy [472 kB] 2024-09-13T21:58:18.057 INFO:teuthology.orchestra.run.smithi031.stdout:Get:99 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph-common amd64 19.1.1-324-gecab7be5-1jammy [25.9 MB] 2024-09-13T21:58:18.156 INFO:teuthology.orchestra.run.smithi096.stdout:Get:97 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 python3-rgw amd64 19.1.1-324-gecab7be5-1jammy [112 kB] 2024-09-13T21:58:18.158 INFO:teuthology.orchestra.run.smithi096.stdout:Get:98 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 libradosstriper1 amd64 19.1.1-324-gecab7be5-1jammy [472 kB] 2024-09-13T21:58:18.176 INFO:teuthology.orchestra.run.smithi096.stdout:Get:99 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph-common amd64 19.1.1-324-gecab7be5-1jammy [25.9 MB] 2024-09-13T21:58:18.246 INFO:teuthology.orchestra.run.smithi138.stdout:Get:90 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs2 amd64 19.1.1-324-gecab7be5-1jammy [718 kB] 2024-09-13T21:58:18.303 INFO:teuthology.orchestra.run.smithi138.stdout:Get:91 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 python3-rados amd64 19.1.1-324-gecab7be5-1jammy [356 kB] 2024-09-13T21:58:18.317 INFO:teuthology.orchestra.run.smithi138.stdout:Get:92 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-argparse all 19.1.1-324-gecab7be5-1jammy [32.8 kB] 2024-09-13T21:58:18.318 INFO:teuthology.orchestra.run.smithi138.stdout:Get:93 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 python3-cephfs amd64 19.1.1-324-gecab7be5-1jammy [180 kB] 2024-09-13T21:58:18.322 INFO:teuthology.orchestra.run.smithi138.stdout:Get:94 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-common all 19.1.1-324-gecab7be5-1jammy [67.8 kB] 2024-09-13T21:58:18.324 INFO:teuthology.orchestra.run.smithi138.stdout:Get:95 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 python3-rbd amd64 19.1.1-324-gecab7be5-1jammy [333 kB] 2024-09-13T21:58:18.340 INFO:teuthology.orchestra.run.smithi138.stdout:Get:96 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 librgw2 amd64 19.1.1-324-gecab7be5-1jammy [6,875 kB] 2024-09-13T21:58:18.638 INFO:teuthology.orchestra.run.smithi138.stdout:Get:97 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 python3-rgw amd64 19.1.1-324-gecab7be5-1jammy [112 kB] 2024-09-13T21:58:18.640 INFO:teuthology.orchestra.run.smithi138.stdout:Get:98 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 libradosstriper1 amd64 19.1.1-324-gecab7be5-1jammy [472 kB] 2024-09-13T21:58:18.673 INFO:teuthology.orchestra.run.smithi138.stdout:Get:99 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph-common amd64 19.1.1-324-gecab7be5-1jammy [25.9 MB] 2024-09-13T21:58:19.362 INFO:teuthology.orchestra.run.smithi031.stdout:Get:100 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph-base amd64 19.1.1-324-gecab7be5-1jammy [5,145 kB] 2024-09-13T21:58:19.590 INFO:teuthology.orchestra.run.smithi031.stdout:Get:101 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-modules-core all 19.1.1-324-gecab7be5-1jammy [245 kB] 2024-09-13T21:58:19.595 INFO:teuthology.orchestra.run.smithi031.stdout:Get:102 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 libsqlite3-mod-ceph amd64 19.1.1-324-gecab7be5-1jammy [124 kB] 2024-09-13T21:58:19.598 INFO:teuthology.orchestra.run.smithi031.stdout:Get:103 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr amd64 19.1.1-324-gecab7be5-1jammy [1,555 kB] 2024-09-13T21:58:19.655 INFO:teuthology.orchestra.run.smithi138.stdout:Get:100 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph-base amd64 19.1.1-324-gecab7be5-1jammy [5,145 kB] 2024-09-13T21:58:19.697 INFO:teuthology.orchestra.run.smithi031.stdout:Get:104 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mon amd64 19.1.1-324-gecab7be5-1jammy [6,143 kB] 2024-09-13T21:58:19.760 INFO:teuthology.orchestra.run.smithi138.stdout:Get:101 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-modules-core all 19.1.1-324-gecab7be5-1jammy [245 kB] 2024-09-13T21:58:19.765 INFO:teuthology.orchestra.run.smithi138.stdout:Get:102 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 libsqlite3-mod-ceph amd64 19.1.1-324-gecab7be5-1jammy [124 kB] 2024-09-13T21:58:19.767 INFO:teuthology.orchestra.run.smithi138.stdout:Get:103 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr amd64 19.1.1-324-gecab7be5-1jammy [1,555 kB] 2024-09-13T21:58:19.903 INFO:teuthology.orchestra.run.smithi138.stdout:Get:104 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mon amd64 19.1.1-324-gecab7be5-1jammy [6,143 kB] 2024-09-13T21:58:19.920 INFO:teuthology.orchestra.run.smithi096.stdout:Get:100 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph-base amd64 19.1.1-324-gecab7be5-1jammy [5,145 kB] 2024-09-13T21:58:20.028 INFO:teuthology.orchestra.run.smithi031.stdout:Get:105 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph-osd amd64 19.1.1-324-gecab7be5-1jammy [22.8 MB] 2024-09-13T21:58:20.066 INFO:teuthology.orchestra.run.smithi138.stdout:Get:105 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph-osd amd64 19.1.1-324-gecab7be5-1jammy [22.8 MB] 2024-09-13T21:58:20.168 INFO:teuthology.orchestra.run.smithi096.stdout:Get:101 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-modules-core all 19.1.1-324-gecab7be5-1jammy [245 kB] 2024-09-13T21:58:20.173 INFO:teuthology.orchestra.run.smithi096.stdout:Get:102 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 libsqlite3-mod-ceph amd64 19.1.1-324-gecab7be5-1jammy [124 kB] 2024-09-13T21:58:20.176 INFO:teuthology.orchestra.run.smithi096.stdout:Get:103 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr amd64 19.1.1-324-gecab7be5-1jammy [1,555 kB] 2024-09-13T21:58:20.249 INFO:teuthology.orchestra.run.smithi096.stdout:Get:104 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mon amd64 19.1.1-324-gecab7be5-1jammy [6,143 kB] 2024-09-13T21:58:20.600 INFO:teuthology.orchestra.run.smithi096.stdout:Get:105 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph-osd amd64 19.1.1-324-gecab7be5-1jammy [22.8 MB] 2024-09-13T21:58:20.929 INFO:teuthology.orchestra.run.smithi138.stdout:Get:106 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph amd64 19.1.1-324-gecab7be5-1jammy [14.1 kB] 2024-09-13T21:58:20.930 INFO:teuthology.orchestra.run.smithi138.stdout:Get:107 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph-fuse amd64 19.1.1-324-gecab7be5-1jammy [877 kB] 2024-09-13T21:58:20.947 INFO:teuthology.orchestra.run.smithi138.stdout:Get:108 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mds amd64 19.1.1-324-gecab7be5-1jammy [2,462 kB] 2024-09-13T21:58:20.989 INFO:teuthology.orchestra.run.smithi138.stdout:Get:109 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 cephadm amd64 19.1.1-324-gecab7be5-1jammy [794 kB] 2024-09-13T21:58:20.998 INFO:teuthology.orchestra.run.smithi138.stdout:Get:110 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-cephadm all 19.1.1-324-gecab7be5-1jammy [152 kB] 2024-09-13T21:58:21.000 INFO:teuthology.orchestra.run.smithi138.stdout:Get:111 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-dashboard all 19.1.1-324-gecab7be5-1jammy [2,275 kB] 2024-09-13T21:58:21.083 INFO:teuthology.orchestra.run.smithi138.stdout:Get:112 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-diskprediction-local all 19.1.1-324-gecab7be5-1jammy [8,625 kB] 2024-09-13T21:58:21.366 INFO:teuthology.orchestra.run.smithi138.stdout:Get:113 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-k8sevents all 19.1.1-324-gecab7be5-1jammy [14.2 kB] 2024-09-13T21:58:21.366 INFO:teuthology.orchestra.run.smithi138.stdout:Get:114 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph-test amd64 19.1.1-324-gecab7be5-1jammy [51.4 MB] 2024-09-13T21:58:21.757 INFO:teuthology.orchestra.run.smithi031.stdout:Get:106 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph amd64 19.1.1-324-gecab7be5-1jammy [14.1 kB] 2024-09-13T21:58:21.758 INFO:teuthology.orchestra.run.smithi031.stdout:Get:107 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph-fuse amd64 19.1.1-324-gecab7be5-1jammy [877 kB] 2024-09-13T21:58:21.775 INFO:teuthology.orchestra.run.smithi031.stdout:Get:108 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mds amd64 19.1.1-324-gecab7be5-1jammy [2,462 kB] 2024-09-13T21:58:21.942 INFO:teuthology.orchestra.run.smithi031.stdout:Get:109 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 cephadm amd64 19.1.1-324-gecab7be5-1jammy [794 kB] 2024-09-13T21:58:21.989 INFO:teuthology.orchestra.run.smithi031.stdout:Get:110 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-cephadm all 19.1.1-324-gecab7be5-1jammy [152 kB] 2024-09-13T21:58:21.992 INFO:teuthology.orchestra.run.smithi031.stdout:Get:111 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-dashboard all 19.1.1-324-gecab7be5-1jammy [2,275 kB] 2024-09-13T21:58:22.101 INFO:teuthology.orchestra.run.smithi096.stdout:Get:106 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph amd64 19.1.1-324-gecab7be5-1jammy [14.1 kB] 2024-09-13T21:58:22.102 INFO:teuthology.orchestra.run.smithi096.stdout:Get:107 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph-fuse amd64 19.1.1-324-gecab7be5-1jammy [877 kB] 2024-09-13T21:58:22.119 INFO:teuthology.orchestra.run.smithi096.stdout:Get:108 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mds amd64 19.1.1-324-gecab7be5-1jammy [2,462 kB] 2024-09-13T21:58:22.138 INFO:teuthology.orchestra.run.smithi031.stdout:Get:112 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-diskprediction-local all 19.1.1-324-gecab7be5-1jammy [8,625 kB] 2024-09-13T21:58:22.161 INFO:teuthology.orchestra.run.smithi096.stdout:Get:109 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 cephadm amd64 19.1.1-324-gecab7be5-1jammy [794 kB] 2024-09-13T21:58:22.171 INFO:teuthology.orchestra.run.smithi096.stdout:Get:110 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-cephadm all 19.1.1-324-gecab7be5-1jammy [152 kB] 2024-09-13T21:58:22.173 INFO:teuthology.orchestra.run.smithi096.stdout:Get:111 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-dashboard all 19.1.1-324-gecab7be5-1jammy [2,275 kB] 2024-09-13T21:58:22.273 INFO:teuthology.orchestra.run.smithi096.stdout:Get:112 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-diskprediction-local all 19.1.1-324-gecab7be5-1jammy [8,625 kB] 2024-09-13T21:58:22.732 INFO:teuthology.orchestra.run.smithi096.stdout:Get:113 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-k8sevents all 19.1.1-324-gecab7be5-1jammy [14.2 kB] 2024-09-13T21:58:22.732 INFO:teuthology.orchestra.run.smithi096.stdout:Get:114 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph-test amd64 19.1.1-324-gecab7be5-1jammy [51.4 MB] 2024-09-13T21:58:22.782 INFO:teuthology.orchestra.run.smithi031.stdout:Get:113 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-k8sevents all 19.1.1-324-gecab7be5-1jammy [14.2 kB] 2024-09-13T21:58:22.782 INFO:teuthology.orchestra.run.smithi031.stdout:Get:114 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph-test amd64 19.1.1-324-gecab7be5-1jammy [51.4 MB] 2024-09-13T21:58:23.387 INFO:teuthology.orchestra.run.smithi138.stdout:Get:115 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph-volume all 19.1.1-324-gecab7be5-1jammy [130 kB] 2024-09-13T21:58:23.390 INFO:teuthology.orchestra.run.smithi138.stdout:Get:116 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs-dev amd64 19.1.1-324-gecab7be5-1jammy [39.0 kB] 2024-09-13T21:58:23.390 INFO:teuthology.orchestra.run.smithi138.stdout:Get:117 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 radosgw amd64 19.1.1-324-gecab7be5-1jammy [13.6 MB] 2024-09-13T21:58:23.827 INFO:teuthology.orchestra.run.smithi138.stdout:Get:118 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 rbd-fuse amd64 19.1.1-324-gecab7be5-1jammy [91.7 kB] 2024-09-13T21:58:24.430 INFO:teuthology.orchestra.run.smithi138.stdout:Fetched 181 MB in 7s (27.8 MB/s) 2024-09-13T21:58:24.596 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package liblttng-ust1:amd64. 2024-09-13T21:58:24.697 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 ... 165990 files and directories currently installed.) 2024-09-13T21:58:24.703 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../000-liblttng-ust1_2.13.1-1ubuntu1_amd64.deb ... 2024-09-13T21:58:24.794 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-09-13T21:58:25.131 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package libdouble-conversion3:amd64. 2024-09-13T21:58:25.158 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../001-libdouble-conversion3_3.1.7-4_amd64.deb ... 2024-09-13T21:58:25.197 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking libdouble-conversion3:amd64 (3.1.7-4) ... 2024-09-13T21:58:25.526 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package libpcre2-16-0:amd64. 2024-09-13T21:58:25.552 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../002-libpcre2-16-0_10.39-3ubuntu0.1_amd64.deb ... 2024-09-13T21:58:25.592 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-09-13T21:58:25.693 INFO:teuthology.orchestra.run.smithi096.stdout:Get:115 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph-volume all 19.1.1-324-gecab7be5-1jammy [130 kB] 2024-09-13T21:58:25.696 INFO:teuthology.orchestra.run.smithi096.stdout:Get:116 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs-dev amd64 19.1.1-324-gecab7be5-1jammy [39.0 kB] 2024-09-13T21:58:25.697 INFO:teuthology.orchestra.run.smithi096.stdout:Get:117 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 radosgw amd64 19.1.1-324-gecab7be5-1jammy [13.6 MB] 2024-09-13T21:58:26.012 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package libqt5core5a:amd64. 2024-09-13T21:58:26.038 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../003-libqt5core5a_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-13T21:58:26.095 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-13T21:58:26.361 INFO:teuthology.orchestra.run.smithi096.stdout:Get:118 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 rbd-fuse amd64 19.1.1-324-gecab7be5-1jammy [91.7 kB] 2024-09-13T21:58:26.515 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package libqt5dbus5:amd64. 2024-09-13T21:58:26.542 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../004-libqt5dbus5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-13T21:58:26.582 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-13T21:58:26.860 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package libqt5network5:amd64. 2024-09-13T21:58:26.886 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../005-libqt5network5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-13T21:58:26.918 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-13T21:58:26.941 INFO:teuthology.orchestra.run.smithi096.stdout:Fetched 181 MB in 9s (20.0 MB/s) 2024-09-13T21:58:27.101 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package liblttng-ust1:amd64. 2024-09-13T21:58:27.201 INFO:teuthology.orchestra.run.smithi096.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 165990 files and directories currently installed.) 2024-09-13T21:58:27.207 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../000-liblttng-ust1_2.13.1-1ubuntu1_amd64.deb ... 2024-09-13T21:58:27.218 INFO:teuthology.orchestra.run.smithi031.stdout:Get:115 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 ceph-volume all 19.1.1-324-gecab7be5-1jammy [130 kB] 2024-09-13T21:58:27.220 INFO:teuthology.orchestra.run.smithi031.stdout:Get:116 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs-dev amd64 19.1.1-324-gecab7be5-1jammy [39.0 kB] 2024-09-13T21:58:27.222 INFO:teuthology.orchestra.run.smithi031.stdout:Get:117 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 radosgw amd64 19.1.1-324-gecab7be5-1jammy [13.6 MB] 2024-09-13T21:58:27.271 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package libthrift-0.16.0:amd64. 2024-09-13T21:58:27.291 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-09-13T21:58:27.297 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../006-libthrift-0.16.0_0.16.0-2_amd64.deb ... 2024-09-13T21:58:27.338 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-09-13T21:58:27.619 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package libdouble-conversion3:amd64. 2024-09-13T21:58:27.646 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../001-libdouble-conversion3_3.1.7-4_amd64.deb ... 2024-09-13T21:58:27.657 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package librados2. 2024-09-13T21:58:27.684 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../007-librados2_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:27.686 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking libdouble-conversion3:amd64 (3.1.7-4) ... 2024-09-13T21:58:27.724 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking librados2 (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:28.030 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package libpcre2-16-0:amd64. 2024-09-13T21:58:28.057 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../002-libpcre2-16-0_10.39-3ubuntu0.1_amd64.deb ... 2024-09-13T21:58:28.097 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-09-13T21:58:28.152 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package librbd1. 2024-09-13T21:58:28.178 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../008-librbd1_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:28.210 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking librbd1 (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:28.259 INFO:teuthology.orchestra.run.smithi031.stdout:Get:118 https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default jammy/main amd64 rbd-fuse amd64 19.1.1-324-gecab7be5-1jammy [91.7 kB] 2024-09-13T21:58:28.621 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package libcephfs2. 2024-09-13T21:58:28.647 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../009-libcephfs2_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:28.684 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package libqt5core5a:amd64. 2024-09-13T21:58:28.687 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking libcephfs2 (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:28.711 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../003-libqt5core5a_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-13T21:58:28.750 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-13T21:58:28.926 INFO:teuthology.orchestra.run.smithi031.stdout:Fetched 181 MB in 11s (16.3 MB/s) 2024-09-13T21:58:28.965 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-rados. 2024-09-13T21:58:28.980 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../010-python3-rados_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:29.023 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-rados (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:29.145 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package libqt5dbus5:amd64. 2024-09-13T21:58:29.172 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../004-libqt5dbus5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-13T21:58:29.211 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-13T21:58:29.212 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package liblttng-ust1:amd64. 2024-09-13T21:58:29.318 INFO:teuthology.orchestra.run.smithi031.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 165990 files and directories currently installed.) 2024-09-13T21:58:29.323 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../000-liblttng-ust1_2.13.1-1ubuntu1_amd64.deb ... 2024-09-13T21:58:29.351 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-ceph-argparse. 2024-09-13T21:58:29.377 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../011-python3-ceph-argparse_19.1.1-324-gecab7be5-1jammy_all.deb ... 2024-09-13T21:58:29.394 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-09-13T21:58:29.417 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-ceph-argparse (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:29.573 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package libqt5network5:amd64. 2024-09-13T21:58:29.600 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../005-libqt5network5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-13T21:58:29.637 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-cephfs. 2024-09-13T21:58:29.663 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../012-python3-cephfs_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:29.664 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-13T21:58:29.689 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package libdouble-conversion3:amd64. 2024-09-13T21:58:29.695 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-cephfs (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:29.716 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../001-libdouble-conversion3_3.1.7-4_amd64.deb ... 2024-09-13T21:58:29.755 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking libdouble-conversion3:amd64 (3.1.7-4) ... 2024-09-13T21:58:29.942 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package libthrift-0.16.0:amd64. 2024-09-13T21:58:29.958 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../006-libthrift-0.16.0_0.16.0-2_amd64.deb ... 2024-09-13T21:58:29.990 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-ceph-common. 2024-09-13T21:58:29.992 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-09-13T21:58:30.015 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../013-python3-ceph-common_19.1.1-324-gecab7be5-1jammy_all.deb ... 2024-09-13T21:58:30.056 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-ceph-common (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:30.075 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package libpcre2-16-0:amd64. 2024-09-13T21:58:30.102 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../002-libpcre2-16-0_10.39-3ubuntu0.1_amd64.deb ... 2024-09-13T21:58:30.141 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-09-13T21:58:30.303 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package librados2. 2024-09-13T21:58:30.330 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../007-librados2_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:30.342 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-wcwidth. 2024-09-13T21:58:30.357 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../014-python3-wcwidth_0.2.5+dfsg1-1_all.deb ... 2024-09-13T21:58:30.370 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking librados2 (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:30.392 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-wcwidth (0.2.5+dfsg1-1) ... 2024-09-13T21:58:30.587 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package libqt5core5a:amd64. 2024-09-13T21:58:30.614 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../003-libqt5core5a_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-13T21:58:30.661 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-13T21:58:30.695 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-prettytable. 2024-09-13T21:58:30.721 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../015-python3-prettytable_2.5.0-2_all.deb ... 2024-09-13T21:58:30.761 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-prettytable (2.5.0-2) ... 2024-09-13T21:58:30.831 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package librbd1. 2024-09-13T21:58:30.858 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../008-librbd1_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:30.898 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking librbd1 (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:31.014 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-rbd. 2024-09-13T21:58:31.015 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package libqt5dbus5:amd64. 2024-09-13T21:58:31.029 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../016-python3-rbd_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:31.042 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../004-libqt5dbus5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-13T21:58:31.064 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-rbd (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:31.081 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-13T21:58:31.284 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package libcephfs2. 2024-09-13T21:58:31.310 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../009-libcephfs2_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:31.342 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking libcephfs2 (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:31.392 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package librdkafka1:amd64. 2024-09-13T21:58:31.417 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package libqt5network5:amd64. 2024-09-13T21:58:31.418 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../017-librdkafka1_1.8.0-1build1_amd64.deb ... 2024-09-13T21:58:31.444 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../005-libqt5network5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-13T21:58:31.458 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking librdkafka1:amd64 (1.8.0-1build1) ... 2024-09-13T21:58:31.483 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-13T21:58:31.569 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-rados. 2024-09-13T21:58:31.585 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../010-python3-rados_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:31.619 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-rados (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:31.736 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package libreadline-dev:amd64. 2024-09-13T21:58:31.762 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../018-libreadline-dev_8.1.2-1_amd64.deb ... 2024-09-13T21:58:31.802 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking libreadline-dev:amd64 (8.1.2-1) ... 2024-09-13T21:58:31.820 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package libthrift-0.16.0:amd64. 2024-09-13T21:58:31.847 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../006-libthrift-0.16.0_0.16.0-2_amd64.deb ... 2024-09-13T21:58:31.886 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-09-13T21:58:31.939 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-ceph-argparse. 2024-09-13T21:58:31.965 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../011-python3-ceph-argparse_19.1.1-324-gecab7be5-1jammy_all.deb ... 2024-09-13T21:58:32.005 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-ceph-argparse (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:32.106 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package liblua5.3-dev:amd64. 2024-09-13T21:58:32.121 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../019-liblua5.3-dev_5.3.6-1build1_amd64.deb ... 2024-09-13T21:58:32.155 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-09-13T21:58:32.189 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package librados2. 2024-09-13T21:58:32.216 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../007-librados2_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:32.256 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking librados2 (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:32.257 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-cephfs. 2024-09-13T21:58:32.273 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../012-python3-cephfs_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:32.316 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-cephfs (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:32.467 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package lua5.1. 2024-09-13T21:58:32.494 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../020-lua5.1_5.1.5-8.1build4_amd64.deb ... 2024-09-13T21:58:32.534 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking lua5.1 (5.1.5-8.1build4) ... 2024-09-13T21:58:32.602 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-ceph-common. 2024-09-13T21:58:32.629 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../013-python3-ceph-common_19.1.1-324-gecab7be5-1jammy_all.deb ... 2024-09-13T21:58:32.666 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package librbd1. 2024-09-13T21:58:32.668 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-ceph-common (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:32.693 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../008-librbd1_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:32.733 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking librbd1 (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:32.845 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package lua-any. 2024-09-13T21:58:32.872 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../021-lua-any_27ubuntu1_all.deb ... 2024-09-13T21:58:32.911 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking lua-any (27ubuntu1) ... 2024-09-13T21:58:33.022 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-wcwidth. 2024-09-13T21:58:33.048 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../014-python3-wcwidth_0.2.5+dfsg1-1_all.deb ... 2024-09-13T21:58:33.088 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-wcwidth (0.2.5+dfsg1-1) ... 2024-09-13T21:58:33.158 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package zip. 2024-09-13T21:58:33.178 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package libcephfs2. 2024-09-13T21:58:33.184 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../022-zip_3.0-12build2_amd64.deb ... 2024-09-13T21:58:33.204 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../009-libcephfs2_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:33.225 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking zip (3.0-12build2) ... 2024-09-13T21:58:33.244 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking libcephfs2 (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:33.407 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-prettytable. 2024-09-13T21:58:33.434 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../015-python3-prettytable_2.5.0-2_all.deb ... 2024-09-13T21:58:33.499 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-prettytable (2.5.0-2) ... 2024-09-13T21:58:33.530 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-rados. 2024-09-13T21:58:33.537 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package unzip. 2024-09-13T21:58:33.556 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../010-python3-rados_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:33.563 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../023-unzip_6.0-26ubuntu3.2_amd64.deb ... 2024-09-13T21:58:33.596 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-rados (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:33.603 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking unzip (6.0-26ubuntu3.2) ... 2024-09-13T21:58:33.885 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-rbd. 2024-09-13T21:58:33.907 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-ceph-argparse. 2024-09-13T21:58:33.912 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../016-python3-rbd_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:33.923 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../011-python3-ceph-argparse_19.1.1-324-gecab7be5-1jammy_all.deb ... 2024-09-13T21:58:33.943 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-rbd (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:33.957 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-ceph-argparse (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:34.016 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package luarocks. 2024-09-13T21:58:34.032 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../024-luarocks_3.8.0+dfsg1-1_all.deb ... 2024-09-13T21:58:34.066 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking luarocks (3.8.0+dfsg1-1) ... 2024-09-13T21:58:34.176 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-cephfs. 2024-09-13T21:58:34.203 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../012-python3-cephfs_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:34.251 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-cephfs (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:34.254 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package librdkafka1:amd64. 2024-09-13T21:58:34.281 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../017-librdkafka1_1.8.0-1build1_amd64.deb ... 2024-09-13T21:58:34.321 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking librdkafka1:amd64 (1.8.0-1build1) ... 2024-09-13T21:58:34.426 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package librgw2. 2024-09-13T21:58:34.453 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../025-librgw2_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:34.492 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking librgw2 (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:34.554 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-ceph-common. 2024-09-13T21:58:34.581 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../013-python3-ceph-common_19.1.1-324-gecab7be5-1jammy_all.deb ... 2024-09-13T21:58:34.600 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package libreadline-dev:amd64. 2024-09-13T21:58:34.614 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../018-libreadline-dev_8.1.2-1_amd64.deb ... 2024-09-13T21:58:34.620 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-ceph-common (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:34.657 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking libreadline-dev:amd64 (8.1.2-1) ... 2024-09-13T21:58:34.948 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-wcwidth. 2024-09-13T21:58:34.951 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package liblua5.3-dev:amd64. 2024-09-13T21:58:34.975 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../014-python3-wcwidth_0.2.5+dfsg1-1_all.deb ... 2024-09-13T21:58:34.978 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../019-liblua5.3-dev_5.3.6-1build1_amd64.deb ... 2024-09-13T21:58:35.012 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-rgw. 2024-09-13T21:58:35.015 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-wcwidth (0.2.5+dfsg1-1) ... 2024-09-13T21:58:35.018 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-09-13T21:58:35.038 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../026-python3-rgw_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:35.078 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-rgw (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:35.305 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package lua5.1. 2024-09-13T21:58:35.331 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../020-lua5.1_5.1.5-8.1build4_amd64.deb ... 2024-09-13T21:58:35.363 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking lua5.1 (5.1.5-8.1build4) ... 2024-09-13T21:58:35.432 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package liboath0:amd64. 2024-09-13T21:58:35.459 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../027-liboath0_2.6.7-3build1_amd64.deb ... 2024-09-13T21:58:35.499 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking liboath0:amd64 (2.6.7-3build1) ... 2024-09-13T21:58:35.682 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package lua-any. 2024-09-13T21:58:35.698 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../021-lua-any_27ubuntu1_all.deb ... 2024-09-13T21:58:35.741 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking lua-any (27ubuntu1) ... 2024-09-13T21:58:35.785 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package libradosstriper1. 2024-09-13T21:58:35.801 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-prettytable. 2024-09-13T21:58:35.812 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../028-libradosstriper1_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:35.828 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../015-python3-prettytable_2.5.0-2_all.deb ... 2024-09-13T21:58:35.852 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking libradosstriper1 (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:35.876 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-prettytable (2.5.0-2) ... 2024-09-13T21:58:35.993 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package zip. 2024-09-13T21:58:36.009 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../022-zip_3.0-12build2_amd64.deb ... 2024-09-13T21:58:36.051 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking zip (3.0-12build2) ... 2024-09-13T21:58:36.129 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-rbd. 2024-09-13T21:58:36.144 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../016-python3-rbd_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:36.178 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-rbd (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:36.281 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package ceph-common. 2024-09-13T21:58:36.308 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../029-ceph-common_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:36.347 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking ceph-common (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:36.371 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package unzip. 2024-09-13T21:58:36.398 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../023-unzip_6.0-26ubuntu3.2_amd64.deb ... 2024-09-13T21:58:36.438 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking unzip (6.0-26ubuntu3.2) ... 2024-09-13T21:58:36.539 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package librdkafka1:amd64. 2024-09-13T21:58:36.566 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../017-librdkafka1_1.8.0-1build1_amd64.deb ... 2024-09-13T21:58:36.606 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking librdkafka1:amd64 (1.8.0-1build1) ... 2024-09-13T21:58:36.808 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package luarocks. 2024-09-13T21:58:36.835 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../024-luarocks_3.8.0+dfsg1-1_all.deb ... 2024-09-13T21:58:36.875 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking luarocks (3.8.0+dfsg1-1) ... 2024-09-13T21:58:36.891 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package libreadline-dev:amd64. 2024-09-13T21:58:36.907 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../018-libreadline-dev_8.1.2-1_amd64.deb ... 2024-09-13T21:58:36.950 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking libreadline-dev:amd64 (8.1.2-1) ... 2024-09-13T21:58:37.253 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package liblua5.3-dev:amd64. 2024-09-13T21:58:37.268 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../019-liblua5.3-dev_5.3.6-1build1_amd64.deb ... 2024-09-13T21:58:37.276 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package librgw2. 2024-09-13T21:58:37.303 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../025-librgw2_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:37.311 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-09-13T21:58:37.342 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking librgw2 (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:37.605 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package lua5.1. 2024-09-13T21:58:37.621 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../020-lua5.1_5.1.5-8.1build4_amd64.deb ... 2024-09-13T21:58:37.655 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking lua5.1 (5.1.5-8.1build4) ... 2024-09-13T21:58:37.695 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package ceph-base. 2024-09-13T21:58:37.722 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../030-ceph-base_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:37.763 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking ceph-base (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:37.870 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-rgw. 2024-09-13T21:58:37.885 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../026-python3-rgw_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:37.919 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-rgw (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:37.950 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package lua-any. 2024-09-13T21:58:37.976 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../021-lua-any_27ubuntu1_all.deb ... 2024-09-13T21:58:38.016 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking lua-any (27ubuntu1) ... 2024-09-13T21:58:38.239 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package liboath0:amd64. 2024-09-13T21:58:38.266 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../027-liboath0_2.6.7-3build1_amd64.deb ... 2024-09-13T21:58:38.269 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package zip. 2024-09-13T21:58:38.296 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../022-zip_3.0-12build2_amd64.deb ... 2024-09-13T21:58:38.306 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking liboath0:amd64 (2.6.7-3build1) ... 2024-09-13T21:58:38.335 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking zip (3.0-12build2) ... 2024-09-13T21:58:38.342 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-jaraco.functools. 2024-09-13T21:58:38.369 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../031-python3-jaraco.functools_3.4.0-2_all.deb ... 2024-09-13T21:58:38.409 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-jaraco.functools (3.4.0-2) ... 2024-09-13T21:58:38.617 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package libradosstriper1. 2024-09-13T21:58:38.643 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../028-libradosstriper1_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:38.646 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package unzip. 2024-09-13T21:58:38.673 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../023-unzip_6.0-26ubuntu3.2_amd64.deb ... 2024-09-13T21:58:38.683 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking libradosstriper1 (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:38.713 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking unzip (6.0-26ubuntu3.2) ... 2024-09-13T21:58:38.729 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-cheroot. 2024-09-13T21:58:38.755 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../032-python3-cheroot_8.5.2+ds1-1ubuntu3.1_all.deb ... 2024-09-13T21:58:38.795 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-09-13T21:58:39.050 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package luarocks. 2024-09-13T21:58:39.077 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../024-luarocks_3.8.0+dfsg1-1_all.deb ... 2024-09-13T21:58:39.090 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-jaraco.classes. 2024-09-13T21:58:39.108 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking luarocks (3.8.0+dfsg1-1) ... 2024-09-13T21:58:39.117 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../033-python3-jaraco.classes_3.2.1-3_all.deb ... 2024-09-13T21:58:39.157 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-jaraco.classes (3.2.1-3) ... 2024-09-13T21:58:39.229 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package ceph-common. 2024-09-13T21:58:39.256 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../029-ceph-common_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:39.295 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking ceph-common (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:39.436 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-jaraco.text. 2024-09-13T21:58:39.457 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package librgw2. 2024-09-13T21:58:39.462 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../034-python3-jaraco.text_3.6.0-2_all.deb ... 2024-09-13T21:58:39.484 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../025-librgw2_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:39.502 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-jaraco.text (3.6.0-2) ... 2024-09-13T21:58:39.515 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking librgw2 (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:39.805 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-jaraco.collections. 2024-09-13T21:58:39.832 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../035-python3-jaraco.collections_3.4.0-2_all.deb ... 2024-09-13T21:58:39.872 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-jaraco.collections (3.4.0-2) ... 2024-09-13T21:58:40.076 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-rgw. 2024-09-13T21:58:40.092 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../026-python3-rgw_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:40.134 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-tempora. 2024-09-13T21:58:40.134 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-rgw (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:40.149 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../036-python3-tempora_4.1.2-1_all.deb ... 2024-09-13T21:58:40.184 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-tempora (4.1.2-1) ... 2024-09-13T21:58:40.471 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package liboath0:amd64. 2024-09-13T21:58:40.471 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-portend. 2024-09-13T21:58:40.497 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../027-liboath0_2.6.7-3build1_amd64.deb ... 2024-09-13T21:58:40.498 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../037-python3-portend_3.0.0-1_all.deb ... 2024-09-13T21:58:40.537 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-portend (3.0.0-1) ... 2024-09-13T21:58:40.554 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking liboath0:amd64 (2.6.7-3build1) ... 2024-09-13T21:58:40.650 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package ceph-base. 2024-09-13T21:58:40.677 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../030-ceph-base_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:40.726 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking ceph-base (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:40.831 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package libradosstriper1. 2024-09-13T21:58:40.840 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-zc.lockfile. 2024-09-13T21:58:40.858 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../028-libradosstriper1_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:40.867 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../038-python3-zc.lockfile_2.0-1_all.deb ... 2024-09-13T21:58:40.898 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking libradosstriper1 (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:40.915 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-zc.lockfile (2.0-1) ... 2024-09-13T21:58:41.177 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-cherrypy3. 2024-09-13T21:58:41.204 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../039-python3-cherrypy3_18.6.1-4_all.deb ... 2024-09-13T21:58:41.235 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-cherrypy3 (18.6.1-4) ... 2024-09-13T21:58:41.259 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package ceph-common. 2024-09-13T21:58:41.279 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-jaraco.functools. 2024-09-13T21:58:41.286 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../029-ceph-common_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:41.306 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../031-python3-jaraco.functools_3.4.0-2_all.deb ... 2024-09-13T21:58:41.325 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking ceph-common (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:41.346 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-jaraco.functools (3.4.0-2) ... 2024-09-13T21:58:41.556 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-natsort. 2024-09-13T21:58:41.583 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../040-python3-natsort_8.0.2-1_all.deb ... 2024-09-13T21:58:41.614 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-natsort (8.0.2-1) ... 2024-09-13T21:58:41.657 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-cheroot. 2024-09-13T21:58:41.684 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../032-python3-cheroot_8.5.2+ds1-1ubuntu3.1_all.deb ... 2024-09-13T21:58:41.723 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-09-13T21:58:41.918 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-logutils. 2024-09-13T21:58:41.945 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../041-python3-logutils_0.3.3-8_all.deb ... 2024-09-13T21:58:41.987 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-logutils (0.3.3-8) ... 2024-09-13T21:58:42.051 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-jaraco.classes. 2024-09-13T21:58:42.078 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../033-python3-jaraco.classes_3.2.1-3_all.deb ... 2024-09-13T21:58:42.118 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-jaraco.classes (3.2.1-3) ... 2024-09-13T21:58:42.347 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-markupsafe. 2024-09-13T21:58:42.373 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../042-python3-markupsafe_2.0.1-2build1_amd64.deb ... 2024-09-13T21:58:42.413 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-markupsafe (2.0.1-2build1) ... 2024-09-13T21:58:42.420 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-jaraco.text. 2024-09-13T21:58:42.447 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../034-python3-jaraco.text_3.6.0-2_all.deb ... 2024-09-13T21:58:42.487 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-jaraco.text (3.6.0-2) ... 2024-09-13T21:58:42.700 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-mako. 2024-09-13T21:58:42.726 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../043-python3-mako_1.1.3+ds1-2ubuntu0.1_all.deb ... 2024-09-13T21:58:42.765 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-jaraco.collections. 2024-09-13T21:58:42.766 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-09-13T21:58:42.792 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../035-python3-jaraco.collections_3.4.0-2_all.deb ... 2024-09-13T21:58:42.806 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package ceph-base. 2024-09-13T21:58:42.823 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-jaraco.collections (3.4.0-2) ... 2024-09-13T21:58:42.832 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../030-ceph-base_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:42.882 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking ceph-base (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:43.079 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-simplegeneric. 2024-09-13T21:58:43.105 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../044-python3-simplegeneric_0.8.1-3_all.deb ... 2024-09-13T21:58:43.118 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-tempora. 2024-09-13T21:58:43.145 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../036-python3-tempora_4.1.2-1_all.deb ... 2024-09-13T21:58:43.145 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-simplegeneric (0.8.1-3) ... 2024-09-13T21:58:43.184 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-tempora (4.1.2-1) ... 2024-09-13T21:58:43.448 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-singledispatch. 2024-09-13T21:58:43.475 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../045-python3-singledispatch_3.4.0.3-3_all.deb ... 2024-09-13T21:58:43.476 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-jaraco.functools. 2024-09-13T21:58:43.487 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-portend. 2024-09-13T21:58:43.492 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../031-python3-jaraco.functools_3.4.0-2_all.deb ... 2024-09-13T21:58:43.514 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../037-python3-portend_3.0.0-1_all.deb ... 2024-09-13T21:58:43.515 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-singledispatch (3.4.0.3-3) ... 2024-09-13T21:58:43.526 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-jaraco.functools (3.4.0-2) ... 2024-09-13T21:58:43.553 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-portend (3.0.0-1) ... 2024-09-13T21:58:43.777 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-webob. 2024-09-13T21:58:43.792 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../046-python3-webob_1%3a1.8.6-1.1ubuntu0.1_all.deb ... 2024-09-13T21:58:43.804 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-cheroot. 2024-09-13T21:58:43.828 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-webob (1:1.8.6-1.1ubuntu0.1) ... 2024-09-13T21:58:43.830 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../032-python3-cheroot_8.5.2+ds1-1ubuntu3.1_all.deb ... 2024-09-13T21:58:43.856 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-zc.lockfile. 2024-09-13T21:58:43.870 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-09-13T21:58:43.883 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../038-python3-zc.lockfile_2.0-1_all.deb ... 2024-09-13T21:58:43.923 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-zc.lockfile (2.0-1) ... 2024-09-13T21:58:44.114 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-waitress. 2024-09-13T21:58:44.140 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../047-python3-waitress_1.4.4-1.1ubuntu1_all.deb ... 2024-09-13T21:58:44.175 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-waitress (1.4.4-1.1ubuntu1) ... 2024-09-13T21:58:44.193 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-cherrypy3. 2024-09-13T21:58:44.219 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../039-python3-cherrypy3_18.6.1-4_all.deb ... 2024-09-13T21:58:44.223 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-jaraco.classes. 2024-09-13T21:58:44.250 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../033-python3-jaraco.classes_3.2.1-3_all.deb ... 2024-09-13T21:58:44.250 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-cherrypy3 (18.6.1-4) ... 2024-09-13T21:58:44.289 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-jaraco.classes (3.2.1-3) ... 2024-09-13T21:58:44.459 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-tempita. 2024-09-13T21:58:44.485 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../048-python3-tempita_0.5.2-6ubuntu1_all.deb ... 2024-09-13T21:58:44.525 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-tempita (0.5.2-6ubuntu1) ... 2024-09-13T21:58:44.587 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-natsort. 2024-09-13T21:58:44.592 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-jaraco.text. 2024-09-13T21:58:44.614 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../040-python3-natsort_8.0.2-1_all.deb ... 2024-09-13T21:58:44.619 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../034-python3-jaraco.text_3.6.0-2_all.deb ... 2024-09-13T21:58:44.654 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-natsort (8.0.2-1) ... 2024-09-13T21:58:44.667 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-jaraco.text (3.6.0-2) ... 2024-09-13T21:58:44.829 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-paste. 2024-09-13T21:58:44.855 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../049-python3-paste_3.5.0+dfsg1-1_all.deb ... 2024-09-13T21:58:44.895 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-paste (3.5.0+dfsg1-1) ... 2024-09-13T21:58:44.949 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-logutils. 2024-09-13T21:58:44.962 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-jaraco.collections. 2024-09-13T21:58:44.975 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../041-python3-logutils_0.3.3-8_all.deb ... 2024-09-13T21:58:44.988 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../035-python3-jaraco.collections_3.4.0-2_all.deb ... 2024-09-13T21:58:45.007 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-logutils (0.3.3-8) ... 2024-09-13T21:58:45.028 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-jaraco.collections (3.4.0-2) ... 2024-09-13T21:58:45.190 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python-pastedeploy-tpl. 2024-09-13T21:58:45.217 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../050-python-pastedeploy-tpl_2.1.1-1_all.deb ... 2024-09-13T21:58:45.257 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python-pastedeploy-tpl (2.1.1-1) ... 2024-09-13T21:58:45.285 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-markupsafe. 2024-09-13T21:58:45.312 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../042-python3-markupsafe_2.0.1-2build1_amd64.deb ... 2024-09-13T21:58:45.314 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-tempora. 2024-09-13T21:58:45.341 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../036-python3-tempora_4.1.2-1_all.deb ... 2024-09-13T21:58:45.351 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-markupsafe (2.0.1-2build1) ... 2024-09-13T21:58:45.389 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-tempora (4.1.2-1) ... 2024-09-13T21:58:45.527 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-pastedeploy. 2024-09-13T21:58:45.553 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../051-python3-pastedeploy_2.1.1-1_all.deb ... 2024-09-13T21:58:45.585 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-pastedeploy (2.1.1-1) ... 2024-09-13T21:58:45.612 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-mako. 2024-09-13T21:58:45.639 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../043-python3-mako_1.1.3+ds1-2ubuntu0.1_all.deb ... 2024-09-13T21:58:45.692 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-portend. 2024-09-13T21:58:45.695 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-09-13T21:58:45.719 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../037-python3-portend_3.0.0-1_all.deb ... 2024-09-13T21:58:45.758 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-portend (3.0.0-1) ... 2024-09-13T21:58:45.864 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-webtest. 2024-09-13T21:58:45.890 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../052-python3-webtest_2.0.35-1_all.deb ... 2024-09-13T21:58:45.930 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-webtest (2.0.35-1) ... 2024-09-13T21:58:46.024 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-simplegeneric. 2024-09-13T21:58:46.051 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../044-python3-simplegeneric_0.8.1-3_all.deb ... 2024-09-13T21:58:46.090 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-simplegeneric (0.8.1-3) ... 2024-09-13T21:58:46.253 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-zc.lockfile. 2024-09-13T21:58:46.276 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-pecan. 2024-09-13T21:58:46.280 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../038-python3-zc.lockfile_2.0-1_all.deb ... 2024-09-13T21:58:46.302 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../053-python3-pecan_1.3.3-4ubuntu2_all.deb ... 2024-09-13T21:58:46.319 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-zc.lockfile (2.0-1) ... 2024-09-13T21:58:46.342 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-pecan (1.3.3-4ubuntu2) ... 2024-09-13T21:58:46.418 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-singledispatch. 2024-09-13T21:58:46.445 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../045-python3-singledispatch_3.4.0.3-3_all.deb ... 2024-09-13T21:58:46.484 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-singledispatch (3.4.0.3-3) ... 2024-09-13T21:58:46.605 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-cherrypy3. 2024-09-13T21:58:46.632 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../039-python3-cherrypy3_18.6.1-4_all.deb ... 2024-09-13T21:58:46.664 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-cherrypy3 (18.6.1-4) ... 2024-09-13T21:58:46.698 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-certifi. 2024-09-13T21:58:46.724 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../054-python3-certifi_2020.6.20-1_all.deb ... 2024-09-13T21:58:46.764 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-09-13T21:58:46.779 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-webob. 2024-09-13T21:58:46.806 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../046-python3-webob_1%3a1.8.6-1.1ubuntu0.1_all.deb ... 2024-09-13T21:58:46.845 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-webob (1:1.8.6-1.1ubuntu0.1) ... 2024-09-13T21:58:46.984 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-natsort. 2024-09-13T21:58:47.010 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../040-python3-natsort_8.0.2-1_all.deb ... 2024-09-13T21:58:47.050 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-natsort (8.0.2-1) ... 2024-09-13T21:58:47.051 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-idna. 2024-09-13T21:58:47.078 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../055-python3-idna_3.3-1ubuntu0.1_all.deb ... 2024-09-13T21:58:47.109 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-idna (3.3-1ubuntu0.1) ... 2024-09-13T21:58:47.165 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-waitress. 2024-09-13T21:58:47.192 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../047-python3-waitress_1.4.4-1.1ubuntu1_all.deb ... 2024-09-13T21:58:47.235 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-waitress (1.4.4-1.1ubuntu1) ... 2024-09-13T21:58:47.330 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-logutils. 2024-09-13T21:58:47.346 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../041-python3-logutils_0.3.3-8_all.deb ... 2024-09-13T21:58:47.380 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-logutils (0.3.3-8) ... 2024-09-13T21:58:47.396 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-urllib3. 2024-09-13T21:58:47.423 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../056-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-09-13T21:58:47.463 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-13T21:58:47.512 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-tempita. 2024-09-13T21:58:47.536 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../048-python3-tempita_0.5.2-6ubuntu1_all.deb ... 2024-09-13T21:58:47.576 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-tempita (0.5.2-6ubuntu1) ... 2024-09-13T21:58:47.683 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-markupsafe. 2024-09-13T21:58:47.710 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../042-python3-markupsafe_2.0.1-2build1_amd64.deb ... 2024-09-13T21:58:47.749 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-markupsafe (2.0.1-2build1) ... 2024-09-13T21:58:47.792 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-requests. 2024-09-13T21:58:47.818 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../057-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-09-13T21:58:47.837 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-paste. 2024-09-13T21:58:47.858 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-13T21:58:47.863 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../049-python3-paste_3.5.0+dfsg1-1_all.deb ... 2024-09-13T21:58:47.895 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-paste (3.5.0+dfsg1-1) ... 2024-09-13T21:58:48.052 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-mako. 2024-09-13T21:58:48.079 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../043-python3-mako_1.1.3+ds1-2ubuntu0.1_all.deb ... 2024-09-13T21:58:48.119 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-09-13T21:58:48.153 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-werkzeug. 2024-09-13T21:58:48.180 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../058-python3-werkzeug_2.0.2+dfsg1-1ubuntu0.22.04.2_all.deb ... 2024-09-13T21:58:48.220 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.2) ... 2024-09-13T21:58:48.232 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python-pastedeploy-tpl. 2024-09-13T21:58:48.258 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../050-python-pastedeploy-tpl_2.1.1-1_all.deb ... 2024-09-13T21:58:48.298 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python-pastedeploy-tpl (2.1.1-1) ... 2024-09-13T21:58:48.481 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-simplegeneric. 2024-09-13T21:58:48.498 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package ceph-mgr-modules-core. 2024-09-13T21:58:48.507 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../044-python3-simplegeneric_0.8.1-3_all.deb ... 2024-09-13T21:58:48.525 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../059-ceph-mgr-modules-core_19.1.1-324-gecab7be5-1jammy_all.deb ... 2024-09-13T21:58:48.547 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-simplegeneric (0.8.1-3) ... 2024-09-13T21:58:48.565 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking ceph-mgr-modules-core (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:48.568 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-pastedeploy. 2024-09-13T21:58:48.594 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../051-python3-pastedeploy_2.1.1-1_all.deb ... 2024-09-13T21:58:48.626 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-pastedeploy (2.1.1-1) ... 2024-09-13T21:58:48.841 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-singledispatch. 2024-09-13T21:58:48.858 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../045-python3-singledispatch_3.4.0.3-3_all.deb ... 2024-09-13T21:58:48.892 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-singledispatch (3.4.0.3-3) ... 2024-09-13T21:58:48.904 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-webtest. 2024-09-13T21:58:48.930 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../052-python3-webtest_2.0.35-1_all.deb ... 2024-09-13T21:58:48.962 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-webtest (2.0.35-1) ... 2024-09-13T21:58:48.971 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package libsqlite3-mod-ceph. 2024-09-13T21:58:48.997 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../060-libsqlite3-mod-ceph_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:49.037 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking libsqlite3-mod-ceph (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:49.186 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-webob. 2024-09-13T21:58:49.213 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../046-python3-webob_1%3a1.8.6-1.1ubuntu0.1_all.deb ... 2024-09-13T21:58:49.252 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-webob (1:1.8.6-1.1ubuntu0.1) ... 2024-09-13T21:58:49.349 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-bcrypt. 2024-09-13T21:58:49.376 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../061-python3-bcrypt_3.2.0-1build1_amd64.deb ... 2024-09-13T21:58:49.415 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-bcrypt (3.2.0-1build1) ... 2024-09-13T21:58:49.449 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-pecan. 2024-09-13T21:58:49.475 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../053-python3-pecan_1.3.3-4ubuntu2_all.deb ... 2024-09-13T21:58:49.515 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-pecan (1.3.3-4ubuntu2) ... 2024-09-13T21:58:49.606 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-waitress. 2024-09-13T21:58:49.633 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../047-python3-waitress_1.4.4-1.1ubuntu1_all.deb ... 2024-09-13T21:58:49.675 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-waitress (1.4.4-1.1ubuntu1) ... 2024-09-13T21:58:49.703 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-openssl. 2024-09-13T21:58:49.729 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../062-python3-openssl_21.0.0-1_all.deb ... 2024-09-13T21:58:49.769 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-openssl (21.0.0-1) ... 2024-09-13T21:58:49.878 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-certifi. 2024-09-13T21:58:49.904 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../054-python3-certifi_2020.6.20-1_all.deb ... 2024-09-13T21:58:49.944 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-09-13T21:58:49.984 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-tempita. 2024-09-13T21:58:50.010 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../048-python3-tempita_0.5.2-6ubuntu1_all.deb ... 2024-09-13T21:58:50.050 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-tempita (0.5.2-6ubuntu1) ... 2024-09-13T21:58:50.097 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package ceph-mgr. 2024-09-13T21:58:50.110 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../063-ceph-mgr_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:50.147 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking ceph-mgr (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:50.264 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-idna. 2024-09-13T21:58:50.290 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../055-python3-idna_3.3-1ubuntu0.1_all.deb ... 2024-09-13T21:58:50.330 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-idna (3.3-1ubuntu0.1) ... 2024-09-13T21:58:50.353 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-paste. 2024-09-13T21:58:50.380 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../049-python3-paste_3.5.0+dfsg1-1_all.deb ... 2024-09-13T21:58:50.419 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-paste (3.5.0+dfsg1-1) ... 2024-09-13T21:58:51.452 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package ceph-mon. 2024-09-13T21:58:51.480 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../064-ceph-mon_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:51.517 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-urllib3. 2024-09-13T21:58:51.518 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking ceph-mon (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:51.531 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python-pastedeploy-tpl. 2024-09-13T21:58:51.543 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../056-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-09-13T21:58:51.559 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../050-python-pastedeploy-tpl_2.1.1-1_all.deb ... 2024-09-13T21:58:51.583 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-13T21:58:51.598 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python-pastedeploy-tpl (2.1.1-1) ... 2024-09-13T21:58:51.876 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-pastedeploy. 2024-09-13T21:58:51.903 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../051-python3-pastedeploy_2.1.1-1_all.deb ... 2024-09-13T21:58:51.911 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-requests. 2024-09-13T21:58:51.934 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-pastedeploy (2.1.1-1) ... 2024-09-13T21:58:51.938 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../057-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-09-13T21:58:51.978 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-13T21:58:52.139 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package ceph-osd. 2024-09-13T21:58:52.166 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../065-ceph-osd_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:52.204 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-webtest. 2024-09-13T21:58:52.205 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking ceph-osd (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:52.231 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../052-python3-webtest_2.0.35-1_all.deb ... 2024-09-13T21:58:52.270 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-webtest (2.0.35-1) ... 2024-09-13T21:58:52.281 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-werkzeug. 2024-09-13T21:58:52.307 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../058-python3-werkzeug_2.0.2+dfsg1-1ubuntu0.22.04.2_all.deb ... 2024-09-13T21:58:52.339 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.2) ... 2024-09-13T21:58:52.582 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-pecan. 2024-09-13T21:58:52.609 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package ceph-mgr-modules-core. 2024-09-13T21:58:52.609 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../053-python3-pecan_1.3.3-4ubuntu2_all.deb ... 2024-09-13T21:58:52.624 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../059-ceph-mgr-modules-core_19.1.1-324-gecab7be5-1jammy_all.deb ... 2024-09-13T21:58:52.648 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-pecan (1.3.3-4ubuntu2) ... 2024-09-13T21:58:52.667 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking ceph-mgr-modules-core (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:53.011 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-certifi. 2024-09-13T21:58:53.041 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../054-python3-certifi_2020.6.20-1_all.deb ... 2024-09-13T21:58:53.046 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package libsqlite3-mod-ceph. 2024-09-13T21:58:53.073 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../060-libsqlite3-mod-ceph_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:53.094 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-09-13T21:58:53.113 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking libsqlite3-mod-ceph (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:53.260 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package ceph. 2024-09-13T21:58:53.275 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../066-ceph_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:53.318 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking ceph (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:53.414 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-idna. 2024-09-13T21:58:53.433 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-bcrypt. 2024-09-13T21:58:53.441 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../055-python3-idna_3.3-1ubuntu0.1_all.deb ... 2024-09-13T21:58:53.459 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../061-python3-bcrypt_3.2.0-1build1_amd64.deb ... 2024-09-13T21:58:53.481 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-idna (3.3-1ubuntu0.1) ... 2024-09-13T21:58:53.499 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-bcrypt (3.2.0-1build1) ... 2024-09-13T21:58:53.638 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package ceph-fuse. 2024-09-13T21:58:53.665 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../067-ceph-fuse_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:53.704 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking ceph-fuse (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:53.775 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-urllib3. 2024-09-13T21:58:53.785 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-openssl. 2024-09-13T21:58:53.802 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../056-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-09-13T21:58:53.812 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../062-python3-openssl_21.0.0-1_all.deb ... 2024-09-13T21:58:53.842 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-13T21:58:53.851 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-openssl (21.0.0-1) ... 2024-09-13T21:58:54.108 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package ceph-mds. 2024-09-13T21:58:54.135 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../068-ceph-mds_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:54.145 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-requests. 2024-09-13T21:58:54.161 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../057-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-09-13T21:58:54.166 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking ceph-mds (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:54.195 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-13T21:58:54.204 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package ceph-mgr. 2024-09-13T21:58:54.231 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../063-ceph-mgr_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:54.272 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking ceph-mgr (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:54.515 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-werkzeug. 2024-09-13T21:58:54.542 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../058-python3-werkzeug_2.0.2+dfsg1-1ubuntu0.22.04.2_all.deb ... 2024-09-13T21:58:54.578 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package cephadm. 2024-09-13T21:58:54.581 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.2) ... 2024-09-13T21:58:54.605 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../069-cephadm_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:54.644 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking cephadm (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:54.683 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package ceph-mon. 2024-09-13T21:58:54.709 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../064-ceph-mon_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:54.749 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking ceph-mon (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:54.868 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package ceph-mgr-modules-core. 2024-09-13T21:58:54.884 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../059-ceph-mgr-modules-core_19.1.1-324-gecab7be5-1jammy_all.deb ... 2024-09-13T21:58:54.926 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking ceph-mgr-modules-core (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:54.956 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-asyncssh. 2024-09-13T21:58:54.983 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../070-python3-asyncssh_2.5.0-1_all.deb ... 2024-09-13T21:58:55.022 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-asyncssh (2.5.0-1) ... 2024-09-13T21:58:55.294 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package ceph-osd. 2024-09-13T21:58:55.321 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../065-ceph-osd_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:55.322 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package libsqlite3-mod-ceph. 2024-09-13T21:58:55.350 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../060-libsqlite3-mod-ceph_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:55.351 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python-babel-localedata. 2024-09-13T21:58:55.352 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking ceph-osd (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:55.367 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../071-python-babel-localedata_2.8.0+dfsg.1-7_all.deb ... 2024-09-13T21:58:55.389 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking libsqlite3-mod-ceph (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:55.409 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-09-13T21:58:55.700 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-bcrypt. 2024-09-13T21:58:55.727 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../061-python3-bcrypt_3.2.0-1build1_amd64.deb ... 2024-09-13T21:58:55.767 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-bcrypt (3.2.0-1build1) ... 2024-09-13T21:58:56.070 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-openssl. 2024-09-13T21:58:56.096 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../062-python3-openssl_21.0.0-1_all.deb ... 2024-09-13T21:58:56.136 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-openssl (21.0.0-1) ... 2024-09-13T21:58:56.414 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package ceph. 2024-09-13T21:58:56.414 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package ceph-mgr. 2024-09-13T21:58:56.415 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-babel. 2024-09-13T21:58:56.440 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../066-ceph_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:56.441 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../063-ceph-mgr_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:56.442 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../072-python3-babel_2.8.0+dfsg.1-7_all.deb ... 2024-09-13T21:58:56.480 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking ceph (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:56.481 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking ceph-mgr (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:56.481 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-babel (2.8.0+dfsg.1-7) ... 2024-09-13T21:58:56.816 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package ceph-fuse. 2024-09-13T21:58:56.819 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-jinja2. 2024-09-13T21:58:56.843 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../067-ceph-fuse_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:56.846 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../073-python3-jinja2_3.0.3-1ubuntu0.2_all.deb ... 2024-09-13T21:58:56.867 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package ceph-mon. 2024-09-13T21:58:56.883 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking ceph-fuse (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:56.885 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-jinja2 (3.0.3-1ubuntu0.2) ... 2024-09-13T21:58:56.894 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../064-ceph-mon_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:56.942 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking ceph-mon (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:57.211 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package ceph-mds. 2024-09-13T21:58:57.226 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../068-ceph-mds_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:57.230 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package ceph-mgr-cephadm. 2024-09-13T21:58:57.257 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../074-ceph-mgr-cephadm_19.1.1-324-gecab7be5-1jammy_all.deb ... 2024-09-13T21:58:57.260 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking ceph-mds (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:57.297 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking ceph-mgr-cephadm (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:57.622 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package cephadm. 2024-09-13T21:58:57.634 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-repoze.lru. 2024-09-13T21:58:57.648 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../069-cephadm_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:57.661 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../075-python3-repoze.lru_0.7-2_all.deb ... 2024-09-13T21:58:57.672 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package ceph-osd. 2024-09-13T21:58:57.688 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking cephadm (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:57.697 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../065-ceph-osd_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:57.700 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-repoze.lru (0.7-2) ... 2024-09-13T21:58:57.737 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking ceph-osd (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:58.004 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-routes. 2024-09-13T21:58:58.016 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-asyncssh. 2024-09-13T21:58:58.031 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../076-python3-routes_2.5.1-1ubuntu1_all.deb ... 2024-09-13T21:58:58.042 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../070-python3-asyncssh_2.5.0-1_all.deb ... 2024-09-13T21:58:58.070 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-routes (2.5.1-1ubuntu1) ... 2024-09-13T21:58:58.082 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-asyncssh (2.5.0-1) ... 2024-09-13T21:58:58.385 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python-babel-localedata. 2024-09-13T21:58:58.412 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../071-python-babel-localedata_2.8.0+dfsg.1-7_all.deb ... 2024-09-13T21:58:58.424 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package ceph-mgr-dashboard. 2024-09-13T21:58:58.443 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-09-13T21:58:58.451 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../077-ceph-mgr-dashboard_19.1.1-324-gecab7be5-1jammy_all.deb ... 2024-09-13T21:58:58.490 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking ceph-mgr-dashboard (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:58.824 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package ceph. 2024-09-13T21:58:58.851 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../066-ceph_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:58.882 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking ceph (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:59.201 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package ceph-fuse. 2024-09-13T21:58:59.228 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../067-ceph-fuse_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:59.268 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking ceph-fuse (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:59.407 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-babel. 2024-09-13T21:58:59.434 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../072-python3-babel_2.8.0+dfsg.1-7_all.deb ... 2024-09-13T21:58:59.473 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-babel (2.8.0+dfsg.1-7) ... 2024-09-13T21:58:59.613 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package ceph-mds. 2024-09-13T21:58:59.640 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../068-ceph-mds_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:58:59.679 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking ceph-mds (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:58:59.897 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-sklearn-lib:amd64. 2024-09-13T21:58:59.913 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../078-python3-sklearn-lib_0.23.2-5ubuntu6_amd64.deb ... 2024-09-13T21:58:59.955 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-09-13T21:58:59.993 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-jinja2. 2024-09-13T21:59:00.019 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../073-python3-jinja2_3.0.3-1ubuntu0.2_all.deb ... 2024-09-13T21:59:00.059 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-jinja2 (3.0.3-1ubuntu0.2) ... 2024-09-13T21:59:00.074 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package cephadm. 2024-09-13T21:59:00.101 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../069-cephadm_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:59:00.140 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking cephadm (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:00.404 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package ceph-mgr-cephadm. 2024-09-13T21:59:00.430 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../074-ceph-mgr-cephadm_19.1.1-324-gecab7be5-1jammy_all.deb ... 2024-09-13T21:59:00.452 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-asyncssh. 2024-09-13T21:59:00.470 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking ceph-mgr-cephadm (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:00.478 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../070-python3-asyncssh_2.5.0-1_all.deb ... 2024-09-13T21:59:00.518 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-asyncssh (2.5.0-1) ... 2024-09-13T21:59:00.815 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-repoze.lru. 2024-09-13T21:59:00.818 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-joblib. 2024-09-13T21:59:00.829 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python-babel-localedata. 2024-09-13T21:59:00.842 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../075-python3-repoze.lru_0.7-2_all.deb ... 2024-09-13T21:59:00.844 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../079-python3-joblib_0.17.0-4ubuntu1_all.deb ... 2024-09-13T21:59:00.856 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../071-python-babel-localedata_2.8.0+dfsg.1-7_all.deb ... 2024-09-13T21:59:00.876 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-joblib (0.17.0-4ubuntu1) ... 2024-09-13T21:59:00.881 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-repoze.lru (0.7-2) ... 2024-09-13T21:59:00.904 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-09-13T21:59:01.184 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-routes. 2024-09-13T21:59:01.211 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../076-python3-routes_2.5.1-1ubuntu1_all.deb ... 2024-09-13T21:59:01.238 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-threadpoolctl. 2024-09-13T21:59:01.252 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-routes (2.5.1-1ubuntu1) ... 2024-09-13T21:59:01.265 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../080-python3-threadpoolctl_3.1.0-1_all.deb ... 2024-09-13T21:59:01.305 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-threadpoolctl (3.1.0-1) ... 2024-09-13T21:59:01.575 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-sklearn. 2024-09-13T21:59:01.602 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../081-python3-sklearn_0.23.2-5ubuntu6_all.deb ... 2024-09-13T21:59:01.612 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package ceph-mgr-dashboard. 2024-09-13T21:59:01.633 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-sklearn (0.23.2-5ubuntu6) ... 2024-09-13T21:59:01.639 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../077-ceph-mgr-dashboard_19.1.1-324-gecab7be5-1jammy_all.deb ... 2024-09-13T21:59:01.678 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking ceph-mgr-dashboard (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:02.126 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-babel. 2024-09-13T21:59:02.142 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../072-python3-babel_2.8.0+dfsg.1-7_all.deb ... 2024-09-13T21:59:02.176 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-babel (2.8.0+dfsg.1-7) ... 2024-09-13T21:59:02.318 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package ceph-mgr-diskprediction-local. 2024-09-13T21:59:02.346 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../082-ceph-mgr-diskprediction-local_19.1.1-324-gecab7be5-1jammy_all.deb ... 2024-09-13T21:59:02.470 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-jinja2. 2024-09-13T21:59:02.471 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking ceph-mgr-diskprediction-local (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:02.497 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../073-python3-jinja2_3.0.3-1ubuntu0.2_all.deb ... 2024-09-13T21:59:02.537 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-jinja2 (3.0.3-1ubuntu0.2) ... 2024-09-13T21:59:02.884 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package ceph-mgr-cephadm. 2024-09-13T21:59:02.909 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../074-ceph-mgr-cephadm_19.1.1-324-gecab7be5-1jammy_all.deb ... 2024-09-13T21:59:02.922 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-sklearn-lib:amd64. 2024-09-13T21:59:02.948 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking ceph-mgr-cephadm (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:02.949 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../078-python3-sklearn-lib_0.23.2-5ubuntu6_amd64.deb ... 2024-09-13T21:59:02.992 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-09-13T21:59:03.301 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-repoze.lru. 2024-09-13T21:59:03.329 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../075-python3-repoze.lru_0.7-2_all.deb ... 2024-09-13T21:59:03.368 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-repoze.lru (0.7-2) ... 2024-09-13T21:59:03.458 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-cachetools. 2024-09-13T21:59:03.485 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../083-python3-cachetools_5.0.0-1_all.deb ... 2024-09-13T21:59:03.504 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-joblib. 2024-09-13T21:59:03.525 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-cachetools (5.0.0-1) ... 2024-09-13T21:59:03.530 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../079-python3-joblib_0.17.0-4ubuntu1_all.deb ... 2024-09-13T21:59:03.570 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-joblib (0.17.0-4ubuntu1) ... 2024-09-13T21:59:03.687 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-routes. 2024-09-13T21:59:03.715 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../076-python3-routes_2.5.1-1ubuntu1_all.deb ... 2024-09-13T21:59:03.754 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-routes (2.5.1-1ubuntu1) ... 2024-09-13T21:59:03.813 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-pyasn1. 2024-09-13T21:59:03.839 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../084-python3-pyasn1_0.4.8-1_all.deb ... 2024-09-13T21:59:03.878 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-pyasn1 (0.4.8-1) ... 2024-09-13T21:59:03.949 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-threadpoolctl. 2024-09-13T21:59:03.976 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../080-python3-threadpoolctl_3.1.0-1_all.deb ... 2024-09-13T21:59:04.015 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-threadpoolctl (3.1.0-1) ... 2024-09-13T21:59:04.082 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package ceph-mgr-dashboard. 2024-09-13T21:59:04.109 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../077-ceph-mgr-dashboard_19.1.1-324-gecab7be5-1jammy_all.deb ... 2024-09-13T21:59:04.149 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking ceph-mgr-dashboard (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:04.216 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-pyasn1-modules. 2024-09-13T21:59:04.243 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../085-python3-pyasn1-modules_0.2.1-1_all.deb ... 2024-09-13T21:59:04.282 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-pyasn1-modules (0.2.1-1) ... 2024-09-13T21:59:04.318 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-sklearn. 2024-09-13T21:59:04.345 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../081-python3-sklearn_0.23.2-5ubuntu6_all.deb ... 2024-09-13T21:59:04.384 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-sklearn (0.23.2-5ubuntu6) ... 2024-09-13T21:59:04.594 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-rsa. 2024-09-13T21:59:04.621 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../086-python3-rsa_4.8-1_all.deb ... 2024-09-13T21:59:04.661 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-rsa (4.8-1) ... 2024-09-13T21:59:04.948 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-google-auth. 2024-09-13T21:59:04.976 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../087-python3-google-auth_1.5.1-3_all.deb ... 2024-09-13T21:59:05.015 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-google-auth (1.5.1-3) ... 2024-09-13T21:59:05.126 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package ceph-mgr-diskprediction-local. 2024-09-13T21:59:05.154 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../082-ceph-mgr-diskprediction-local_19.1.1-324-gecab7be5-1jammy_all.deb ... 2024-09-13T21:59:05.278 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking ceph-mgr-diskprediction-local (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:05.302 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-requests-oauthlib. 2024-09-13T21:59:05.318 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../088-python3-requests-oauthlib_1.3.0+ds-0.1_all.deb ... 2024-09-13T21:59:05.352 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-09-13T21:59:05.479 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-sklearn-lib:amd64. 2024-09-13T21:59:05.495 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../078-python3-sklearn-lib_0.23.2-5ubuntu6_amd64.deb ... 2024-09-13T21:59:05.537 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-09-13T21:59:05.805 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-websocket. 2024-09-13T21:59:05.833 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../089-python3-websocket_1.2.3-1_all.deb ... 2024-09-13T21:59:05.872 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-websocket (1.2.3-1) ... 2024-09-13T21:59:05.991 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-joblib. 2024-09-13T21:59:06.018 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../079-python3-joblib_0.17.0-4ubuntu1_all.deb ... 2024-09-13T21:59:06.049 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-joblib (0.17.0-4ubuntu1) ... 2024-09-13T21:59:06.192 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-kubernetes. 2024-09-13T21:59:06.219 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../090-python3-kubernetes_12.0.1-1ubuntu1_all.deb ... 2024-09-13T21:59:06.222 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-cachetools. 2024-09-13T21:59:06.239 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../083-python3-cachetools_5.0.0-1_all.deb ... 2024-09-13T21:59:06.259 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-kubernetes (12.0.1-1ubuntu1) ... 2024-09-13T21:59:06.289 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-cachetools (5.0.0-1) ... 2024-09-13T21:59:06.419 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-threadpoolctl. 2024-09-13T21:59:06.447 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../080-python3-threadpoolctl_3.1.0-1_all.deb ... 2024-09-13T21:59:06.485 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-threadpoolctl (3.1.0-1) ... 2024-09-13T21:59:06.542 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-pyasn1. 2024-09-13T21:59:06.570 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../084-python3-pyasn1_0.4.8-1_all.deb ... 2024-09-13T21:59:06.609 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-pyasn1 (0.4.8-1) ... 2024-09-13T21:59:06.780 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-sklearn. 2024-09-13T21:59:06.808 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../081-python3-sklearn_0.23.2-5ubuntu6_all.deb ... 2024-09-13T21:59:06.846 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-sklearn (0.23.2-5ubuntu6) ... 2024-09-13T21:59:06.920 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-pyasn1-modules. 2024-09-13T21:59:06.924 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package ceph-mgr-k8sevents. 2024-09-13T21:59:06.948 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../085-python3-pyasn1-modules_0.2.1-1_all.deb ... 2024-09-13T21:59:06.952 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../091-ceph-mgr-k8sevents_19.1.1-324-gecab7be5-1jammy_all.deb ... 2024-09-13T21:59:06.987 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-pyasn1-modules (0.2.1-1) ... 2024-09-13T21:59:06.990 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking ceph-mgr-k8sevents (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:07.307 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-rsa. 2024-09-13T21:59:07.328 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package libonig5:amd64. 2024-09-13T21:59:07.334 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../086-python3-rsa_4.8-1_all.deb ... 2024-09-13T21:59:07.355 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../092-libonig5_6.9.7.1-2build1_amd64.deb ... 2024-09-13T21:59:07.373 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-rsa (4.8-1) ... 2024-09-13T21:59:07.394 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking libonig5:amd64 (6.9.7.1-2build1) ... 2024-09-13T21:59:07.547 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package ceph-mgr-diskprediction-local. 2024-09-13T21:59:07.575 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../082-ceph-mgr-diskprediction-local_19.1.1-324-gecab7be5-1jammy_all.deb ... 2024-09-13T21:59:07.677 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-google-auth. 2024-09-13T21:59:07.699 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking ceph-mgr-diskprediction-local (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:07.704 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../087-python3-google-auth_1.5.1-3_all.deb ... 2024-09-13T21:59:07.706 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package libjq1:amd64. 2024-09-13T21:59:07.734 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../093-libjq1_1.6-2.1ubuntu3_amd64.deb ... 2024-09-13T21:59:07.743 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-google-auth (1.5.1-3) ... 2024-09-13T21:59:07.772 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-09-13T21:59:08.034 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package jq. 2024-09-13T21:59:08.050 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../094-jq_1.6-2.1ubuntu3_amd64.deb ... 2024-09-13T21:59:08.063 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-requests-oauthlib. 2024-09-13T21:59:08.090 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../088-python3-requests-oauthlib_1.3.0+ds-0.1_all.deb ... 2024-09-13T21:59:08.092 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking jq (1.6-2.1ubuntu3) ... 2024-09-13T21:59:08.129 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-09-13T21:59:08.322 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package socat. 2024-09-13T21:59:08.338 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../095-socat_1.7.4.1-3ubuntu4_amd64.deb ... 2024-09-13T21:59:08.372 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking socat (1.7.4.1-3ubuntu4) ... 2024-09-13T21:59:08.407 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-websocket. 2024-09-13T21:59:08.434 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../089-python3-websocket_1.2.3-1_all.deb ... 2024-09-13T21:59:08.465 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-websocket (1.2.3-1) ... 2024-09-13T21:59:08.645 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-cachetools. 2024-09-13T21:59:08.651 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package xmlstarlet. 2024-09-13T21:59:08.667 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../096-xmlstarlet_1.6.1-2.1_amd64.deb ... 2024-09-13T21:59:08.672 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../083-python3-cachetools_5.0.0-1_all.deb ... 2024-09-13T21:59:08.709 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking xmlstarlet (1.6.1-2.1) ... 2024-09-13T21:59:08.710 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-cachetools (5.0.0-1) ... 2024-09-13T21:59:08.760 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-kubernetes. 2024-09-13T21:59:08.787 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../090-python3-kubernetes_12.0.1-1ubuntu1_all.deb ... 2024-09-13T21:59:08.827 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-kubernetes (12.0.1-1ubuntu1) ... 2024-09-13T21:59:09.022 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-pyasn1. 2024-09-13T21:59:09.050 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../084-python3-pyasn1_0.4.8-1_all.deb ... 2024-09-13T21:59:09.064 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package ceph-test. 2024-09-13T21:59:09.089 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-pyasn1 (0.4.8-1) ... 2024-09-13T21:59:09.092 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../097-ceph-test_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:59:09.122 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking ceph-test (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:09.451 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-pyasn1-modules. 2024-09-13T21:59:09.478 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../085-python3-pyasn1-modules_0.2.1-1_all.deb ... 2024-09-13T21:59:09.517 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-pyasn1-modules (0.2.1-1) ... 2024-09-13T21:59:09.524 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package ceph-mgr-k8sevents. 2024-09-13T21:59:09.541 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../091-ceph-mgr-k8sevents_19.1.1-324-gecab7be5-1jammy_all.deb ... 2024-09-13T21:59:09.599 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking ceph-mgr-k8sevents (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:09.812 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-rsa. 2024-09-13T21:59:09.839 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../086-python3-rsa_4.8-1_all.deb ... 2024-09-13T21:59:09.878 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-rsa (4.8-1) ... 2024-09-13T21:59:09.910 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package libonig5:amd64. 2024-09-13T21:59:09.937 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../092-libonig5_6.9.7.1-2build1_amd64.deb ... 2024-09-13T21:59:09.976 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking libonig5:amd64 (6.9.7.1-2build1) ... 2024-09-13T21:59:10.190 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-google-auth. 2024-09-13T21:59:10.218 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../087-python3-google-auth_1.5.1-3_all.deb ... 2024-09-13T21:59:10.246 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package libjq1:amd64. 2024-09-13T21:59:10.257 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-google-auth (1.5.1-3) ... 2024-09-13T21:59:10.261 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../093-libjq1_1.6-2.1ubuntu3_amd64.deb ... 2024-09-13T21:59:10.295 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-09-13T21:59:10.548 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package jq. 2024-09-13T21:59:10.560 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-requests-oauthlib. 2024-09-13T21:59:10.576 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../094-jq_1.6-2.1ubuntu3_amd64.deb ... 2024-09-13T21:59:10.588 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../088-python3-requests-oauthlib_1.3.0+ds-0.1_all.deb ... 2024-09-13T21:59:10.615 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking jq (1.6-2.1ubuntu3) ... 2024-09-13T21:59:10.626 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-09-13T21:59:10.876 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package socat. 2024-09-13T21:59:10.892 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../095-socat_1.7.4.1-3ubuntu4_amd64.deb ... 2024-09-13T21:59:10.934 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking socat (1.7.4.1-3ubuntu4) ... 2024-09-13T21:59:10.937 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-websocket. 2024-09-13T21:59:10.966 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../089-python3-websocket_1.2.3-1_all.deb ... 2024-09-13T21:59:11.004 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-websocket (1.2.3-1) ... 2024-09-13T21:59:11.254 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package xmlstarlet. 2024-09-13T21:59:11.270 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../096-xmlstarlet_1.6.1-2.1_amd64.deb ... 2024-09-13T21:59:11.312 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking xmlstarlet (1.6.1-2.1) ... 2024-09-13T21:59:11.325 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-kubernetes. 2024-09-13T21:59:11.352 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../090-python3-kubernetes_12.0.1-1ubuntu1_all.deb ... 2024-09-13T21:59:11.391 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-kubernetes (12.0.1-1ubuntu1) ... 2024-09-13T21:59:11.436 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package ceph-volume. 2024-09-13T21:59:11.464 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../098-ceph-volume_19.1.1-324-gecab7be5-1jammy_all.deb ... 2024-09-13T21:59:11.502 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking ceph-volume (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:11.791 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package ceph-test. 2024-09-13T21:59:11.807 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../097-ceph-test_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:59:11.849 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking ceph-test (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:11.874 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package libcephfs-dev. 2024-09-13T21:59:11.890 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../099-libcephfs-dev_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:59:11.932 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking libcephfs-dev (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:12.021 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package ceph-mgr-k8sevents. 2024-09-13T21:59:12.038 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../091-ceph-mgr-k8sevents_19.1.1-324-gecab7be5-1jammy_all.deb ... 2024-09-13T21:59:12.088 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking ceph-mgr-k8sevents (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:12.243 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package lua-socket:amd64. 2024-09-13T21:59:12.271 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../100-lua-socket_3.0~rc1+git+ac3201d-6_amd64.deb ... 2024-09-13T21:59:12.310 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-09-13T21:59:12.416 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package libonig5:amd64. 2024-09-13T21:59:12.444 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../092-libonig5_6.9.7.1-2build1_amd64.deb ... 2024-09-13T21:59:12.483 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking libonig5:amd64 (6.9.7.1-2build1) ... 2024-09-13T21:59:12.641 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package lua-sec:amd64. 2024-09-13T21:59:12.668 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../101-lua-sec_1.0.2-1_amd64.deb ... 2024-09-13T21:59:12.707 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking lua-sec:amd64 (1.0.2-1) ... 2024-09-13T21:59:12.819 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package libjq1:amd64. 2024-09-13T21:59:12.847 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../093-libjq1_1.6-2.1ubuntu3_amd64.deb ... 2024-09-13T21:59:12.885 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-09-13T21:59:13.070 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package nvme-cli. 2024-09-13T21:59:13.098 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../102-nvme-cli_1.16-3ubuntu0.3_amd64.deb ... 2024-09-13T21:59:13.130 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package jq. 2024-09-13T21:59:13.136 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking nvme-cli (1.16-3ubuntu0.3) ... 2024-09-13T21:59:13.146 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../094-jq_1.6-2.1ubuntu3_amd64.deb ... 2024-09-13T21:59:13.188 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking jq (1.6-2.1ubuntu3) ... 2024-09-13T21:59:13.457 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package socat. 2024-09-13T21:59:13.485 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../095-socat_1.7.4.1-3ubuntu4_amd64.deb ... 2024-09-13T21:59:13.524 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking socat (1.7.4.1-3ubuntu4) ... 2024-09-13T21:59:13.534 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package pkg-config. 2024-09-13T21:59:13.562 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../103-pkg-config_0.29.2-1ubuntu3_amd64.deb ... 2024-09-13T21:59:13.601 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking pkg-config (0.29.2-1ubuntu3) ... 2024-09-13T21:59:13.835 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package xmlstarlet. 2024-09-13T21:59:13.852 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../096-xmlstarlet_1.6.1-2.1_amd64.deb ... 2024-09-13T21:59:13.871 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python-asyncssh-doc. 2024-09-13T21:59:13.887 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../104-python-asyncssh-doc_2.5.0-1_all.deb ... 2024-09-13T21:59:13.893 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking xmlstarlet (1.6.1-2.1) ... 2024-09-13T21:59:13.929 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python-asyncssh-doc (2.5.0-1) ... 2024-09-13T21:59:14.162 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package ceph-volume. 2024-09-13T21:59:14.189 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../098-ceph-volume_19.1.1-324-gecab7be5-1jammy_all.deb ... 2024-09-13T21:59:14.228 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking ceph-volume (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:14.256 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package ceph-test. 2024-09-13T21:59:14.285 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../097-ceph-test_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:59:14.323 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking ceph-test (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:14.341 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-iniconfig. 2024-09-13T21:59:14.372 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../105-python3-iniconfig_1.1.1-2_all.deb ... 2024-09-13T21:59:14.408 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-iniconfig (1.1.1-2) ... 2024-09-13T21:59:14.507 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package libcephfs-dev. 2024-09-13T21:59:14.523 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../099-libcephfs-dev_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:59:14.557 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking libcephfs-dev (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:14.711 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-pastescript. 2024-09-13T21:59:14.739 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../106-python3-pastescript_2.0.2-4_all.deb ... 2024-09-13T21:59:14.798 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-pastescript (2.0.2-4) ... 2024-09-13T21:59:14.876 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package lua-socket:amd64. 2024-09-13T21:59:14.904 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../100-lua-socket_3.0~rc1+git+ac3201d-6_amd64.deb ... 2024-09-13T21:59:14.942 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-09-13T21:59:15.090 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-pluggy. 2024-09-13T21:59:15.118 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../107-python3-pluggy_0.13.0-7.1_all.deb ... 2024-09-13T21:59:15.156 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-pluggy (0.13.0-7.1) ... 2024-09-13T21:59:15.468 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-psutil. 2024-09-13T21:59:15.496 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../108-python3-psutil_5.9.0-1build1_amd64.deb ... 2024-09-13T21:59:15.530 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package lua-sec:amd64. 2024-09-13T21:59:15.534 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-psutil (5.9.0-1build1) ... 2024-09-13T21:59:15.558 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../101-lua-sec_1.0.2-1_amd64.deb ... 2024-09-13T21:59:15.597 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking lua-sec:amd64 (1.0.2-1) ... 2024-09-13T21:59:15.880 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-py. 2024-09-13T21:59:15.908 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../109-python3-py_1.10.0-1_all.deb ... 2024-09-13T21:59:15.909 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package nvme-cli. 2024-09-13T21:59:15.937 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../102-nvme-cli_1.16-3ubuntu0.3_amd64.deb ... 2024-09-13T21:59:15.946 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-py (1.10.0-1) ... 2024-09-13T21:59:15.975 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking nvme-cli (1.16-3ubuntu0.3) ... 2024-09-13T21:59:16.250 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-pygments. 2024-09-13T21:59:16.278 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../110-python3-pygments_2.11.2+dfsg-2_all.deb ... 2024-09-13T21:59:16.317 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-pygments (2.11.2+dfsg-2) ... 2024-09-13T21:59:16.380 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package pkg-config. 2024-09-13T21:59:16.397 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../103-pkg-config_0.29.2-1ubuntu3_amd64.deb ... 2024-09-13T21:59:16.430 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking pkg-config (0.29.2-1ubuntu3) ... 2024-09-13T21:59:16.685 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python-asyncssh-doc. 2024-09-13T21:59:16.713 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../104-python-asyncssh-doc_2.5.0-1_all.deb ... 2024-09-13T21:59:16.752 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python-asyncssh-doc (2.5.0-1) ... 2024-09-13T21:59:16.781 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-pyinotify. 2024-09-13T21:59:16.809 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../111-python3-pyinotify_0.9.6-1.3_all.deb ... 2024-09-13T21:59:16.847 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-pyinotify (0.9.6-1.3) ... 2024-09-13T21:59:16.877 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package ceph-volume. 2024-09-13T21:59:16.906 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../098-ceph-volume_19.1.1-324-gecab7be5-1jammy_all.deb ... 2024-09-13T21:59:16.943 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking ceph-volume (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:17.142 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-toml. 2024-09-13T21:59:17.170 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../112-python3-toml_0.10.2-1_all.deb ... 2024-09-13T21:59:17.172 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-iniconfig. 2024-09-13T21:59:17.199 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../105-python3-iniconfig_1.1.1-2_all.deb ... 2024-09-13T21:59:17.208 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-toml (0.10.2-1) ... 2024-09-13T21:59:17.238 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-iniconfig (1.1.1-2) ... 2024-09-13T21:59:17.481 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package libcephfs-dev. 2024-09-13T21:59:17.498 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../099-libcephfs-dev_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:59:17.511 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-pytest. 2024-09-13T21:59:17.539 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking libcephfs-dev (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:17.539 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../113-python3-pytest_6.2.5-1ubuntu2_all.deb ... 2024-09-13T21:59:17.541 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-pastescript. 2024-09-13T21:59:17.569 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../106-python3-pastescript_2.0.2-4_all.deb ... 2024-09-13T21:59:17.578 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-pytest (6.2.5-1ubuntu2) ... 2024-09-13T21:59:17.616 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-pastescript (2.0.2-4) ... 2024-09-13T21:59:17.817 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package lua-socket:amd64. 2024-09-13T21:59:17.834 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../100-lua-socket_3.0~rc1+git+ac3201d-6_amd64.deb ... 2024-09-13T21:59:17.867 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-09-13T21:59:17.924 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package python3-simplejson. 2024-09-13T21:59:17.945 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-pluggy. 2024-09-13T21:59:17.952 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../114-python3-simplejson_3.17.6-1build1_amd64.deb ... 2024-09-13T21:59:17.972 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../107-python3-pluggy_0.13.0-7.1_all.deb ... 2024-09-13T21:59:17.990 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking python3-simplejson (3.17.6-1build1) ... 2024-09-13T21:59:18.011 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-pluggy (0.13.0-7.1) ... 2024-09-13T21:59:18.188 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package lua-sec:amd64. 2024-09-13T21:59:18.216 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../101-lua-sec_1.0.2-1_amd64.deb ... 2024-09-13T21:59:18.256 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking lua-sec:amd64 (1.0.2-1) ... 2024-09-13T21:59:18.268 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package qttranslations5-l10n. 2024-09-13T21:59:18.297 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../115-qttranslations5-l10n_5.15.3-1_all.deb ... 2024-09-13T21:59:18.297 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-psutil. 2024-09-13T21:59:18.325 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../108-python3-psutil_5.9.0-1build1_amd64.deb ... 2024-09-13T21:59:18.326 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking qttranslations5-l10n (5.15.3-1) ... 2024-09-13T21:59:18.364 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-psutil (5.9.0-1build1) ... 2024-09-13T21:59:18.617 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package nvme-cli. 2024-09-13T21:59:18.645 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../102-nvme-cli_1.16-3ubuntu0.3_amd64.deb ... 2024-09-13T21:59:18.683 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking nvme-cli (1.16-3ubuntu0.3) ... 2024-09-13T21:59:18.700 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-py. 2024-09-13T21:59:18.728 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../109-python3-py_1.10.0-1_all.deb ... 2024-09-13T21:59:18.767 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-py (1.10.0-1) ... 2024-09-13T21:59:19.077 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package radosgw. 2024-09-13T21:59:19.087 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-pygments. 2024-09-13T21:59:19.088 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package pkg-config. 2024-09-13T21:59:19.102 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../116-radosgw_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:59:19.114 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../110-python3-pygments_2.11.2+dfsg-2_all.deb ... 2024-09-13T21:59:19.117 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../103-pkg-config_0.29.2-1ubuntu3_amd64.deb ... 2024-09-13T21:59:19.139 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking radosgw (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:19.153 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-pygments (2.11.2+dfsg-2) ... 2024-09-13T21:59:19.155 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking pkg-config (0.29.2-1ubuntu3) ... 2024-09-13T21:59:19.391 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python-asyncssh-doc. 2024-09-13T21:59:19.408 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../104-python-asyncssh-doc_2.5.0-1_all.deb ... 2024-09-13T21:59:19.450 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python-asyncssh-doc (2.5.0-1) ... 2024-09-13T21:59:19.674 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-pyinotify. 2024-09-13T21:59:19.702 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../111-python3-pyinotify_0.9.6-1.3_all.deb ... 2024-09-13T21:59:19.741 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-pyinotify (0.9.6-1.3) ... 2024-09-13T21:59:19.852 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-iniconfig. 2024-09-13T21:59:19.869 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../105-python3-iniconfig_1.1.1-2_all.deb ... 2024-09-13T21:59:19.911 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-iniconfig (1.1.1-2) ... 2024-09-13T21:59:19.976 INFO:teuthology.orchestra.run.smithi138.stdout:Selecting previously unselected package rbd-fuse. 2024-09-13T21:59:19.992 INFO:teuthology.orchestra.run.smithi138.stdout:Preparing to unpack .../117-rbd-fuse_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:59:20.026 INFO:teuthology.orchestra.run.smithi138.stdout:Unpacking rbd-fuse (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:20.052 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-toml. 2024-09-13T21:59:20.080 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../112-python3-toml_0.10.2-1_all.deb ... 2024-09-13T21:59:20.118 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-toml (0.10.2-1) ... 2024-09-13T21:59:20.214 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-pastescript. 2024-09-13T21:59:20.242 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../106-python3-pastescript_2.0.2-4_all.deb ... 2024-09-13T21:59:20.280 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-pastescript (2.0.2-4) ... 2024-09-13T21:59:20.323 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-iniconfig (1.1.1-2) ... 2024-09-13T21:59:20.422 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-pytest. 2024-09-13T21:59:20.449 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../113-python3-pytest_6.2.5-1ubuntu2_all.deb ... 2024-09-13T21:59:20.488 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-pytest (6.2.5-1ubuntu2) ... 2024-09-13T21:59:20.591 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up libdouble-conversion3:amd64 (3.1.7-4) ... 2024-09-13T21:59:20.600 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-pluggy. 2024-09-13T21:59:20.629 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../107-python3-pluggy_0.13.0-7.1_all.deb ... 2024-09-13T21:59:20.667 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-pluggy (0.13.0-7.1) ... 2024-09-13T21:59:20.722 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up nvme-cli (1.16-3ubuntu0.3) ... 2024-09-13T21:59:20.817 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package python3-simplejson. 2024-09-13T21:59:20.845 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../114-python3-simplejson_3.17.6-1build1_amd64.deb ... 2024-09-13T21:59:20.883 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking python3-simplejson (3.17.6-1build1) ... 2024-09-13T21:59:20.972 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-09-13T21:59:20.978 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-psutil. 2024-09-13T21:59:21.006 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../108-python3-psutil_5.9.0-1build1_amd64.deb ... 2024-09-13T21:59:21.044 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-psutil (5.9.0-1build1) ... 2024-09-13T21:59:21.128 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package qttranslations5-l10n. 2024-09-13T21:59:21.155 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../115-qttranslations5-l10n_5.15.3-1_all.deb ... 2024-09-13T21:59:21.194 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking qttranslations5-l10n (5.15.3-1) ... 2024-09-13T21:59:21.284 INFO:teuthology.orchestra.run.smithi138.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmf-autoconnect.service -> /lib/systemd/system/nvmf-autoconnect.service. 2024-09-13T21:59:21.389 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-py. 2024-09-13T21:59:21.417 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../109-python3-py_1.10.0-1_all.deb ... 2024-09-13T21:59:21.494 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-py (1.10.0-1) ... 2024-09-13T21:59:21.667 INFO:teuthology.orchestra.run.smithi138.stdout:nvmf-connect.target is a disabled or a static unit, not starting it. 2024-09-13T21:59:21.736 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up cephadm (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:21.826 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-pygments. 2024-09-13T21:59:21.854 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../110-python3-pygments_2.11.2+dfsg-2_all.deb ... 2024-09-13T21:59:21.892 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-pygments (2.11.2+dfsg-2) ... 2024-09-13T21:59:21.940 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package radosgw. 2024-09-13T21:59:21.968 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../116-radosgw_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:59:22.006 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking radosgw (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:22.186 INFO:teuthology.orchestra.run.smithi138.stdout:Adding system user cephadm....done 2024-09-13T21:59:22.326 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-waitress (1.4.4-1.1ubuntu1) ... 2024-09-13T21:59:22.338 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-pyinotify. 2024-09-13T21:59:22.366 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../111-python3-pyinotify_0.9.6-1.3_all.deb ... 2024-09-13T21:59:22.396 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-pyinotify (0.9.6-1.3) ... 2024-09-13T21:59:22.611 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-jaraco.classes (3.2.1-3) ... 2024-09-13T21:59:22.716 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-toml. 2024-09-13T21:59:22.744 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../112-python3-toml_0.10.2-1_all.deb ... 2024-09-13T21:59:22.782 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-toml (0.10.2-1) ... 2024-09-13T21:59:22.818 INFO:teuthology.orchestra.run.smithi096.stdout:Selecting previously unselected package rbd-fuse. 2024-09-13T21:59:22.834 INFO:teuthology.orchestra.run.smithi096.stdout:Preparing to unpack .../117-rbd-fuse_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:59:22.863 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python-asyncssh-doc (2.5.0-1) ... 2024-09-13T21:59:22.901 INFO:teuthology.orchestra.run.smithi096.stdout:Unpacking rbd-fuse (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:23.006 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-jaraco.functools (3.4.0-2) ... 2024-09-13T21:59:23.085 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-pytest. 2024-09-13T21:59:23.114 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../113-python3-pytest_6.2.5-1ubuntu2_all.deb ... 2024-09-13T21:59:23.151 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-pytest (6.2.5-1ubuntu2) ... 2024-09-13T21:59:23.197 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-iniconfig (1.1.1-2) ... 2024-09-13T21:59:23.265 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-repoze.lru (0.7-2) ... 2024-09-13T21:59:23.448 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up libdouble-conversion3:amd64 (3.1.7-4) ... 2024-09-13T21:59:23.480 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package python3-simplejson. 2024-09-13T21:59:23.509 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../114-python3-simplejson_3.17.6-1build1_amd64.deb ... 2024-09-13T21:59:23.525 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up liboath0:amd64 (2.6.7-3build1) ... 2024-09-13T21:59:23.547 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking python3-simplejson (3.17.6-1build1) ... 2024-09-13T21:59:23.583 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up nvme-cli (1.16-3ubuntu0.3) ... 2024-09-13T21:59:23.643 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-py (1.10.0-1) ... 2024-09-13T21:59:23.825 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package qttranslations5-l10n. 2024-09-13T21:59:23.842 INFO:teuthology.orchestra.run.smithi096.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service -> /lib/systemd/system/nvmefc-boot-connections.service. 2024-09-13T21:59:23.853 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../115-qttranslations5-l10n_5.15.3-1_all.deb ... 2024-09-13T21:59:23.891 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking qttranslations5-l10n (5.15.3-1) ... 2024-09-13T21:59:23.928 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-joblib (0.17.0-4ubuntu1) ... 2024-09-13T21:59:24.179 INFO:teuthology.orchestra.run.smithi096.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmf-autoconnect.service -> /lib/systemd/system/nvmf-autoconnect.service. 2024-09-13T21:59:24.297 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-cachetools (5.0.0-1) ... 2024-09-13T21:59:24.557 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-openssl (21.0.0-1) ... 2024-09-13T21:59:24.603 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package radosgw. 2024-09-13T21:59:24.620 INFO:teuthology.orchestra.run.smithi096.stdout:nvmf-connect.target is a disabled or a static unit, not starting it. 2024-09-13T21:59:24.632 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../116-radosgw_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:59:24.669 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking radosgw (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:24.693 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up cephadm (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:24.825 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up unzip (6.0-26ubuntu3.2) ... 2024-09-13T21:59:25.060 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-bcrypt (3.2.0-1build1) ... 2024-09-13T21:59:25.176 INFO:teuthology.orchestra.run.smithi096.stdout:Adding system user cephadm....done 2024-09-13T21:59:25.320 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-pyinotify (0.9.6-1.3) ... 2024-09-13T21:59:25.324 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-waitress (1.4.4-1.1ubuntu1) ... 2024-09-13T21:59:25.580 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-threadpoolctl (3.1.0-1) ... 2024-09-13T21:59:25.592 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-jaraco.classes (3.2.1-3) ... 2024-09-13T21:59:25.606 INFO:teuthology.orchestra.run.smithi031.stdout:Selecting previously unselected package rbd-fuse. 2024-09-13T21:59:25.635 INFO:teuthology.orchestra.run.smithi031.stdout:Preparing to unpack .../117-rbd-fuse_19.1.1-324-gecab7be5-1jammy_amd64.deb ... 2024-09-13T21:59:25.664 INFO:teuthology.orchestra.run.smithi031.stdout:Unpacking rbd-fuse (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:25.839 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-ceph-argparse (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:25.844 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python-asyncssh-doc (2.5.0-1) ... 2024-09-13T21:59:25.953 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-jaraco.functools (3.4.0-2) ... 2024-09-13T21:59:25.953 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-iniconfig (1.1.1-2) ... 2024-09-13T21:59:26.132 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-09-13T21:59:26.187 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-repoze.lru (0.7-2) ... 2024-09-13T21:59:26.259 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-09-13T21:59:26.277 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up libdouble-conversion3:amd64 (3.1.7-4) ... 2024-09-13T21:59:26.368 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up libreadline-dev:amd64 (8.1.2-1) ... 2024-09-13T21:59:26.395 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up nvme-cli (1.16-3ubuntu0.3) ... 2024-09-13T21:59:26.472 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up liboath0:amd64 (2.6.7-3build1) ... 2024-09-13T21:59:26.486 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-markupsafe (2.0.1-2build1) ... 2024-09-13T21:59:26.598 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-py (1.10.0-1) ... 2024-09-13T21:59:26.642 INFO:teuthology.orchestra.run.smithi031.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service -> /lib/systemd/system/nvmefc-boot-connections.service. 2024-09-13T21:59:26.746 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up lua5.1 (5.1.5-8.1build4) ... 2024-09-13T21:59:26.925 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-joblib (0.17.0-4ubuntu1) ... 2024-09-13T21:59:26.989 INFO:teuthology.orchestra.run.smithi031.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmf-autoconnect.service -> /lib/systemd/system/nvmf-autoconnect.service. 2024-09-13T21:59:27.147 INFO:teuthology.orchestra.run.smithi138.stdout:update-alternatives: using /usr/bin/lua5.1 to provide /usr/bin/lua (lua-interpreter) in auto mode 2024-09-13T21:59:27.194 INFO:teuthology.orchestra.run.smithi138.stdout:update-alternatives: using /usr/bin/luac5.1 to provide /usr/bin/luac (lua-compiler) in auto mode 2024-09-13T21:59:27.259 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-09-13T21:59:27.285 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-cachetools (5.0.0-1) ... 2024-09-13T21:59:27.368 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-psutil (5.9.0-1build1) ... 2024-09-13T21:59:27.453 INFO:teuthology.orchestra.run.smithi031.stdout:nvmf-connect.target is a disabled or a static unit, not starting it. 2024-09-13T21:59:27.528 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-openssl (21.0.0-1) ... 2024-09-13T21:59:27.719 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-09-13T21:59:27.731 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up cephadm (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:27.796 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up unzip (6.0-26ubuntu3.2) ... 2024-09-13T21:59:27.845 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-natsort (8.0.2-1) ... 2024-09-13T21:59:28.039 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-bcrypt (3.2.0-1build1) ... 2024-09-13T21:59:28.105 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-routes (2.5.1-1ubuntu1) ... 2024-09-13T21:59:28.248 INFO:teuthology.orchestra.run.smithi031.stdout:Adding system user cephadm....done 2024-09-13T21:59:28.292 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-pyinotify (0.9.6-1.3) ... 2024-09-13T21:59:28.373 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-simplejson (3.17.6-1build1) ... 2024-09-13T21:59:28.380 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-waitress (1.4.4-1.1ubuntu1) ... 2024-09-13T21:59:28.559 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-threadpoolctl (3.1.0-1) ... 2024-09-13T21:59:28.656 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-jaraco.classes (3.2.1-3) ... 2024-09-13T21:59:28.674 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up zip (3.0-12build2) ... 2024-09-13T21:59:28.784 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-pygments (2.11.2+dfsg-2) ... 2024-09-13T21:59:28.818 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-ceph-argparse (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:28.924 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python-asyncssh-doc (2.5.0-1) ... 2024-09-13T21:59:29.050 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-jaraco.functools (3.4.0-2) ... 2024-09-13T21:59:29.169 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-09-13T21:59:29.270 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-09-13T21:59:29.318 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-repoze.lru (0.7-2) ... 2024-09-13T21:59:29.396 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up libreadline-dev:amd64 (8.1.2-1) ... 2024-09-13T21:59:29.470 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-tempita (0.5.2-6ubuntu1) ... 2024-09-13T21:59:29.522 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-markupsafe (2.0.1-2build1) ... 2024-09-13T21:59:29.569 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up liboath0:amd64 (2.6.7-3build1) ... 2024-09-13T21:59:29.711 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-py (1.10.0-1) ... 2024-09-13T21:59:29.729 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python-pastedeploy-tpl (2.1.1-1) ... 2024-09-13T21:59:29.806 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up lua5.1 (5.1.5-8.1build4) ... 2024-09-13T21:59:29.856 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up qttranslations5-l10n (5.15.3-1) ... 2024-09-13T21:59:29.982 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-wcwidth (0.2.5+dfsg1-1) ... 2024-09-13T21:59:30.015 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-joblib (0.17.0-4ubuntu1) ... 2024-09-13T21:59:30.190 INFO:teuthology.orchestra.run.smithi096.stdout:update-alternatives: using /usr/bin/lua5.1 to provide /usr/bin/lua (lua-interpreter) in auto mode 2024-09-13T21:59:30.222 INFO:teuthology.orchestra.run.smithi096.stdout:update-alternatives: using /usr/bin/luac5.1 to provide /usr/bin/luac (lua-compiler) in auto mode 2024-09-13T21:59:30.275 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-asyncssh (2.5.0-1) ... 2024-09-13T21:59:30.276 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-09-13T21:59:30.384 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-cachetools (5.0.0-1) ... 2024-09-13T21:59:30.386 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-psutil (5.9.0-1build1) ... 2024-09-13T21:59:30.643 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-openssl (21.0.0-1) ... 2024-09-13T21:59:30.660 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-09-13T21:59:30.729 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-09-13T21:59:30.911 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-paste (3.5.0+dfsg1-1) ... 2024-09-13T21:59:30.919 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up unzip (6.0-26ubuntu3.2) ... 2024-09-13T21:59:31.147 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-natsort (8.0.2-1) ... 2024-09-13T21:59:31.237 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-bcrypt (3.2.0-1build1) ... 2024-09-13T21:59:31.296 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-09-13T21:59:31.464 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-routes (2.5.1-1ubuntu1) ... 2024-09-13T21:59:31.496 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-pyinotify (0.9.6-1.3) ... 2024-09-13T21:59:31.589 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.2) ... 2024-09-13T21:59:31.724 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-simplejson (3.17.6-1build1) ... 2024-09-13T21:59:31.831 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-threadpoolctl (3.1.0-1) ... 2024-09-13T21:59:31.941 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-jaraco.text (3.6.0-2) ... 2024-09-13T21:59:32.025 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up zip (3.0-12build2) ... 2024-09-13T21:59:32.090 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-ceph-argparse (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:32.151 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-pygments (2.11.2+dfsg-2) ... 2024-09-13T21:59:32.201 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up socat (1.7.4.1-3ubuntu4) ... 2024-09-13T21:59:32.311 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-ceph-common (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:32.358 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-09-13T21:59:32.484 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-09-13T21:59:32.610 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up libreadline-dev:amd64 (8.1.2-1) ... 2024-09-13T21:59:32.629 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-idna (3.3-1ubuntu0.1) ... 2024-09-13T21:59:32.820 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-tempita (0.5.2-6ubuntu1) ... 2024-09-13T21:59:32.833 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-markupsafe (2.0.1-2build1) ... 2024-09-13T21:59:32.964 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-sklearn (0.23.2-5ubuntu6) ... 2024-09-13T21:59:33.113 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python-pastedeploy-tpl (2.1.1-1) ... 2024-09-13T21:59:33.238 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up qttranslations5-l10n (5.15.3-1) ... 2024-09-13T21:59:33.320 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up lua5.1 (5.1.5-8.1build4) ... 2024-09-13T21:59:33.364 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-wcwidth (0.2.5+dfsg1-1) ... 2024-09-13T21:59:33.674 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-asyncssh (2.5.0-1) ... 2024-09-13T21:59:33.784 INFO:teuthology.orchestra.run.smithi031.stdout:update-alternatives: using /usr/bin/lua5.1 to provide /usr/bin/lua (lua-interpreter) in auto mode 2024-09-13T21:59:33.835 INFO:teuthology.orchestra.run.smithi031.stdout:update-alternatives: using /usr/bin/luac5.1 to provide /usr/bin/luac (lua-compiler) in auto mode 2024-09-13T21:59:33.898 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-09-13T21:59:34.033 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-psutil (5.9.0-1build1) ... 2024-09-13T21:59:34.100 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-09-13T21:59:34.153 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up pkg-config (0.29.2-1ubuntu3) ... 2024-09-13T21:59:34.343 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-paste (3.5.0+dfsg1-1) ... 2024-09-13T21:59:34.397 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-13T21:59:34.417 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-09-13T21:59:34.532 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-toml (0.10.2-1) ... 2024-09-13T21:59:34.543 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-natsort (8.0.2-1) ... 2024-09-13T21:59:34.703 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-09-13T21:59:34.792 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up librdkafka1:amd64 (1.8.0-1build1) ... 2024-09-13T21:59:34.819 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-routes (2.5.1-1ubuntu1) ... 2024-09-13T21:59:34.901 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up xmlstarlet (1.6.1-2.1) ... 2024-09-13T21:59:34.987 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.2) ... 2024-09-13T21:59:35.027 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-13T21:59:35.070 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-simplejson (3.17.6-1build1) ... 2024-09-13T21:59:35.321 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-pluggy (0.13.0-7.1) ... 2024-09-13T21:59:35.330 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-jaraco.text (3.6.0-2) ... 2024-09-13T21:59:35.371 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up zip (3.0-12build2) ... 2024-09-13T21:59:35.497 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-pygments (2.11.2+dfsg-2) ... 2024-09-13T21:59:35.584 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-zc.lockfile (2.0-1) ... 2024-09-13T21:59:35.584 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up socat (1.7.4.1-3ubuntu4) ... 2024-09-13T21:59:35.708 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-ceph-common (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:35.832 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-13T21:59:35.958 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-pyasn1 (0.4.8-1) ... 2024-09-13T21:59:36.001 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-idna (3.3-1ubuntu0.1) ... 2024-09-13T21:59:36.232 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-tempita (0.5.2-6ubuntu1) ... 2024-09-13T21:59:36.260 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-singledispatch (3.4.0.3-3) ... 2024-09-13T21:59:36.310 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-sklearn (0.23.2-5ubuntu6) ... 2024-09-13T21:59:36.492 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python-pastedeploy-tpl (2.1.1-1) ... 2024-09-13T21:59:36.519 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-logutils (0.3.3-8) ... 2024-09-13T21:59:36.617 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up qttranslations5-l10n (5.15.3-1) ... 2024-09-13T21:59:36.743 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-wcwidth (0.2.5+dfsg1-1) ... 2024-09-13T21:59:36.779 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-tempora (4.1.2-1) ... 2024-09-13T21:59:37.036 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-asyncssh (2.5.0-1) ... 2024-09-13T21:59:37.039 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-simplegeneric (0.8.1-3) ... 2024-09-13T21:59:37.290 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-prettytable (2.5.0-2) ... 2024-09-13T21:59:37.437 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-09-13T21:59:37.466 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up pkg-config (0.29.2-1ubuntu3) ... 2024-09-13T21:59:37.575 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-09-13T21:59:37.688 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-paste (3.5.0+dfsg1-1) ... 2024-09-13T21:59:37.692 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-websocket (1.2.3-1) ... 2024-09-13T21:59:37.693 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-13T21:59:37.810 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-toml (0.10.2-1) ... 2024-09-13T21:59:37.977 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up libonig5:amd64 (6.9.7.1-2build1) ... 2024-09-13T21:59:38.079 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up librdkafka1:amd64 (1.8.0-1build1) ... 2024-09-13T21:59:38.081 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-09-13T21:59:38.104 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-09-13T21:59:38.205 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up xmlstarlet (1.6.1-2.1) ... 2024-09-13T21:59:38.330 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-13T21:59:38.375 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.2) ... 2024-09-13T21:59:38.405 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-webob (1:1.8.6-1.1ubuntu0.1) ... 2024-09-13T21:59:38.632 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-pluggy (0.13.0-7.1) ... 2024-09-13T21:59:38.708 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-jaraco.collections (3.4.0-2) ... 2024-09-13T21:59:38.742 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-jaraco.text (3.6.0-2) ... 2024-09-13T21:59:38.892 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-zc.lockfile (2.0-1) ... 2024-09-13T21:59:38.958 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-09-13T21:59:38.993 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up socat (1.7.4.1-3ubuntu4) ... 2024-09-13T21:59:39.059 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up lua-sec:amd64 (1.0.2-1) ... 2024-09-13T21:59:39.103 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-ceph-common (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:39.134 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-13T21:59:39.185 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-babel (2.8.0+dfsg.1-7) ... 2024-09-13T21:59:39.235 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-pyasn1 (0.4.8-1) ... 2024-09-13T21:59:39.275 INFO:teuthology.orchestra.run.smithi138.stdout:update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode 2024-09-13T21:59:39.387 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-idna (3.3-1ubuntu0.1) ... 2024-09-13T21:59:39.512 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-09-13T21:59:39.562 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-singledispatch (3.4.0.3-3) ... 2024-09-13T21:59:39.639 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-pytest (6.2.5-1ubuntu2) ... 2024-09-13T21:59:39.705 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-sklearn (0.23.2-5ubuntu6) ... 2024-09-13T21:59:39.821 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-logutils (0.3.3-8) ... 2024-09-13T21:59:40.032 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-pastedeploy (2.1.1-1) ... 2024-09-13T21:59:40.080 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-tempora (4.1.2-1) ... 2024-09-13T21:59:40.292 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up lua-any (27ubuntu1) ... 2024-09-13T21:59:40.340 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-simplegeneric (0.8.1-3) ... 2024-09-13T21:59:40.393 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-portend (3.0.0-1) ... 2024-09-13T21:59:40.591 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-prettytable (2.5.0-2) ... 2024-09-13T21:59:40.644 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-13T21:59:40.770 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-jinja2 (3.0.3-1ubuntu0.2) ... 2024-09-13T21:59:40.842 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-09-13T21:59:40.869 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up pkg-config (0.29.2-1ubuntu3) ... 2024-09-13T21:59:40.943 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-websocket (1.2.3-1) ... 2024-09-13T21:59:41.095 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-13T21:59:41.097 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-pyasn1-modules (0.2.1-1) ... 2024-09-13T21:59:41.220 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up libonig5:amd64 (6.9.7.1-2build1) ... 2024-09-13T21:59:41.229 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-toml (0.10.2-1) ... 2024-09-13T21:59:41.346 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-09-13T21:59:41.432 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-13T21:59:41.497 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up librdkafka1:amd64 (1.8.0-1build1) ... 2024-09-13T21:59:41.623 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up xmlstarlet (1.6.1-2.1) ... 2024-09-13T21:59:41.638 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-webob (1:1.8.6-1.1ubuntu0.1) ... 2024-09-13T21:59:41.708 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up jq (1.6-2.1ubuntu3) ... 2024-09-13T21:59:41.749 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-13T21:59:41.818 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-rsa (4.8-1) ... 2024-09-13T21:59:41.940 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-jaraco.collections (3.4.0-2) ... 2024-09-13T21:59:42.059 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-pluggy (0.13.0-7.1) ... 2024-09-13T21:59:42.077 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-webtest (2.0.35-1) ... 2024-09-13T21:59:42.199 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-09-13T21:59:42.308 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up lua-sec:amd64 (1.0.2-1) ... 2024-09-13T21:59:42.351 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-zc.lockfile (2.0-1) ... 2024-09-13T21:59:42.361 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-09-13T21:59:42.418 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-babel (2.8.0+dfsg.1-7) ... 2024-09-13T21:59:42.491 INFO:teuthology.orchestra.run.smithi096.stdout:update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode 2024-09-13T21:59:42.603 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-13T21:59:42.712 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-pyasn1 (0.4.8-1) ... 2024-09-13T21:59:42.716 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-cherrypy3 (18.6.1-4) ... 2024-09-13T21:59:42.745 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-09-13T21:59:42.896 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-pytest (6.2.5-1ubuntu2) ... 2024-09-13T21:59:43.021 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-singledispatch (3.4.0.3-3) ... 2024-09-13T21:59:43.093 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-pastescript (2.0.2-4) ... 2024-09-13T21:59:43.280 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-pastedeploy (2.1.1-1) ... 2024-09-13T21:59:43.281 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-logutils (0.3.3-8) ... 2024-09-13T21:59:43.370 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-pecan (1.3.3-4ubuntu2) ... 2024-09-13T21:59:43.540 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up lua-any (27ubuntu1) ... 2024-09-13T21:59:43.549 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-tempora (4.1.2-1) ... 2024-09-13T21:59:43.666 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-portend (3.0.0-1) ... 2024-09-13T21:59:43.731 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-09-13T21:59:43.816 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-simplegeneric (0.8.1-3) ... 2024-09-13T21:59:43.857 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up librados2 (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:43.917 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-13T21:59:43.967 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up libsqlite3-mod-ceph (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:44.018 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-jinja2 (3.0.3-1ubuntu0.2) ... 2024-09-13T21:59:44.076 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-prettytable (2.5.0-2) ... 2024-09-13T21:59:44.085 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up luarocks (3.8.0+dfsg1-1) ... 2024-09-13T21:59:44.336 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-pyasn1-modules (0.2.1-1) ... 2024-09-13T21:59:44.393 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-09-13T21:59:44.438 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up libcephfs2 (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:44.503 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-websocket (1.2.3-1) ... 2024-09-13T21:59:44.565 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up libradosstriper1 (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:44.637 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-13T21:59:44.691 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-google-auth (1.5.1-3) ... 2024-09-13T21:59:44.770 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up libonig5:amd64 (6.9.7.1-2build1) ... 2024-09-13T21:59:44.896 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-09-13T21:59:44.913 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up jq (1.6-2.1ubuntu3) ... 2024-09-13T21:59:44.943 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up librbd1 (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:45.039 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-rsa (4.8-1) ... 2024-09-13T21:59:45.069 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up ceph-mgr-modules-core (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:45.195 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up ceph-fuse (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:45.197 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-webob (1:1.8.6-1.1ubuntu0.1) ... 2024-09-13T21:59:45.324 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-webtest (2.0.35-1) ... 2024-09-13T21:59:45.408 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-09-13T21:59:45.408 INFO:teuthology.orchestra.run.smithi138.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-13T21:59:45.515 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-jaraco.collections (3.4.0-2) ... 2024-09-13T21:59:45.583 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-09-13T21:59:45.774 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-09-13T21:59:45.897 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up libcephfs-dev (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:45.900 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up lua-sec:amd64 (1.0.2-1) ... 2024-09-13T21:59:45.911 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-cherrypy3 (18.6.1-4) ... 2024-09-13T21:59:46.026 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-babel (2.8.0+dfsg.1-7) ... 2024-09-13T21:59:46.048 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-rados (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:46.140 INFO:teuthology.orchestra.run.smithi031.stdout:update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode 2024-09-13T21:59:46.183 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up librgw2 (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:46.288 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-pastescript (2.0.2-4) ... 2024-09-13T21:59:46.326 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-kubernetes (12.0.1-1ubuntu1) ... 2024-09-13T21:59:46.378 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-09-13T21:59:46.487 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-pytest (6.2.5-1ubuntu2) ... 2024-09-13T21:59:46.582 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-pecan (1.3.3-4ubuntu2) ... 2024-09-13T21:59:46.880 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-pastedeploy (2.1.1-1) ... 2024-09-13T21:59:46.926 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-09-13T21:59:47.052 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up librados2 (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:47.148 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up lua-any (27ubuntu1) ... 2024-09-13T21:59:47.178 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up libsqlite3-mod-ceph (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:47.274 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-portend (3.0.0-1) ... 2024-09-13T21:59:47.304 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up luarocks (3.8.0+dfsg1-1) ... 2024-09-13T21:59:47.559 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-13T21:59:47.563 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-rbd (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:47.658 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up libcephfs2 (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:47.684 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-jinja2 (3.0.3-1ubuntu0.2) ... 2024-09-13T21:59:47.699 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up rbd-fuse (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:47.775 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up libradosstriper1 (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:47.809 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-rgw (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:47.876 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-google-auth (1.5.1-3) ... 2024-09-13T21:59:47.927 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up python3-cephfs (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:48.019 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-pyasn1-modules (0.2.1-1) ... 2024-09-13T21:59:48.053 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up ceph-common (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:48.161 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up librbd1 (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:48.287 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up ceph-mgr-modules-core (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:48.345 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-13T21:59:48.413 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up ceph-fuse (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:48.597 INFO:teuthology.orchestra.run.smithi138.stdout:Adding group ceph....done 2024-09-13T21:59:48.604 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up jq (1.6-2.1ubuntu3) ... 2024-09-13T21:59:48.625 INFO:teuthology.orchestra.run.smithi096.stdout:Created symlink /etc/systemd/system/remote-fs.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-13T21:59:48.625 INFO:teuthology.orchestra.run.smithi096.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-13T21:59:48.730 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-rsa (4.8-1) ... 2024-09-13T21:59:48.965 INFO:teuthology.orchestra.run.smithi138.stdout:Adding system user ceph....done 2024-09-13T21:59:49.023 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-webtest (2.0.35-1) ... 2024-09-13T21:59:49.107 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up libcephfs-dev (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:49.134 INFO:teuthology.orchestra.run.smithi138.stdout:Setting system user ceph properties....done 2024-09-13T21:59:49.152 INFO:teuthology.orchestra.run.smithi138.stdout:chown: cannot access '/var/log/ceph/*.log*': No such file or directory 2024-09-13T21:59:49.266 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-rados (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:49.292 INFO:teuthology.orchestra.run.smithi138.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /lib/systemd/system/ceph.target. 2024-09-13T21:59:49.299 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-09-13T21:59:49.392 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up librgw2 (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:49.535 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-kubernetes (12.0.1-1ubuntu1) ... 2024-09-13T21:59:49.590 INFO:teuthology.orchestra.run.smithi138.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/rbdmap.service -> /lib/systemd/system/rbdmap.service. 2024-09-13T21:59:49.643 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-cherrypy3 (18.6.1-4) ... 2024-09-13T21:59:50.037 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-pastescript (2.0.2-4) ... 2024-09-13T21:59:50.039 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up ceph-test (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:50.166 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up radosgw (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:50.330 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-pecan (1.3.3-4ubuntu2) ... 2024-09-13T21:59:50.592 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-09-13T21:59:50.593 INFO:teuthology.orchestra.run.smithi138.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-13T21:59:50.674 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-09-13T21:59:50.765 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-rbd (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:50.800 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up librados2 (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:50.891 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up rbd-fuse (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:50.926 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up libsqlite3-mod-ceph (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:51.000 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-rgw (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:51.018 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up ceph-base (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:51.052 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up luarocks (3.8.0+dfsg1-1) ... 2024-09-13T21:59:51.101 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up python3-cephfs (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:51.219 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up ceph-common (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:51.355 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up libcephfs2 (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:51.375 INFO:teuthology.orchestra.run.smithi138.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service -> /lib/systemd/system/ceph-crash.service. 2024-09-13T21:59:51.498 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up libradosstriper1 (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:51.632 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-google-auth (1.5.1-3) ... 2024-09-13T21:59:51.795 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up ceph-mds (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:51.917 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up librbd1 (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:52.004 INFO:teuthology.orchestra.run.smithi096.stdout:Adding group ceph....done 2024-09-13T21:59:52.031 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-09-13T21:59:52.031 INFO:teuthology.orchestra.run.smithi138.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-13T21:59:52.043 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up ceph-mgr-modules-core (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:52.169 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up ceph-fuse (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:52.355 INFO:teuthology.orchestra.run.smithi096.stdout:Adding system user ceph....done 2024-09-13T21:59:52.388 INFO:teuthology.orchestra.run.smithi031.stdout:Created symlink /etc/systemd/system/remote-fs.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-13T21:59:52.388 INFO:teuthology.orchestra.run.smithi031.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-13T21:59:52.524 INFO:teuthology.orchestra.run.smithi096.stdout:Setting system user ceph properties....done 2024-09-13T21:59:52.542 INFO:teuthology.orchestra.run.smithi096.stdout:chown: cannot access '/var/log/ceph/*.log*': No such file or directory 2024-09-13T21:59:52.675 INFO:teuthology.orchestra.run.smithi096.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /lib/systemd/system/ceph.target. 2024-09-13T21:59:52.903 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up libcephfs-dev (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:52.950 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up ceph-mgr (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:52.976 INFO:teuthology.orchestra.run.smithi096.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/rbdmap.service -> /lib/systemd/system/rbdmap.service. 2024-09-13T21:59:53.029 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-rados (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:53.155 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up librgw2 (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:53.160 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-09-13T21:59:53.160 INFO:teuthology.orchestra.run.smithi138.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-13T21:59:53.281 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-kubernetes (12.0.1-1ubuntu1) ... 2024-09-13T21:59:53.429 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up ceph-test (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:53.555 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up radosgw (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:53.580 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up ceph-osd (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:53.863 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-09-13T21:59:53.863 INFO:teuthology.orchestra.run.smithi138.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-13T21:59:54.032 INFO:teuthology.orchestra.run.smithi096.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-13T21:59:54.033 INFO:teuthology.orchestra.run.smithi096.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-13T21:59:54.290 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up ceph-mgr-k8sevents (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:54.400 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up ceph-mgr-diskprediction-local (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:54.515 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up ceph-base (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:54.518 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-rbd (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:54.551 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up ceph-mon (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:54.619 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up rbd-fuse (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:54.745 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-rgw (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:54.760 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-09-13T21:59:54.760 INFO:teuthology.orchestra.run.smithi138.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-13T21:59:54.833 INFO:teuthology.orchestra.run.smithi096.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service -> /lib/systemd/system/ceph-crash.service. 2024-09-13T21:59:54.871 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up python3-cephfs (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:54.997 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up ceph-common (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:55.227 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up ceph-mgr-cephadm (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:55.259 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up ceph-mds (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:55.387 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up ceph (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:55.489 INFO:teuthology.orchestra.run.smithi096.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-13T21:59:55.489 INFO:teuthology.orchestra.run.smithi096.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-13T21:59:55.530 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up ceph-mgr-dashboard (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:55.548 INFO:teuthology.orchestra.run.smithi031.stdout:Adding group ceph....done 2024-09-13T21:59:55.672 INFO:teuthology.orchestra.run.smithi138.stdout:Setting up ceph-volume (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:55.933 INFO:teuthology.orchestra.run.smithi031.stdout:Adding system user ceph....done 2024-09-13T21:59:55.953 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up ceph-mgr (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:56.101 INFO:teuthology.orchestra.run.smithi031.stdout:Setting system user ceph properties....done 2024-09-13T21:59:56.121 INFO:teuthology.orchestra.run.smithi031.stdout:chown: cannot access '/var/log/ceph/*.log*': No such file or directory 2024-09-13T21:59:56.138 INFO:teuthology.orchestra.run.smithi138.stdout:Processing triggers for mailcap (3.70+nmu1ubuntu1) ... 2024-09-13T21:59:56.158 INFO:teuthology.orchestra.run.smithi096.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-13T21:59:56.158 INFO:teuthology.orchestra.run.smithi096.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-13T21:59:56.266 INFO:teuthology.orchestra.run.smithi031.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /lib/systemd/system/ceph.target. 2024-09-13T21:59:56.371 INFO:teuthology.orchestra.run.smithi138.stdout:Processing triggers for libc-bin (2.35-0ubuntu3.1) ... 2024-09-13T21:59:56.625 INFO:teuthology.orchestra.run.smithi031.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/rbdmap.service -> /lib/systemd/system/rbdmap.service. 2024-09-13T21:59:56.638 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up ceph-osd (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:56.641 INFO:teuthology.orchestra.run.smithi138.stdout:Processing triggers for man-db (2.10.2-1) ... 2024-09-13T21:59:57.041 INFO:teuthology.orchestra.run.smithi096.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-13T21:59:57.041 INFO:teuthology.orchestra.run.smithi096.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-13T21:59:57.072 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up ceph-test (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:57.207 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up radosgw (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:57.541 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up ceph-mgr-k8sevents (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:57.667 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up ceph-mgr-diskprediction-local (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:57.688 INFO:teuthology.orchestra.run.smithi031.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-13T21:59:57.688 INFO:teuthology.orchestra.run.smithi031.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-13T21:59:57.818 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up ceph-mon (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:58.030 INFO:teuthology.orchestra.run.smithi096.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-13T21:59:58.030 INFO:teuthology.orchestra.run.smithi096.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-13T21:59:58.040 INFO:teuthology.orchestra.run.smithi138.stdout:Processing triggers for install-info (6.8-4build1) ... 2024-09-13T21:59:58.171 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up ceph-base (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:58.495 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up ceph-mgr-cephadm (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:58.632 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up ceph (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:58.691 INFO:teuthology.orchestra.run.smithi031.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service -> /lib/systemd/system/ceph-crash.service. 2024-09-13T21:59:58.739 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up ceph-mgr-dashboard (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:58.776 INFO:teuthology.orchestra.run.smithi138.stderr:W: --force-yes is deprecated, use one of the options starting with --allow instead. 2024-09-13T21:59:58.783 DEBUG:teuthology.parallel:result is None 2024-09-13T21:59:58.874 INFO:teuthology.orchestra.run.smithi096.stdout:Setting up ceph-volume (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:59.194 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up ceph-mds (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T21:59:59.218 INFO:teuthology.orchestra.run.smithi096.stdout:Processing triggers for mailcap (3.70+nmu1ubuntu1) ... 2024-09-13T21:59:59.327 INFO:teuthology.orchestra.run.smithi096.stdout:Processing triggers for libc-bin (2.35-0ubuntu3.1) ... 2024-09-13T21:59:59.421 INFO:teuthology.orchestra.run.smithi031.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-13T21:59:59.421 INFO:teuthology.orchestra.run.smithi031.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-13T21:59:59.495 INFO:teuthology.orchestra.run.smithi096.stdout:Processing triggers for man-db (2.10.2-1) ... 2024-09-13T21:59:59.896 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up ceph-mgr (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T22:00:00.113 INFO:teuthology.orchestra.run.smithi031.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-13T22:00:00.113 INFO:teuthology.orchestra.run.smithi031.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-13T22:00:00.264 INFO:teuthology.orchestra.run.smithi096.stdout:Processing triggers for install-info (6.8-4build1) ... 2024-09-13T22:00:00.597 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up ceph-osd (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T22:00:00.884 INFO:teuthology.orchestra.run.smithi031.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-13T22:00:00.884 INFO:teuthology.orchestra.run.smithi031.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-13T22:00:00.885 INFO:teuthology.orchestra.run.smithi096.stderr:W: --force-yes is deprecated, use one of the options starting with --allow instead. 2024-09-13T22:00:00.888 DEBUG:teuthology.parallel:result is None 2024-09-13T22:00:01.407 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up ceph-mgr-k8sevents (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T22:00:01.533 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up ceph-mgr-diskprediction-local (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T22:00:01.793 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up ceph-mon (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T22:00:02.030 INFO:teuthology.orchestra.run.smithi031.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-13T22:00:02.030 INFO:teuthology.orchestra.run.smithi031.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-13T22:00:02.527 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up ceph-mgr-cephadm (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T22:00:02.661 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up ceph (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T22:00:02.787 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up ceph-mgr-dashboard (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T22:00:02.938 INFO:teuthology.orchestra.run.smithi031.stdout:Setting up ceph-volume (19.1.1-324-gecab7be5-1jammy) ... 2024-09-13T22:00:03.299 INFO:teuthology.orchestra.run.smithi031.stdout:Processing triggers for mailcap (3.70+nmu1ubuntu1) ... 2024-09-13T22:00:03.400 INFO:teuthology.orchestra.run.smithi031.stdout:Processing triggers for libc-bin (2.35-0ubuntu3.1) ... 2024-09-13T22:00:03.544 INFO:teuthology.orchestra.run.smithi031.stdout:Processing triggers for man-db (2.10.2-1) ... 2024-09-13T22:00:04.670 INFO:teuthology.orchestra.run.smithi031.stdout:Processing triggers for install-info (6.8-4build1) ... 2024-09-13T22:00:05.348 INFO:teuthology.orchestra.run.smithi031.stderr:W: --force-yes is deprecated, use one of the options starting with --allow instead. 2024-09-13T22:00:05.353 DEBUG:teuthology.parallel:result is None 2024-09-13T22:00:05.354 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=ecab7be58963a5bd03910cd73eef66405d7fdd50 2024-09-13T22:00:05.506 DEBUG:teuthology.orchestra.run.smithi031:> dpkg-query -W -f '${Version}' ceph 2024-09-13T22:00:05.526 INFO:teuthology.orchestra.run.smithi031.stdout:19.1.1-324-gecab7be5-1jammy 2024-09-13T22:00:05.526 INFO:teuthology.packaging:The installed version of ceph is 19.1.1-324-gecab7be5-1jammy 2024-09-13T22:00:05.527 INFO:teuthology.task.install:The correct ceph version 19.1.1-324-gecab7be5-1jammy is installed. 2024-09-13T22:00:05.528 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=ecab7be58963a5bd03910cd73eef66405d7fdd50 2024-09-13T22:00:05.676 DEBUG:teuthology.orchestra.run.smithi096:> dpkg-query -W -f '${Version}' ceph 2024-09-13T22:00:05.695 INFO:teuthology.orchestra.run.smithi096.stdout:19.1.1-324-gecab7be5-1jammy 2024-09-13T22:00:05.695 INFO:teuthology.packaging:The installed version of ceph is 19.1.1-324-gecab7be5-1jammy 2024-09-13T22:00:05.695 INFO:teuthology.task.install:The correct ceph version 19.1.1-324-gecab7be5-1jammy is installed. 2024-09-13T22:00:05.697 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=ecab7be58963a5bd03910cd73eef66405d7fdd50 2024-09-13T22:00:05.842 DEBUG:teuthology.orchestra.run.smithi138:> dpkg-query -W -f '${Version}' ceph 2024-09-13T22:00:05.861 INFO:teuthology.orchestra.run.smithi138.stdout:19.1.1-324-gecab7be5-1jammy 2024-09-13T22:00:05.861 INFO:teuthology.packaging:The installed version of ceph is 19.1.1-324-gecab7be5-1jammy 2024-09-13T22:00:05.861 INFO:teuthology.task.install:The correct ceph version 19.1.1-324-gecab7be5-1jammy is installed. 2024-09-13T22:00:05.863 INFO:teuthology.task.install.util:Shipping valgrind.supp... 2024-09-13T22:00:05.863 DEBUG:teuthology.orchestra.run.smithi031:> set -ex 2024-09-13T22:00:05.863 DEBUG:teuthology.orchestra.run.smithi031:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-13T22:00:05.878 DEBUG:teuthology.orchestra.run.smithi096:> set -ex 2024-09-13T22:00:05.878 DEBUG:teuthology.orchestra.run.smithi096:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-13T22:00:05.892 DEBUG:teuthology.orchestra.run.smithi138:> set -ex 2024-09-13T22:00:05.892 DEBUG:teuthology.orchestra.run.smithi138:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-13T22:00:05.918 INFO:teuthology.task.install.util:Shipping 'daemon-helper'... 2024-09-13T22:00:05.918 DEBUG:teuthology.orchestra.run.smithi031:> set -ex 2024-09-13T22:00:05.918 DEBUG:teuthology.orchestra.run.smithi031:> sudo dd of=/usr/bin/daemon-helper 2024-09-13T22:00:05.934 DEBUG:teuthology.orchestra.run.smithi031:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-13T22:00:05.990 DEBUG:teuthology.orchestra.run.smithi096:> set -ex 2024-09-13T22:00:05.990 DEBUG:teuthology.orchestra.run.smithi096:> sudo dd of=/usr/bin/daemon-helper 2024-09-13T22:00:06.003 DEBUG:teuthology.orchestra.run.smithi096:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-13T22:00:06.058 DEBUG:teuthology.orchestra.run.smithi138:> set -ex 2024-09-13T22:00:06.058 DEBUG:teuthology.orchestra.run.smithi138:> sudo dd of=/usr/bin/daemon-helper 2024-09-13T22:00:06.072 DEBUG:teuthology.orchestra.run.smithi138:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-13T22:00:06.125 INFO:teuthology.task.install.util:Shipping 'adjust-ulimits'... 2024-09-13T22:00:06.125 DEBUG:teuthology.orchestra.run.smithi031:> set -ex 2024-09-13T22:00:06.125 DEBUG:teuthology.orchestra.run.smithi031:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-13T22:00:06.138 DEBUG:teuthology.orchestra.run.smithi031:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-13T22:00:06.193 DEBUG:teuthology.orchestra.run.smithi096:> set -ex 2024-09-13T22:00:06.193 DEBUG:teuthology.orchestra.run.smithi096:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-13T22:00:06.206 DEBUG:teuthology.orchestra.run.smithi096:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-13T22:00:06.261 DEBUG:teuthology.orchestra.run.smithi138:> set -ex 2024-09-13T22:00:06.261 DEBUG:teuthology.orchestra.run.smithi138:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-13T22:00:06.274 DEBUG:teuthology.orchestra.run.smithi138:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-13T22:00:06.328 INFO:teuthology.task.install.util:Shipping 'stdin-killer'... 2024-09-13T22:00:06.328 DEBUG:teuthology.orchestra.run.smithi031:> set -ex 2024-09-13T22:00:06.329 DEBUG:teuthology.orchestra.run.smithi031:> sudo dd of=/usr/bin/stdin-killer 2024-09-13T22:00:06.342 DEBUG:teuthology.orchestra.run.smithi031:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-13T22:00:06.397 DEBUG:teuthology.orchestra.run.smithi096:> set -ex 2024-09-13T22:00:06.398 DEBUG:teuthology.orchestra.run.smithi096:> sudo dd of=/usr/bin/stdin-killer 2024-09-13T22:00:06.411 DEBUG:teuthology.orchestra.run.smithi096:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-13T22:00:06.465 DEBUG:teuthology.orchestra.run.smithi138:> set -ex 2024-09-13T22:00:06.465 DEBUG:teuthology.orchestra.run.smithi138:> sudo dd of=/usr/bin/stdin-killer 2024-09-13T22:00:06.478 DEBUG:teuthology.orchestra.run.smithi138:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-13T22:00:06.532 INFO:teuthology.run_tasks:Running task cephadm... 2024-09-13T22:00:06.631 INFO:tasks.cephadm:Config: {'conf': {'global': {'mon election default strategy': 3}, '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', 'CEPHADM_STRAY_HOST', 'CEPHADM_STRAY_DAEMON', 'CEPHADM_FAILED_DAEMON'], 'log-only-match': ['CEPHADM_'], 'sha1': 'ecab7be58963a5bd03910cd73eef66405d7fdd50'} 2024-09-13T22:00:06.631 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 2024-09-13T22:00:06.632 INFO:tasks.cephadm:Cluster fsid is 89616338-721b-11ef-bceb-c7b262605968 2024-09-13T22:00:06.632 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-09-13T22:00:06.632 INFO:tasks.cephadm:Monitor IPs: {'mon.a': '172.21.15.31', 'mon.b': '172.21.15.96', 'mon.c': '172.21.15.138'} 2024-09-13T22:00:06.632 INFO:tasks.cephadm:First mon is mon.a on smithi031 2024-09-13T22:00:06.632 INFO:tasks.cephadm:First mgr is a 2024-09-13T22:00:06.632 INFO:tasks.cephadm:Normalizing hostnames... 2024-09-13T22:00:06.632 DEBUG:teuthology.orchestra.run.smithi031:> sudo hostname $(hostname -s) 2024-09-13T22:00:06.646 DEBUG:teuthology.orchestra.run.smithi096:> sudo hostname $(hostname -s) 2024-09-13T22:00:06.660 DEBUG:teuthology.orchestra.run.smithi138:> sudo hostname $(hostname -s) 2024-09-13T22:00:06.674 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-09-13T22:00:06.675 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=ecab7be58963a5bd03910cd73eef66405d7fdd50 2024-09-13T22:00:06.828 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': 'ecab7be58963a5bd03910cd73eef66405d7fdd50', '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/56074/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.1.1-324-gecab7be5', 'node_name': '172.21.2.17+braggi17', 'job_name': 'ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=jammy,DIST=jammy,MACHINE_SIZE=gigantic', 'package_manager_version': '19.1.1-324-gecab7be5-1jammy'}, 'url': 'https://1.chacra.ceph.com/r/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default/', 'distro_codename': 'jammy', 'modified': '2024-09-13 19:22:31.141342', 'distro_version': '22.04', 'project': 'ceph', 'flavor': 'default', 'ref': 'squid', 'chacra_url': 'https://1.chacra.ceph.com/repos/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/flavors/default/', 'archs': ['x86_64'], 'distro': 'ubuntu'}] 2024-09-13T22:00:06.973 INFO:tasks.util.chacra:got chacra host 1.chacra.ceph.com, ref squid, sha1 ecab7be58963a5bd03910cd73eef66405d7fdd50 from https://shaman.ceph.com/api/search/?project=ceph&distros=ubuntu%2F22.04%2Fx86_64&flavor=default&sha1=ecab7be58963a5bd03910cd73eef66405d7fdd50 2024-09-13T22:00:06.975 INFO:tasks.cephadm:Discovered cachra url: https://1.chacra.ceph.com/binaries/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/x86_64/flavors/default/cephadm 2024-09-13T22:00:06.975 INFO:tasks.cephadm:Downloading cephadm from url: https://1.chacra.ceph.com/binaries/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/x86_64/flavors/default/cephadm 2024-09-13T22:00:06.975 DEBUG:teuthology.orchestra.run.smithi031:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-13T22:00:07.430 INFO:teuthology.orchestra.run.smithi031.stdout:-rw-rw-r-- 1 ubuntu ubuntu 791838 Sep 13 22:00 /home/ubuntu/cephtest/cephadm 2024-09-13T22:00:07.430 DEBUG:teuthology.orchestra.run.smithi096:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-13T22:00:07.862 INFO:teuthology.orchestra.run.smithi096.stdout:-rw-rw-r-- 1 ubuntu ubuntu 791838 Sep 13 22:00 /home/ubuntu/cephtest/cephadm 2024-09-13T22:00:07.862 DEBUG:teuthology.orchestra.run.smithi138:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/squid/ecab7be58963a5bd03910cd73eef66405d7fdd50/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-13T22:00:08.293 INFO:teuthology.orchestra.run.smithi138.stdout:-rw-rw-r-- 1 ubuntu ubuntu 791838 Sep 13 22:00 /home/ubuntu/cephtest/cephadm 2024-09-13T22:00:08.294 DEBUG:teuthology.orchestra.run.smithi031:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-13T22:00:08.302 DEBUG:teuthology.orchestra.run.smithi096:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-13T22:00:08.310 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-09-13T22:00:08.328 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 on all hosts... 2024-09-13T22:00:08.328 DEBUG:teuthology.orchestra.run.smithi031:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 pull 2024-09-13T22:00:08.347 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 pull 2024-09-13T22:00:08.355 DEBUG:teuthology.orchestra.run.smithi138:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 pull 2024-09-13T22:00:08.533 INFO:teuthology.orchestra.run.smithi031.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50... 2024-09-13T22:00:08.536 INFO:teuthology.orchestra.run.smithi096.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50... 2024-09-13T22:00:08.548 INFO:teuthology.orchestra.run.smithi138.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50... 2024-09-13T22:03:41.975 INFO:teuthology.orchestra.run.smithi096.stdout:{ 2024-09-13T22:03:41.975 INFO:teuthology.orchestra.run.smithi096.stdout: "ceph_version": "ceph version 19.1.1-324-gecab7be5 (ecab7be58963a5bd03910cd73eef66405d7fdd50) squid (stable)", 2024-09-13T22:03:41.975 INFO:teuthology.orchestra.run.smithi096.stdout: "image_id": "0652ff2b5d78add567c2474cd2436ae21ad32722283bcbf25450e33edcd34e34", 2024-09-13T22:03:41.976 INFO:teuthology.orchestra.run.smithi096.stdout: "repo_digests": [ 2024-09-13T22:03:41.976 INFO:teuthology.orchestra.run.smithi096.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b893710f6933dd3672a2a633ce5ac92081563259207d21cd52290129179ca808" 2024-09-13T22:03:41.976 INFO:teuthology.orchestra.run.smithi096.stdout: ] 2024-09-13T22:03:41.976 INFO:teuthology.orchestra.run.smithi096.stdout:} 2024-09-13T22:04:00.564 INFO:teuthology.orchestra.run.smithi031.stdout:{ 2024-09-13T22:04:00.564 INFO:teuthology.orchestra.run.smithi031.stdout: "ceph_version": "ceph version 19.1.1-324-gecab7be5 (ecab7be58963a5bd03910cd73eef66405d7fdd50) squid (stable)", 2024-09-13T22:04:00.565 INFO:teuthology.orchestra.run.smithi031.stdout: "image_id": "0652ff2b5d78add567c2474cd2436ae21ad32722283bcbf25450e33edcd34e34", 2024-09-13T22:04:00.565 INFO:teuthology.orchestra.run.smithi031.stdout: "repo_digests": [ 2024-09-13T22:04:00.565 INFO:teuthology.orchestra.run.smithi031.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b893710f6933dd3672a2a633ce5ac92081563259207d21cd52290129179ca808" 2024-09-13T22:04:00.565 INFO:teuthology.orchestra.run.smithi031.stdout: ] 2024-09-13T22:04:00.565 INFO:teuthology.orchestra.run.smithi031.stdout:} 2024-09-13T22:04:00.994 INFO:teuthology.orchestra.run.smithi138.stdout:{ 2024-09-13T22:04:00.994 INFO:teuthology.orchestra.run.smithi138.stdout: "ceph_version": "ceph version 19.1.1-324-gecab7be5 (ecab7be58963a5bd03910cd73eef66405d7fdd50) squid (stable)", 2024-09-13T22:04:00.995 INFO:teuthology.orchestra.run.smithi138.stdout: "image_id": "0652ff2b5d78add567c2474cd2436ae21ad32722283bcbf25450e33edcd34e34", 2024-09-13T22:04:00.995 INFO:teuthology.orchestra.run.smithi138.stdout: "repo_digests": [ 2024-09-13T22:04:00.995 INFO:teuthology.orchestra.run.smithi138.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b893710f6933dd3672a2a633ce5ac92081563259207d21cd52290129179ca808" 2024-09-13T22:04:00.995 INFO:teuthology.orchestra.run.smithi138.stdout: ] 2024-09-13T22:04:00.995 INFO:teuthology.orchestra.run.smithi138.stdout:} 2024-09-13T22:04:01.043 DEBUG:teuthology.orchestra.run.smithi031:> sudo mkdir -p /etc/ceph 2024-09-13T22:04:01.058 DEBUG:teuthology.orchestra.run.smithi096:> sudo mkdir -p /etc/ceph 2024-09-13T22:04:01.073 DEBUG:teuthology.orchestra.run.smithi138:> sudo mkdir -p /etc/ceph 2024-09-13T22:04:01.086 DEBUG:teuthology.orchestra.run.smithi031:> sudo chmod 777 /etc/ceph 2024-09-13T22:04:01.114 DEBUG:teuthology.orchestra.run.smithi096:> sudo chmod 777 /etc/ceph 2024-09-13T22:04:01.126 DEBUG:teuthology.orchestra.run.smithi138:> sudo chmod 777 /etc/ceph 2024-09-13T22:04:01.141 INFO:tasks.cephadm:Writing seed config... 2024-09-13T22:04:01.142 INFO:tasks.cephadm: override: [global] mon election default strategy = 3 2024-09-13T22:04:01.142 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-09-13T22:04:01.142 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-09-13T22:04:01.143 INFO:tasks.cephadm: override: [mgr] mgr/cephadm/use_agent = True 2024-09-13T22:04:01.143 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-09-13T22:04:01.143 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-09-13T22:04:01.143 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-09-13T22:04:01.143 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-09-13T22:04:01.143 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-09-13T22:04:01.143 DEBUG:teuthology.orchestra.run.smithi031:> set -ex 2024-09-13T22:04:01.144 DEBUG:teuthology.orchestra.run.smithi031:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-09-13T22:04:01.163 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 = 89616338-721b-11ef-bceb-c7b262605968 mon election default strategy = 3 [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-09-13T22:04:01.163 DEBUG:teuthology.orchestra.run.smithi031:mon.a> sudo journalctl -f -n 0 -u ceph-89616338-721b-11ef-bceb-c7b262605968@mon.a.service 2024-09-13T22:04:01.208 DEBUG:teuthology.orchestra.run.smithi031:mgr.a> sudo journalctl -f -n 0 -u ceph-89616338-721b-11ef-bceb-c7b262605968@mgr.a.service 2024-09-13T22:04:01.251 INFO:tasks.cephadm:Bootstrapping... 2024-09-13T22:04:01.251 DEBUG:teuthology.orchestra.run.smithi031:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 -v bootstrap --fsid 89616338-721b-11ef-bceb-c7b262605968 --config /home/ubuntu/cephtest/seed.ceph.conf --output-config /etc/ceph/ceph.conf --output-keyring /etc/ceph/ceph.client.admin.keyring --output-pub-ssh-key /home/ubuntu/cephtest/ceph.pub --mon-id a --mgr-id a --orphan-initial-daemons --skip-monitoring-stack --mon-ip 172.21.15.31 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-09-13T22:04:01.480 INFO:teuthology.orchestra.run.smithi031.stdout:-------------------------------------------------------------------------------- 2024-09-13T22:04:01.480 INFO:teuthology.orchestra.run.smithi031.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50', '-v', 'bootstrap', '--fsid', '89616338-721b-11ef-bceb-c7b262605968', '--config', '/home/ubuntu/cephtest/seed.ceph.conf', '--output-config', '/etc/ceph/ceph.conf', '--output-keyring', '/etc/ceph/ceph.client.admin.keyring', '--output-pub-ssh-key', '/home/ubuntu/cephtest/ceph.pub', '--mon-id', 'a', '--mgr-id', 'a', '--orphan-initial-daemons', '--skip-monitoring-stack', '--mon-ip', '172.21.15.31', '--skip-admin-label'] 2024-09-13T22:04:01.480 INFO:teuthology.orchestra.run.smithi031.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-09-13T22:04:01.481 INFO:teuthology.orchestra.run.smithi031.stdout:Verifying podman|docker is present... 2024-09-13T22:04:01.481 INFO:teuthology.orchestra.run.smithi031.stdout:Verifying lvm2 is present... 2024-09-13T22:04:01.481 INFO:teuthology.orchestra.run.smithi031.stdout:Verifying time synchronization is in place... 2024-09-13T22:04:01.485 INFO:teuthology.orchestra.run.smithi031.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-13T22:04:01.486 INFO:teuthology.orchestra.run.smithi031.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-13T22:04:01.489 INFO:teuthology.orchestra.run.smithi031.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-13T22:04:01.489 INFO:teuthology.orchestra.run.smithi031.stdout:systemctl: stdout inactive 2024-09-13T22:04:01.494 INFO:teuthology.orchestra.run.smithi031.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-09-13T22:04:01.494 INFO:teuthology.orchestra.run.smithi031.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-09-13T22:04:01.499 INFO:teuthology.orchestra.run.smithi031.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-09-13T22:04:01.499 INFO:teuthology.orchestra.run.smithi031.stdout:systemctl: stdout inactive 2024-09-13T22:04:01.504 INFO:teuthology.orchestra.run.smithi031.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-09-13T22:04:01.504 INFO:teuthology.orchestra.run.smithi031.stdout:systemctl: stdout masked 2024-09-13T22:04:01.507 INFO:teuthology.orchestra.run.smithi031.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-09-13T22:04:01.507 INFO:teuthology.orchestra.run.smithi031.stdout:systemctl: stdout inactive 2024-09-13T22:04:01.511 INFO:teuthology.orchestra.run.smithi031.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-09-13T22:04:01.511 INFO:teuthology.orchestra.run.smithi031.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-09-13T22:04:01.516 INFO:teuthology.orchestra.run.smithi031.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-09-13T22:04:01.516 INFO:teuthology.orchestra.run.smithi031.stdout:systemctl: stdout inactive 2024-09-13T22:04:01.520 INFO:teuthology.orchestra.run.smithi031.stdout:systemctl: stdout enabled 2024-09-13T22:04:01.524 INFO:teuthology.orchestra.run.smithi031.stdout:systemctl: stdout active 2024-09-13T22:04:01.524 INFO:teuthology.orchestra.run.smithi031.stdout:Unit ntp.service is enabled and running 2024-09-13T22:04:01.524 INFO:teuthology.orchestra.run.smithi031.stdout:Repeating the final host check... 2024-09-13T22:04:01.524 INFO:teuthology.orchestra.run.smithi031.stdout:docker (/usr/bin/docker) is present 2024-09-13T22:04:01.524 INFO:teuthology.orchestra.run.smithi031.stdout:systemctl is present 2024-09-13T22:04:01.524 INFO:teuthology.orchestra.run.smithi031.stdout:lvcreate is present 2024-09-13T22:04:01.528 INFO:teuthology.orchestra.run.smithi031.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-13T22:04:01.528 INFO:teuthology.orchestra.run.smithi031.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-13T22:04:01.532 INFO:teuthology.orchestra.run.smithi031.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-13T22:04:01.532 INFO:teuthology.orchestra.run.smithi031.stdout:systemctl: stdout inactive 2024-09-13T22:04:01.536 INFO:teuthology.orchestra.run.smithi031.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-09-13T22:04:01.536 INFO:teuthology.orchestra.run.smithi031.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-09-13T22:04:01.540 INFO:teuthology.orchestra.run.smithi031.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-09-13T22:04:01.540 INFO:teuthology.orchestra.run.smithi031.stdout:systemctl: stdout inactive 2024-09-13T22:04:01.544 INFO:teuthology.orchestra.run.smithi031.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-09-13T22:04:01.544 INFO:teuthology.orchestra.run.smithi031.stdout:systemctl: stdout masked 2024-09-13T22:04:01.548 INFO:teuthology.orchestra.run.smithi031.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-09-13T22:04:01.548 INFO:teuthology.orchestra.run.smithi031.stdout:systemctl: stdout inactive 2024-09-13T22:04:01.552 INFO:teuthology.orchestra.run.smithi031.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-09-13T22:04:01.552 INFO:teuthology.orchestra.run.smithi031.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-09-13T22:04:01.555 INFO:teuthology.orchestra.run.smithi031.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-09-13T22:04:01.555 INFO:teuthology.orchestra.run.smithi031.stdout:systemctl: stdout inactive 2024-09-13T22:04:01.560 INFO:teuthology.orchestra.run.smithi031.stdout:systemctl: stdout enabled 2024-09-13T22:04:01.566 INFO:teuthology.orchestra.run.smithi031.stdout:systemctl: stdout active 2024-09-13T22:04:01.566 INFO:teuthology.orchestra.run.smithi031.stdout:Unit ntp.service is enabled and running 2024-09-13T22:04:01.566 INFO:teuthology.orchestra.run.smithi031.stdout:Host looks OK 2024-09-13T22:04:01.566 INFO:teuthology.orchestra.run.smithi031.stdout:Cluster fsid: 89616338-721b-11ef-bceb-c7b262605968 2024-09-13T22:04:01.566 INFO:teuthology.orchestra.run.smithi031.stdout:Acquiring lock 139640226822992 on /run/cephadm/89616338-721b-11ef-bceb-c7b262605968.lock 2024-09-13T22:04:01.566 INFO:teuthology.orchestra.run.smithi031.stdout:Lock 139640226822992 acquired on /run/cephadm/89616338-721b-11ef-bceb-c7b262605968.lock 2024-09-13T22:04:01.566 INFO:teuthology.orchestra.run.smithi031.stdout:Verifying IP 172.21.15.31 port 3300 ... 2024-09-13T22:04:01.566 INFO:teuthology.orchestra.run.smithi031.stdout:Verifying IP 172.21.15.31 port 6789 ... 2024-09-13T22:04:01.566 INFO:teuthology.orchestra.run.smithi031.stdout:Base mon IP(s) is [172.21.15.31:3300, 172.21.15.31:6789], mon addrv is [v2:172.21.15.31:3300,v1:172.21.15.31:6789] 2024-09-13T22:04:01.569 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/sbin/ip: stdout default via 172.21.15.254 dev ens1f0 2024-09-13T22:04:01.569 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/sbin/ip: stdout 172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-09-13T22:04:01.569 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/sbin/ip: stdout 172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.31 2024-09-13T22:04:01.571 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-09-13T22:04:01.571 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/sbin/ip: stdout fe80::/64 dev ens1f0 proto kernel metric 256 pref medium 2024-09-13T22:04:01.571 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev ens1f0 proto ra metric 1024 expires 1796sec hoplimit 64 pref medium 2024-09-13T22:04:01.573 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-09-13T22:04:01.573 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/sbin/ip: stdout inet6 ::1/128 scope host 2024-09-13T22:04:01.573 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-13T22:04:01.573 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/sbin/ip: stdout 4: ens1f0: mtu 1500 state UP qlen 1000 2024-09-13T22:04:01.574 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/sbin/ip: stdout inet6 fe80::ae1f:6bff:fea5:caba/64 scope link 2024-09-13T22:04:01.574 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-13T22:04:01.574 INFO:teuthology.orchestra.run.smithi031.stdout:Mon IP `172.21.15.31` is in CIDR network `172.21.0.0/20` 2024-09-13T22:04:01.574 INFO:teuthology.orchestra.run.smithi031.stdout:Mon IP `172.21.15.31` is in CIDR network `172.21.0.0/20` 2024-09-13T22:04:01.574 INFO:teuthology.orchestra.run.smithi031.stdout:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20'] 2024-09-13T22:04:01.575 INFO:teuthology.orchestra.run.smithi031.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-09-13T22:04:01.575 INFO:teuthology.orchestra.run.smithi031.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50... 2024-09-13T22:04:02.119 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/docker: stdout ecab7be58963a5bd03910cd73eef66405d7fdd50: Pulling from ceph-ci/ceph 2024-09-13T22:04:02.119 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/docker: stdout Digest: sha256:b893710f6933dd3672a2a633ce5ac92081563259207d21cd52290129179ca808 2024-09-13T22:04:02.119 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/docker: stdout Status: Image is up to date for quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 2024-09-13T22:04:02.119 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/docker: stdout quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 2024-09-13T22:04:03.704 INFO:teuthology.orchestra.run.smithi031.stdout:ceph: stdout ceph version 19.1.1-324-gecab7be5 (ecab7be58963a5bd03910cd73eef66405d7fdd50) squid (stable) 2024-09-13T22:04:03.704 INFO:teuthology.orchestra.run.smithi031.stdout:Ceph version: ceph version 19.1.1-324-gecab7be5 (ecab7be58963a5bd03910cd73eef66405d7fdd50) squid (stable) 2024-09-13T22:04:03.704 INFO:teuthology.orchestra.run.smithi031.stdout:Extracting ceph user uid/gid from container image... 2024-09-13T22:04:05.092 INFO:teuthology.orchestra.run.smithi031.stdout:stat: stdout 167 167 2024-09-13T22:04:05.092 INFO:teuthology.orchestra.run.smithi031.stdout:Creating initial keys... 2024-09-13T22:04:06.547 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-authtool: stdout AQDVtuRmKHAbNhAAfGdDEt1RmmwBY5RDLsL5gQ== 2024-09-13T22:04:07.952 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-authtool: stdout AQDXtuRmmJ5bFxAADvcYTDFIsB9rIoMfoAoQbg== 2024-09-13T22:04:09.393 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-authtool: stdout AQDYtuRmMTHhMBAAFfmGB2Ejr6ixp5WA0fyWww== 2024-09-13T22:04:09.394 INFO:teuthology.orchestra.run.smithi031.stdout:Creating initial monmap... 2024-09-13T22:04:10.882 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-13T22:04:10.882 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = quincy 2024-09-13T22:04:10.882 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to 89616338-721b-11ef-bceb-c7b262605968 2024-09-13T22:04:10.883 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-13T22:04:10.883 INFO:teuthology.orchestra.run.smithi031.stdout:monmaptool for a [v2:172.21.15.31:3300,v1:172.21.15.31:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-13T22:04:10.883 INFO:teuthology.orchestra.run.smithi031.stdout:setting min_mon_release = quincy 2024-09-13T22:04:10.883 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/monmaptool: set fsid to 89616338-721b-11ef-bceb-c7b262605968 2024-09-13T22:04:10.883 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-13T22:04:10.883 INFO:teuthology.orchestra.run.smithi031.stdout: 2024-09-13T22:04:10.883 INFO:teuthology.orchestra.run.smithi031.stdout:Creating mon... 2024-09-13T22:04:12.230 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.713+0000 7f8970fd5c80 0 set uid:gid to 167:167 (ceph:ceph) 2024-09-13T22:04:12.230 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.713+0000 7f8970fd5c80 1 imported monmap: 2024-09-13T22:04:12.230 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr epoch 0 2024-09-13T22:04:12.230 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr fsid 89616338-721b-11ef-bceb-c7b262605968 2024-09-13T22:04:12.231 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr last_changed 2024-09-13T22:04:10.314756+0000 2024-09-13T22:04:12.231 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr created 2024-09-13T22:04:10.314756+0000 2024-09-13T22:04:12.231 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr min_mon_release 17 (quincy) 2024-09-13T22:04:12.231 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr election_strategy: 1 2024-09-13T22:04:12.231 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr 0: [v2:172.21.15.31:3300/0,v1:172.21.15.31:6789/0] mon.a 2024-09-13T22:04:12.231 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr 2024-09-13T22:04:12.243 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.713+0000 7f8970fd5c80 0 /usr/bin/ceph-mon: set fsid to 89616338-721b-11ef-bceb-c7b262605968 2024-09-13T22:04:12.243 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: RocksDB version: 7.9.2 2024-09-13T22:04:12.243 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr 2024-09-13T22:04:12.243 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Git sha 0 2024-09-13T22:04:12.243 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Compile date 2024-09-13 16:59:10 2024-09-13T22:04:12.243 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: DB SUMMARY 2024-09-13T22:04:12.243 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr 2024-09-13T22:04:12.243 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: DB Session ID: ICGW89LB8BXBP7ROGNYA 2024-09-13T22:04:12.243 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr 2024-09-13T22:04:12.243 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-a/store.db dir, Total Num: 0, files: 2024-09-13T22:04:12.244 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr 2024-09-13T22:04:12.244 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-a/store.db: 2024-09-13T22:04:12.244 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr 2024-09-13T22:04:12.244 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.error_if_exists: 0 2024-09-13T22:04:12.244 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.create_if_missing: 1 2024-09-13T22:04:12.244 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.paranoid_checks: 1 2024-09-13T22:04:12.244 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-09-13T22:04:12.244 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-13T22:04:12.244 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-13T22:04:12.244 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.env: 0x55a92e289940 2024-09-13T22:04:12.244 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.fs: PosixFileSystem 2024-09-13T22:04:12.244 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.info_log: 0x55a92f936bc0 2024-09-13T22:04:12.245 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.max_file_opening_threads: 16 2024-09-13T22:04:12.245 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.statistics: (nil) 2024-09-13T22:04:12.245 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.use_fsync: 0 2024-09-13T22:04:12.245 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.max_log_file_size: 0 2024-09-13T22:04:12.245 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-13T22:04:12.245 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-09-13T22:04:12.245 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.keep_log_file_num: 1000 2024-09-13T22:04:12.245 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.recycle_log_file_num: 0 2024-09-13T22:04:12.245 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.allow_fallocate: 1 2024-09-13T22:04:12.245 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.allow_mmap_reads: 0 2024-09-13T22:04:12.245 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.allow_mmap_writes: 0 2024-09-13T22:04:12.245 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.use_direct_reads: 0 2024-09-13T22:04:12.246 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-13T22:04:12.246 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.create_missing_column_families: 0 2024-09-13T22:04:12.246 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.db_log_dir: 2024-09-13T22:04:12.246 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.wal_dir: 2024-09-13T22:04:12.246 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-09-13T22:04:12.246 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-09-13T22:04:12.246 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-09-13T22:04:12.246 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-13T22:04:12.246 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-13T22:04:12.246 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-09-13T22:04:12.246 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.advise_random_on_open: 1 2024-09-13T22:04:12.246 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.db_write_buffer_size: 0 2024-09-13T22:04:12.246 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.write_buffer_manager: 0x55a92f93d4a0 2024-09-13T22:04:12.247 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-13T22:04:12.247 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-13T22:04:12.247 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-09-13T22:04:12.247 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.rate_limiter: (nil) 2024-09-13T22:04:12.247 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-13T22:04:12.247 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.wal_recovery_mode: 2 2024-09-13T22:04:12.247 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.enable_thread_tracking: 0 2024-09-13T22:04:12.247 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.enable_pipelined_write: 0 2024-09-13T22:04:12.247 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.unordered_write: 0 2024-09-13T22:04:12.247 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-13T22:04:12.247 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-13T22:04:12.247 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-13T22:04:12.247 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-13T22:04:12.248 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.row_cache: None 2024-09-13T22:04:12.248 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.wal_filter: None 2024-09-13T22:04:12.248 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-13T22:04:12.248 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.allow_ingest_behind: 0 2024-09-13T22:04:12.248 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.two_write_queues: 0 2024-09-13T22:04:12.248 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.manual_wal_flush: 0 2024-09-13T22:04:12.248 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.wal_compression: 0 2024-09-13T22:04:12.248 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.atomic_flush: 0 2024-09-13T22:04:12.248 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-13T22:04:12.248 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-09-13T22:04:12.248 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-09-13T22:04:12.248 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.log_readahead_size: 0 2024-09-13T22:04:12.248 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-13T22:04:12.249 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.best_efforts_recovery: 0 2024-09-13T22:04:12.249 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-13T22:04:12.249 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-13T22:04:12.249 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.allow_data_in_errors: 0 2024-09-13T22:04:12.249 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.db_host_id: __hostname__ 2024-09-13T22:04:12.249 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-09-13T22:04:12.249 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.max_background_jobs: 2 2024-09-13T22:04:12.249 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.max_background_compactions: -1 2024-09-13T22:04:12.249 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.max_subcompactions: 1 2024-09-13T22:04:12.249 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-13T22:04:12.250 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-13T22:04:12.250 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-09-13T22:04:12.250 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.max_total_wal_size: 0 2024-09-13T22:04:12.250 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-13T22:04:12.250 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-09-13T22:04:12.250 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-09-13T22:04:12.250 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-13T22:04:12.250 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.max_open_files: -1 2024-09-13T22:04:12.250 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.bytes_per_sync: 0 2024-09-13T22:04:12.250 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-09-13T22:04:12.250 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-09-13T22:04:12.250 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.compaction_readahead_size: 0 2024-09-13T22:04:12.250 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.max_background_flushes: -1 2024-09-13T22:04:12.251 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Compression algorithms supported: 2024-09-13T22:04:12.251 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: kZSTD supported: 0 2024-09-13T22:04:12.251 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: kXpressCompression supported: 0 2024-09-13T22:04:12.251 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: kBZip2Compression supported: 0 2024-09-13T22:04:12.251 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-13T22:04:12.251 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: kLZ4Compression supported: 1 2024-09-13T22:04:12.251 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: kZlibCompression supported: 1 2024-09-13T22:04:12.251 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: kLZ4HCCompression supported: 1 2024-09-13T22:04:12.251 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: kSnappyCompression supported: 1 2024-09-13T22:04:12.251 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-09-13T22:04:12.251 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-09-13T22:04:12.251 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: [db/db_impl/db_impl_open.cc:317] Creating manifest 1 2024-09-13T22:04:12.251 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr 2024-09-13T22:04:12.252 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000001 2024-09-13T22:04:12.252 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr 2024-09-13T22:04:12.252 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-13T22:04:12.252 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr 2024-09-13T22:04:12.252 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-13T22:04:12.252 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.merge_operator: 2024-09-13T22:04:12.269 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.compaction_filter: None 2024-09-13T22:04:12.269 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.compaction_filter_factory: None 2024-09-13T22:04:12.269 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.sst_partitioner_factory: None 2024-09-13T22:04:12.269 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-09-13T22:04:12.269 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-09-13T22:04:12.269 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55a92f936800) 2024-09-13T22:04:12.269 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks: 1 2024-09-13T22:04:12.269 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks_with_high_priority: 0 2024-09-13T22:04:12.269 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-13T22:04:12.270 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr pin_top_level_index_and_filter: 1 2024-09-13T22:04:12.270 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr index_type: 0 2024-09-13T22:04:12.270 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr data_block_index_type: 0 2024-09-13T22:04:12.270 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr index_shortening: 1 2024-09-13T22:04:12.270 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr data_block_hash_table_util_ratio: 0.750000 2024-09-13T22:04:12.270 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr checksum: 4 2024-09-13T22:04:12.270 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr no_block_cache: 0 2024-09-13T22:04:12.270 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr block_cache: 0x55a92f9211f0 2024-09-13T22:04:12.270 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr block_cache_name: BinnedLRUCache 2024-09-13T22:04:12.270 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr block_cache_options: 2024-09-13T22:04:12.270 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr capacity : 536870912 2024-09-13T22:04:12.270 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr num_shard_bits : 4 2024-09-13T22:04:12.270 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr strict_capacity_limit : 0 2024-09-13T22:04:12.271 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr high_pri_pool_ratio: 0.000 2024-09-13T22:04:12.271 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr block_cache_compressed: (nil) 2024-09-13T22:04:12.271 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr persistent_cache: (nil) 2024-09-13T22:04:12.271 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr block_size: 4096 2024-09-13T22:04:12.271 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr block_size_deviation: 10 2024-09-13T22:04:12.271 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr block_restart_interval: 16 2024-09-13T22:04:12.271 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr index_block_restart_interval: 1 2024-09-13T22:04:12.271 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr metadata_block_size: 4096 2024-09-13T22:04:12.271 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr partition_filters: 0 2024-09-13T22:04:12.271 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr use_delta_encoding: 1 2024-09-13T22:04:12.271 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr filter_policy: bloomfilter 2024-09-13T22:04:12.271 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr whole_key_filtering: 1 2024-09-13T22:04:12.271 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr verify_compression: 0 2024-09-13T22:04:12.272 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr read_amp_bytes_per_bit: 0 2024-09-13T22:04:12.272 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr format_version: 5 2024-09-13T22:04:12.272 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr enable_index_compression: 1 2024-09-13T22:04:12.272 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr block_align: 0 2024-09-13T22:04:12.272 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr max_auto_readahead_size: 262144 2024-09-13T22:04:12.272 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr prepopulate_block_cache: 0 2024-09-13T22:04:12.272 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr initial_auto_readahead_size: 8192 2024-09-13T22:04:12.272 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr num_file_reads_for_auto_readahead: 2 2024-09-13T22:04:12.272 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr 2024-09-13T22:04:12.272 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.write_buffer_size: 33554432 2024-09-13T22:04:12.272 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.max_write_buffer_number: 2 2024-09-13T22:04:12.272 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.compression: NoCompression 2024-09-13T22:04:12.272 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.bottommost_compression: Disabled 2024-09-13T22:04:12.273 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.prefix_extractor: nullptr 2024-09-13T22:04:12.273 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-13T22:04:12.273 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.num_levels: 7 2024-09-13T22:04:12.273 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-13T22:04:12.273 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-13T22:04:12.273 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-13T22:04:12.273 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-13T22:04:12.273 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-13T22:04:12.273 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-13T22:04:12.273 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-13T22:04:12.273 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-13T22:04:12.273 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-13T22:04:12.273 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-13T22:04:12.274 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-13T22:04:12.274 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-13T22:04:12.274 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-09-13T22:04:12.274 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.compression_opts.level: 32767 2024-09-13T22:04:12.274 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.compression_opts.strategy: 0 2024-09-13T22:04:12.274 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-13T22:04:12.274 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-13T22:04:12.274 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-13T22:04:12.274 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-13T22:04:12.274 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.compression_opts.enabled: false 2024-09-13T22:04:12.274 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-13T22:04:12.274 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-13T22:04:12.275 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-13T22:04:12.275 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-13T22:04:12.275 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.target_file_size_base: 67108864 2024-09-13T22:04:12.275 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-09-13T22:04:12.275 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-13T22:04:12.275 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-13T22:04:12.275 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-13T22:04:12.275 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-13T22:04:12.275 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-13T22:04:12.275 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-13T22:04:12.275 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-13T22:04:12.275 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-13T22:04:12.275 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-13T22:04:12.276 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-13T22:04:12.276 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-13T22:04:12.276 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-13T22:04:12.276 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-13T22:04:12.276 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.arena_block_size: 1048576 2024-09-13T22:04:12.276 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-13T22:04:12.276 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-13T22:04:12.276 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.disable_auto_compactions: 0 2024-09-13T22:04:12.276 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-13T22:04:12.277 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-13T22:04:12.277 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-13T22:04:12.277 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-13T22:04:12.277 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-13T22:04:12.277 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-13T22:04:12.277 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-13T22:04:12.277 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-13T22:04:12.277 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-13T22:04:12.277 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-13T22:04:12.277 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-13T22:04:12.277 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.inplace_update_support: 0 2024-09-13T22:04:12.277 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-09-13T22:04:12.278 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-13T22:04:12.278 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-13T22:04:12.278 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-09-13T22:04:12.278 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.bloom_locality: 0 2024-09-13T22:04:12.278 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.max_successive_merges: 0 2024-09-13T22:04:12.278 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-09-13T22:04:12.278 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.paranoid_file_checks: 0 2024-09-13T22:04:12.278 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.force_consistency_checks: 1 2024-09-13T22:04:12.278 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.report_bg_io_stats: 0 2024-09-13T22:04:12.278 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.ttl: 2592000 2024-09-13T22:04:12.278 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-09-13T22:04:12.278 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-13T22:04:12.278 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-13T22:04:12.279 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.enable_blob_files: false 2024-09-13T22:04:12.279 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.min_blob_size: 0 2024-09-13T22:04:12.279 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.blob_file_size: 268435456 2024-09-13T22:04:12.279 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-09-13T22:04:12.279 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-09-13T22:04:12.279 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-13T22:04:12.279 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-13T22:04:12.279 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-13T22:04:12.279 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.blob_file_starting_level: 0 2024-09-13T22:04:12.279 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-13T22:04:12.279 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000001 succeeded,manifest_file_number is 1, next_file_number is 3, last_sequence is 0, log_number is 0,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2024-09-13T22:04:12.279 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr 2024-09-13T22:04:12.279 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-09-13T22:04:12.280 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr 2024-09-13T22:04:12.280 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 3155e034-7e47-41a3-8936-7fea2c861904 2024-09-13T22:04:12.280 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr 2024-09-13T22:04:12.280 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.717+0000 7f8970fd5c80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 5 2024-09-13T22:04:12.280 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr 2024-09-13T22:04:12.280 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.721+0000 7f8970fd5c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x55a92f94ee00 2024-09-13T22:04:12.280 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.721+0000 7f8970fd5c80 4 rocksdb: DB pointer 0x55a92fa28000 2024-09-13T22:04:12.280 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.721+0000 7f8968760640 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-13T22:04:12.280 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.721+0000 7f8968760640 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-13T22:04:12.280 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr ** DB Stats ** 2024-09-13T22:04:12.280 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-09-13T22:04:12.280 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-09-13T22:04:12.281 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-13T22:04:12.281 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-13T22:04:12.281 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-09-13T22:04:12.281 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-13T22:04:12.281 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-13T22:04:12.281 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr 2024-09-13T22:04:12.281 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-09-13T22:04:12.281 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-09-13T22:04:12.281 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-13T22:04:12.281 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 2024-09-13T22:04:12.281 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 2024-09-13T22:04:12.281 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr 2024-09-13T22:04:12.281 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-09-13T22:04:12.282 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-09-13T22:04:12.282 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-13T22:04:12.282 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr 2024-09-13T22:04:12.282 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-13T22:04:12.282 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr 2024-09-13T22:04:12.282 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-09-13T22:04:12.282 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr Flush(GB): cumulative 0.000, interval 0.000 2024-09-13T22:04:12.282 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr AddFile(GB): cumulative 0.000, interval 0.000 2024-09-13T22:04:12.282 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr AddFile(Total Files): cumulative 0, interval 0 2024-09-13T22:04:12.282 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr AddFile(L0 Files): cumulative 0, interval 0 2024-09-13T22:04:12.282 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr AddFile(Keys): cumulative 0, interval 0 2024-09-13T22:04:12.282 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-13T22:04:12.282 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-13T22:04:12.282 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-09-13T22:04:12.283 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr Block cache BinnedLRUCache@0x55a92f9211f0#7 capacity: 512.00 MB usage: 0.00 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.5e-05 secs_since: 0 2024-09-13T22:04:12.283 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) 2024-09-13T22:04:12.283 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr 2024-09-13T22:04:12.283 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr ** File Read Latency Histogram By Level [default] ** 2024-09-13T22:04:12.283 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr 2024-09-13T22:04:12.283 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.721+0000 7f8970fd5c80 4 rocksdb: [db/db_impl/db_impl.cc:496] Shutdown: canceling all background work 2024-09-13T22:04:12.283 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.721+0000 7f8970fd5c80 4 rocksdb: [db/db_impl/db_impl.cc:704] Shutdown complete 2024-09-13T22:04:12.283 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-13T22:04:11.721+0000 7f8970fd5c80 0 /usr/bin/ceph-mon: created monfs at /var/lib/ceph/mon/ceph-a for mon.a 2024-09-13T22:04:12.283 INFO:teuthology.orchestra.run.smithi031.stdout:create mon.a on 2024-09-13T22:04:12.566 INFO:teuthology.orchestra.run.smithi031.stdout:systemctl: stderr Removed /etc/systemd/system/multi-user.target.wants/ceph.target. 2024-09-13T22:04:12.779 INFO:teuthology.orchestra.run.smithi031.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /etc/systemd/system/ceph.target. 2024-09-13T22:04:13.014 INFO:teuthology.orchestra.run.smithi031.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-89616338-721b-11ef-bceb-c7b262605968.target -> /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968.target. 2024-09-13T22:04:13.014 INFO:teuthology.orchestra.run.smithi031.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-89616338-721b-11ef-bceb-c7b262605968.target -> /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968.target. 2024-09-13T22:04:13.312 INFO:teuthology.orchestra.run.smithi031.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-89616338-721b-11ef-bceb-c7b262605968@mon.a 2024-09-13T22:04:13.312 INFO:teuthology.orchestra.run.smithi031.stdout:systemctl: stderr Failed to reset failed state of unit ceph-89616338-721b-11ef-bceb-c7b262605968@mon.a.service: Unit ceph-89616338-721b-11ef-bceb-c7b262605968@mon.a.service not loaded. 2024-09-13T22:04:13.538 INFO:teuthology.orchestra.run.smithi031.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968.target.wants/ceph-89616338-721b-11ef-bceb-c7b262605968@mon.a.service -> /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service. 2024-09-13T22:04:13.546 INFO:teuthology.orchestra.run.smithi031.stdout:firewalld does not appear to be present 2024-09-13T22:04:13.546 INFO:teuthology.orchestra.run.smithi031.stdout:Not possible to enable service . firewalld.service is not available 2024-09-13T22:04:13.546 INFO:teuthology.orchestra.run.smithi031.stdout:Waiting for mon to start... 2024-09-13T22:04:13.546 INFO:teuthology.orchestra.run.smithi031.stdout:Waiting for mon... 2024-09-13T22:04:15.225 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:15 smithi031 bash[22231]: cluster 2024-09-13T22:04:14.999958+0000 mon.a (mon.0) 1 : cluster [INF] mon.a is new leader, mons a in quorum (ranks 0) 2024-09-13T22:04:15.859 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout cluster: 2024-09-13T22:04:15.859 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout id: 89616338-721b-11ef-bceb-c7b262605968 2024-09-13T22:04:15.859 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-09-13T22:04:15.859 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout 2024-09-13T22:04:15.860 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout services: 2024-09-13T22:04:15.860 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum a (age 0.206692s) 2024-09-13T22:04:15.860 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-09-13T22:04:15.860 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-09-13T22:04:15.860 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout 2024-09-13T22:04:15.860 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout data: 2024-09-13T22:04:15.860 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-09-13T22:04:15.861 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-09-13T22:04:15.861 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-09-13T22:04:15.861 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout pgs: 2024-09-13T22:04:15.861 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout 2024-09-13T22:04:15.862 INFO:teuthology.orchestra.run.smithi031.stdout:mon is available 2024-09-13T22:04:15.862 INFO:teuthology.orchestra.run.smithi031.stdout:Assimilating anything we can from ceph.conf... 2024-09-13T22:04:16.223 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:16 smithi031 bash[22231]: cluster 2024-09-13T22:04:15.022732+0000 mon.a (mon.0) 2 : cluster [INF] mon.a is new leader, mons a in quorum (ranks 0) 2024-09-13T22:04:16.223 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:16 smithi031 bash[22231]: cluster 2024-09-13T22:04:15.022964+0000 mon.a (mon.0) 3 : cluster [DBG] monmap epoch 1 2024-09-13T22:04:16.223 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:16 smithi031 bash[22231]: cluster 2024-09-13T22:04:15.022976+0000 mon.a (mon.0) 4 : cluster [DBG] fsid 89616338-721b-11ef-bceb-c7b262605968 2024-09-13T22:04:16.223 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:16 smithi031 bash[22231]: cluster 2024-09-13T22:04:15.022982+0000 mon.a (mon.0) 5 : cluster [DBG] last_changed 2024-09-13T22:04:10.314756+0000 2024-09-13T22:04:16.224 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:16 smithi031 bash[22231]: cluster 2024-09-13T22:04:15.022992+0000 mon.a (mon.0) 6 : cluster [DBG] created 2024-09-13T22:04:10.314756+0000 2024-09-13T22:04:16.224 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:16 smithi031 bash[22231]: cluster 2024-09-13T22:04:15.023000+0000 mon.a (mon.0) 7 : cluster [DBG] min_mon_release 19 (squid) 2024-09-13T22:04:16.224 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:16 smithi031 bash[22231]: cluster 2024-09-13T22:04:15.023007+0000 mon.a (mon.0) 8 : cluster [DBG] election_strategy: 1 2024-09-13T22:04:16.224 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:16 smithi031 bash[22231]: cluster 2024-09-13T22:04:15.023014+0000 mon.a (mon.0) 9 : cluster [DBG] 0: [v2:172.21.15.31:3300/0,v1:172.21.15.31:6789/0] mon.a 2024-09-13T22:04:16.224 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:16 smithi031 bash[22231]: cluster 2024-09-13T22:04:15.025562+0000 mon.a (mon.0) 10 : cluster [DBG] fsmap 2024-09-13T22:04:16.224 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:16 smithi031 bash[22231]: cluster 2024-09-13T22:04:15.028050+0000 mon.a (mon.0) 11 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-09-13T22:04:16.224 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:16 smithi031 bash[22231]: cluster 2024-09-13T22:04:15.028572+0000 mon.a (mon.0) 12 : cluster [DBG] mgrmap e1: no daemons active 2024-09-13T22:04:16.224 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:16 smithi031 bash[22231]: audit 2024-09-13T22:04:15.229385+0000 mon.a (mon.0) 13 : audit [DBG] from='client.? 172.21.15.31:0/2211750085' entity='client.admin' cmd=[{"prefix": "status"}]: dispatch 2024-09-13T22:04:17.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:17 smithi031 bash[22231]: audit 2024-09-13T22:04:16.975483+0000 mon.a (mon.0) 14 : audit [INF] from='client.? 172.21.15.31:0/354798562' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-09-13T22:04:17.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:17 smithi031 bash[22231]: audit 2024-09-13T22:04:16.978545+0000 mon.a (mon.0) 15 : audit [INF] from='client.? 172.21.15.31:0/354798562' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-13T22:04:17.516 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout 2024-09-13T22:04:17.516 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout [global] 2024-09-13T22:04:17.516 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout fsid = 89616338-721b-11ef-bceb-c7b262605968 2024-09-13T22:04:17.516 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.31:3300,v1:172.21.15.31:6789] 2024-09-13T22:04:17.516 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-13T22:04:17.516 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-13T22:04:17.517 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-13T22:04:17.518 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-13T22:04:17.518 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout 2024-09-13T22:04:17.518 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-13T22:04:17.518 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout mgr/cephadm/use_agent = True 2024-09-13T22:04:17.518 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-13T22:04:17.518 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout 2024-09-13T22:04:17.518 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout [osd] 2024-09-13T22:04:17.518 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-13T22:04:17.518 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-13T22:04:17.518 INFO:teuthology.orchestra.run.smithi031.stdout:Generating new minimal ceph.conf... 2024-09-13T22:04:18.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:18 smithi031 bash[22231]: audit 2024-09-13T22:04:18.554468+0000 mon.a (mon.0) 16 : audit [DBG] from='client.? 172.21.15.31:0/3457789201' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:04:19.113 INFO:teuthology.orchestra.run.smithi031.stdout:Restarting the monitor... 2024-09-13T22:04:19.385 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:19 smithi031 systemd[1]: Stopping Ceph mon.a for 89616338-721b-11ef-bceb-c7b262605968... 2024-09-13T22:04:19.385 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:19 smithi031 bash[22231]: debug 2024-09-13T22:04:19.241+0000 7f0aaad73640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.a -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-stderr=true (PID: 1) UID: 0 2024-09-13T22:04:19.385 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:19 smithi031 bash[22231]: debug 2024-09-13T22:04:19.241+0000 7f0aaad73640 -1 mon.a@0(leader) e1 *** Got Signal Terminated *** 2024-09-13T22:04:19.929 INFO:teuthology.orchestra.run.smithi031.stdout:Setting public_network to 172.21.0.0/20 in mon config section 2024-09-13T22:04:20.038 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:19 smithi031 bash[22612]: ceph-89616338-721b-11ef-bceb-c7b262605968-mon-a 2024-09-13T22:04:20.038 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:19 smithi031 bash[22671]: Error response from daemon: No such container: ceph-89616338-721b-11ef-bceb-c7b262605968-mon-a 2024-09-13T22:04:20.038 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:19 smithi031 systemd[1]: ceph-89616338-721b-11ef-bceb-c7b262605968@mon.a.service: Deactivated successfully. 2024-09-13T22:04:20.038 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:19 smithi031 systemd[1]: Stopped Ceph mon.a for 89616338-721b-11ef-bceb-c7b262605968. 2024-09-13T22:04:20.038 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:19 smithi031 systemd[1]: Started Ceph mon.a for 89616338-721b-11ef-bceb-c7b262605968. 2024-09-13T22:04:21.301 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.281+0000 7fe231be6c80 0 set uid:gid to 167:167 (ceph:ceph) 2024-09-13T22:04:21.301 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.281+0000 7fe231be6c80 0 ceph version 19.1.1-324-gecab7be5 (ecab7be58963a5bd03910cd73eef66405d7fdd50) squid (stable), process ceph-mon, pid 7 2024-09-13T22:04:21.301 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.281+0000 7fe231be6c80 0 pidfile_write: ignore empty --pid-file 2024-09-13T22:04:21.301 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.281+0000 7fe231be6c80 0 load: jerasure load: lrc 2024-09-13T22:04:21.301 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: RocksDB version: 7.9.2 2024-09-13T22:04:21.301 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Git sha 0 2024-09-13T22:04:21.301 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Compile date 2024-09-13 16:59:10 2024-09-13T22:04:21.301 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: DB SUMMARY 2024-09-13T22:04:21.301 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: DB Session ID: UOZMDIQV2MZ8PEGDA5SI 2024-09-13T22:04:21.301 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: CURRENT file: CURRENT 2024-09-13T22:04:21.302 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: IDENTITY file: IDENTITY 2024-09-13T22:04:21.302 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2024-09-13T22:04:21.302 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-a/store.db dir, Total Num: 1, files: 000008.sst 2024-09-13T22:04:21.302 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-a/store.db: 000009.log size: 88773 ; 2024-09-13T22:04:21.302 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.error_if_exists: 0 2024-09-13T22:04:21.302 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.create_if_missing: 0 2024-09-13T22:04:21.302 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.paranoid_checks: 1 2024-09-13T22:04:21.302 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-09-13T22:04:21.302 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-13T22:04:21.302 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-13T22:04:21.303 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.env: 0x55f24839e940 2024-09-13T22:04:21.303 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.fs: PosixFileSystem 2024-09-13T22:04:21.303 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.info_log: 0x55f248d7f6e0 2024-09-13T22:04:21.303 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.max_file_opening_threads: 16 2024-09-13T22:04:21.303 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.statistics: (nil) 2024-09-13T22:04:21.303 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.use_fsync: 0 2024-09-13T22:04:21.303 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.max_log_file_size: 0 2024-09-13T22:04:21.303 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-13T22:04:21.303 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-09-13T22:04:21.303 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.keep_log_file_num: 1000 2024-09-13T22:04:21.303 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.recycle_log_file_num: 0 2024-09-13T22:04:21.303 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.allow_fallocate: 1 2024-09-13T22:04:21.303 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.allow_mmap_reads: 0 2024-09-13T22:04:21.304 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.allow_mmap_writes: 0 2024-09-13T22:04:21.304 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.use_direct_reads: 0 2024-09-13T22:04:21.304 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-13T22:04:21.304 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.create_missing_column_families: 0 2024-09-13T22:04:21.304 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.db_log_dir: 2024-09-13T22:04:21.304 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.wal_dir: 2024-09-13T22:04:21.304 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-09-13T22:04:21.304 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-09-13T22:04:21.304 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-09-13T22:04:21.304 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-13T22:04:21.304 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-13T22:04:21.304 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-09-13T22:04:21.304 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.advise_random_on_open: 1 2024-09-13T22:04:21.305 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.db_write_buffer_size: 0 2024-09-13T22:04:21.305 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.write_buffer_manager: 0x55f248d8edc0 2024-09-13T22:04:21.305 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-13T22:04:21.305 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-13T22:04:21.305 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-09-13T22:04:21.305 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.rate_limiter: (nil) 2024-09-13T22:04:21.305 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-13T22:04:21.305 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.wal_recovery_mode: 2 2024-09-13T22:04:21.305 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.enable_thread_tracking: 0 2024-09-13T22:04:21.305 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.enable_pipelined_write: 0 2024-09-13T22:04:21.305 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.unordered_write: 0 2024-09-13T22:04:21.305 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-13T22:04:21.305 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-13T22:04:21.306 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-13T22:04:21.306 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-13T22:04:21.306 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.row_cache: None 2024-09-13T22:04:21.306 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.wal_filter: None 2024-09-13T22:04:21.306 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-13T22:04:21.306 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.allow_ingest_behind: 0 2024-09-13T22:04:21.306 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.two_write_queues: 0 2024-09-13T22:04:21.306 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.manual_wal_flush: 0 2024-09-13T22:04:21.306 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.wal_compression: 0 2024-09-13T22:04:21.306 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.atomic_flush: 0 2024-09-13T22:04:21.306 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-13T22:04:21.306 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-09-13T22:04:21.307 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-09-13T22:04:21.307 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.log_readahead_size: 0 2024-09-13T22:04:21.307 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-13T22:04:21.307 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.best_efforts_recovery: 0 2024-09-13T22:04:21.307 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-13T22:04:21.307 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-13T22:04:21.307 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.allow_data_in_errors: 0 2024-09-13T22:04:21.307 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.db_host_id: __hostname__ 2024-09-13T22:04:21.307 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-09-13T22:04:21.307 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.max_background_jobs: 2 2024-09-13T22:04:21.307 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.max_background_compactions: -1 2024-09-13T22:04:21.309 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.max_subcompactions: 1 2024-09-13T22:04:21.309 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-13T22:04:21.309 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-13T22:04:21.310 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-09-13T22:04:21.310 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.max_total_wal_size: 0 2024-09-13T22:04:21.310 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-13T22:04:21.310 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-09-13T22:04:21.310 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-09-13T22:04:21.310 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-13T22:04:21.310 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.max_open_files: -1 2024-09-13T22:04:21.310 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.bytes_per_sync: 0 2024-09-13T22:04:21.310 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-09-13T22:04:21.310 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-09-13T22:04:21.310 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.compaction_readahead_size: 0 2024-09-13T22:04:21.310 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.max_background_flushes: -1 2024-09-13T22:04:21.310 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Compression algorithms supported: 2024-09-13T22:04:21.311 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: kZSTD supported: 0 2024-09-13T22:04:21.311 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: kXpressCompression supported: 0 2024-09-13T22:04:21.311 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: kBZip2Compression supported: 0 2024-09-13T22:04:21.311 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-13T22:04:21.311 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: kLZ4Compression supported: 1 2024-09-13T22:04:21.311 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: kZlibCompression supported: 1 2024-09-13T22:04:21.311 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: kLZ4HCCompression supported: 1 2024-09-13T22:04:21.311 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: kSnappyCompression supported: 1 2024-09-13T22:04:21.311 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-09-13T22:04:21.311 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-09-13T22:04:21.311 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000010 2024-09-13T22:04:21.311 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-13T22:04:21.311 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-13T22:04:21.312 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.merge_operator: 2024-09-13T22:04:21.312 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.compaction_filter: None 2024-09-13T22:04:21.312 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.compaction_filter_factory: None 2024-09-13T22:04:21.312 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.sst_partitioner_factory: None 2024-09-13T22:04:21.312 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-09-13T22:04:21.312 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-09-13T22:04:21.312 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55f248d7f320) 2024-09-13T22:04:21.312 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: cache_index_and_filter_blocks: 1 2024-09-13T22:04:21.312 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-13T22:04:21.312 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-13T22:04:21.312 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: pin_top_level_index_and_filter: 1 2024-09-13T22:04:21.312 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: index_type: 0 2024-09-13T22:04:21.312 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: data_block_index_type: 0 2024-09-13T22:04:21.312 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: index_shortening: 1 2024-09-13T22:04:21.313 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: data_block_hash_table_util_ratio: 0.750000 2024-09-13T22:04:21.313 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: checksum: 4 2024-09-13T22:04:21.313 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: no_block_cache: 0 2024-09-13T22:04:21.313 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: block_cache: 0x55f248d751f0 2024-09-13T22:04:21.313 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: block_cache_name: BinnedLRUCache 2024-09-13T22:04:21.313 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: block_cache_options: 2024-09-13T22:04:21.313 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: capacity : 536870912 2024-09-13T22:04:21.313 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: num_shard_bits : 4 2024-09-13T22:04:21.313 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: strict_capacity_limit : 0 2024-09-13T22:04:21.313 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: high_pri_pool_ratio: 0.000 2024-09-13T22:04:21.313 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: block_cache_compressed: (nil) 2024-09-13T22:04:21.313 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: persistent_cache: (nil) 2024-09-13T22:04:21.313 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: block_size: 4096 2024-09-13T22:04:21.313 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: block_size_deviation: 10 2024-09-13T22:04:21.314 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: block_restart_interval: 16 2024-09-13T22:04:21.314 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: index_block_restart_interval: 1 2024-09-13T22:04:21.314 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: metadata_block_size: 4096 2024-09-13T22:04:21.314 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: partition_filters: 0 2024-09-13T22:04:21.314 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: use_delta_encoding: 1 2024-09-13T22:04:21.314 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: filter_policy: bloomfilter 2024-09-13T22:04:21.314 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: whole_key_filtering: 1 2024-09-13T22:04:21.314 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: verify_compression: 0 2024-09-13T22:04:21.314 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: read_amp_bytes_per_bit: 0 2024-09-13T22:04:21.314 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: format_version: 5 2024-09-13T22:04:21.314 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: enable_index_compression: 1 2024-09-13T22:04:21.314 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: block_align: 0 2024-09-13T22:04:21.314 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: max_auto_readahead_size: 262144 2024-09-13T22:04:21.314 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: prepopulate_block_cache: 0 2024-09-13T22:04:21.314 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: initial_auto_readahead_size: 8192 2024-09-13T22:04:21.315 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: num_file_reads_for_auto_readahead: 2 2024-09-13T22:04:21.315 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.write_buffer_size: 33554432 2024-09-13T22:04:21.315 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.max_write_buffer_number: 2 2024-09-13T22:04:21.315 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.compression: NoCompression 2024-09-13T22:04:21.315 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.bottommost_compression: Disabled 2024-09-13T22:04:21.315 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.prefix_extractor: nullptr 2024-09-13T22:04:21.315 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-13T22:04:21.315 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.num_levels: 7 2024-09-13T22:04:21.315 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-13T22:04:21.315 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-13T22:04:21.315 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-13T22:04:21.315 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-13T22:04:21.315 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-13T22:04:21.315 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-13T22:04:21.316 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-13T22:04:21.316 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-13T22:04:21.316 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-13T22:04:21.316 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-13T22:04:21.316 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-13T22:04:21.316 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-13T22:04:21.316 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-09-13T22:04:21.316 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.compression_opts.level: 32767 2024-09-13T22:04:21.316 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.compression_opts.strategy: 0 2024-09-13T22:04:21.316 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-13T22:04:21.316 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-13T22:04:21.317 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-13T22:04:21.317 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-13T22:04:21.317 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.compression_opts.enabled: false 2024-09-13T22:04:21.317 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-13T22:04:21.317 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-13T22:04:21.317 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-13T22:04:21.317 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-13T22:04:21.317 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.target_file_size_base: 67108864 2024-09-13T22:04:21.317 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-09-13T22:04:21.317 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-13T22:04:21.317 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-13T22:04:21.317 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-13T22:04:21.317 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-13T22:04:21.317 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-13T22:04:21.317 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-13T22:04:21.318 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-13T22:04:21.318 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-13T22:04:21.318 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-13T22:04:21.318 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-13T22:04:21.318 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-13T22:04:21.318 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-13T22:04:21.318 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-13T22:04:21.318 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.arena_block_size: 1048576 2024-09-13T22:04:21.318 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-13T22:04:21.319 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-13T22:04:21.319 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.disable_auto_compactions: 0 2024-09-13T22:04:21.319 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-13T22:04:21.319 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-13T22:04:21.319 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-13T22:04:21.319 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-13T22:04:21.319 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-13T22:04:21.319 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-13T22:04:21.319 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-13T22:04:21.319 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-13T22:04:21.319 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-13T22:04:21.320 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-13T22:04:21.320 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-13T22:04:21.320 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.inplace_update_support: 0 2024-09-13T22:04:21.320 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-09-13T22:04:21.320 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-13T22:04:21.320 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-13T22:04:21.320 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-09-13T22:04:21.320 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.bloom_locality: 0 2024-09-13T22:04:21.320 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.max_successive_merges: 0 2024-09-13T22:04:21.320 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-09-13T22:04:21.320 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.paranoid_file_checks: 0 2024-09-13T22:04:21.320 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.force_consistency_checks: 1 2024-09-13T22:04:21.321 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.report_bg_io_stats: 0 2024-09-13T22:04:21.321 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.ttl: 2592000 2024-09-13T22:04:21.321 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-09-13T22:04:21.321 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-13T22:04:21.321 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-13T22:04:21.321 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.enable_blob_files: false 2024-09-13T22:04:21.321 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.min_blob_size: 0 2024-09-13T22:04:21.321 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.blob_file_size: 268435456 2024-09-13T22:04:21.321 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-09-13T22:04:21.321 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-09-13T22:04:21.321 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-13T22:04:21.321 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-13T22:04:21.321 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-13T22:04:21.321 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.blob_file_starting_level: 0 2024-09-13T22:04:21.322 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-13T22:04:21.322 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000010 succeeded,manifest_file_number is 10, next_file_number is 12, last_sequence is 5, log_number is 5,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 5 2024-09-13T22:04:21.322 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2024-09-13T22:04:21.322 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 3155e034-7e47-41a3-8936-7fea2c861904 2024-09-13T22:04:21.322 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726265061288924, "job": 1, "event": "recovery_started", "wal_files": [9]} 2024-09-13T22:04:21.322 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2024-09-13T22:04:21.322 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726265061289922, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 85390, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 258, "table_properties": {"data_size": 83537, "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": 77744, "raw_average_value_size": 358, "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": 1726265061, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "3155e034-7e47-41a3-8936-7fea2c861904", "db_session_id": "UOZMDIQV2MZ8PEGDA5SI", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2024-09-13T22:04:21.322 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726265061290047, "job": 1, "event": "recovery_finished"} 2024-09-13T22:04:21.322 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.285+0000 7fe231be6c80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 15 2024-09-13T22:04:21.322 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.289+0000 7fe231be6c80 4 rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-a/store.db/000009.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-09-13T22:04:21.322 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.289+0000 7fe231be6c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x55f248da0e00 2024-09-13T22:04:21.322 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.289+0000 7fe231be6c80 4 rocksdb: DB pointer 0x55f248ea0000 2024-09-13T22:04:21.322 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.289+0000 7fe2279af640 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-13T22:04:21.323 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.289+0000 7fe2279af640 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-13T22:04:21.323 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: ** DB Stats ** 2024-09-13T22:04:21.323 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-13T22:04:21.323 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-09-13T22:04:21.323 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-13T22:04:21.323 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-13T22:04:21.323 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-09-13T22:04:21.323 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-13T22:04:21.323 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-13T22:04:21.323 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: ** Compaction Stats [default] ** 2024-09-13T22:04:21.323 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-09-13T22:04:21.323 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-13T22:04:21.323 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: L0 2/0 85.25 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 133.5 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-13T22:04:21.324 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: Sum 2/0 85.25 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 133.5 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-13T22:04:21.324 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 133.5 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-13T22:04:21.324 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: ** Compaction Stats [default] ** 2024-09-13T22:04:21.324 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-09-13T22:04:21.324 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-13T22:04:21.324 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 133.5 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-13T22:04:21.324 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-13T22:04:21.324 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-13T22:04:21.324 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: Flush(GB): cumulative 0.000, interval 0.000 2024-09-13T22:04:21.324 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-13T22:04:21.324 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: AddFile(Total Files): cumulative 0, interval 0 2024-09-13T22:04:21.324 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: AddFile(L0 Files): cumulative 0, interval 0 2024-09-13T22:04:21.324 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: AddFile(Keys): cumulative 0, interval 0 2024-09-13T22:04:21.324 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: Cumulative compaction: 0.00 GB write, 21.38 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-13T22:04:21.325 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: Interval compaction: 0.00 GB write, 21.38 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-13T22:04:21.325 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-09-13T22:04:21.325 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: Block cache BinnedLRUCache@0x55f248d751f0#7 capacity: 512.00 MB usage: 1.19 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1e-05 secs_since: 0 2024-09-13T22:04:21.325 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: Block cache entry stats(count,size,portion): FilterBlock(2,0.77 KB,0.000146031%) IndexBlock(2,0.42 KB,8.04663e-05%) Misc(1,0.00 KB,0%) 2024-09-13T22:04:21.325 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: ** File Read Latency Histogram By Level [default] ** 2024-09-13T22:04:21.325 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.289+0000 7fe231be6c80 0 starting mon.a rank 0 at public addrs [v2:172.21.15.31:3300/0,v1:172.21.15.31:6789/0] at bind addrs [v2:172.21.15.31:3300/0,v1:172.21.15.31:6789/0] mon_data /var/lib/ceph/mon/ceph-a fsid 89616338-721b-11ef-bceb-c7b262605968 2024-09-13T22:04:21.325 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.289+0000 7fe231be6c80 1 mon.a@-1(???) e1 preinit fsid 89616338-721b-11ef-bceb-c7b262605968 2024-09-13T22:04:21.325 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.289+0000 7fe231be6c80 0 mon.a@-1(???).mds e1 new map 2024-09-13T22:04:21.325 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.289+0000 7fe231be6c80 0 mon.a@-1(???).mds e1 print_map 2024-09-13T22:04:21.325 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: e1 2024-09-13T22:04:21.325 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: btime 2024-09-13T22:04:15:023402+0000 2024-09-13T22:04:21.325 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: enable_multiple, ever_enabled_multiple: 1,1 2024-09-13T22:04:21.326 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2,11=minor log segments,12=quiesce subvolumes} 2024-09-13T22:04:21.326 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: legacy client fscid: -1 2024-09-13T22:04:21.326 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: 2024-09-13T22:04:21.326 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: No filesystems configured 2024-09-13T22:04:21.326 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.289+0000 7fe231be6c80 0 mon.a@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-13T22:04:21.326 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.289+0000 7fe231be6c80 0 mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-13T22:04:21.326 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.289+0000 7fe231be6c80 0 mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-13T22:04:21.326 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.289+0000 7fe231be6c80 0 mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-13T22:04:21.326 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: debug 2024-09-13T22:04:21.289+0000 7fe231be6c80 1 mon.a@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-09-13T22:04:21.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: cluster 2024-09-13T22:04:21.318760+0000 mon.a (mon.0) 1 : cluster [INF] mon.a is new leader, mons a in quorum (ranks 0) 2024-09-13T22:04:21.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: cluster 2024-09-13T22:04:21.318824+0000 mon.a (mon.0) 2 : cluster [DBG] monmap epoch 1 2024-09-13T22:04:21.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: cluster 2024-09-13T22:04:21.318833+0000 mon.a (mon.0) 3 : cluster [DBG] fsid 89616338-721b-11ef-bceb-c7b262605968 2024-09-13T22:04:21.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: cluster 2024-09-13T22:04:21.318839+0000 mon.a (mon.0) 4 : cluster [DBG] last_changed 2024-09-13T22:04:10.314756+0000 2024-09-13T22:04:21.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: cluster 2024-09-13T22:04:21.318853+0000 mon.a (mon.0) 5 : cluster [DBG] created 2024-09-13T22:04:10.314756+0000 2024-09-13T22:04:21.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: cluster 2024-09-13T22:04:21.318860+0000 mon.a (mon.0) 6 : cluster [DBG] min_mon_release 19 (squid) 2024-09-13T22:04:21.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: cluster 2024-09-13T22:04:21.318867+0000 mon.a (mon.0) 7 : cluster [DBG] election_strategy: 1 2024-09-13T22:04:21.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: cluster 2024-09-13T22:04:21.318875+0000 mon.a (mon.0) 8 : cluster [DBG] 0: [v2:172.21.15.31:3300/0,v1:172.21.15.31:6789/0] mon.a 2024-09-13T22:04:21.474 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: cluster 2024-09-13T22:04:21.319285+0000 mon.a (mon.0) 9 : cluster [DBG] fsmap 2024-09-13T22:04:21.474 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: cluster 2024-09-13T22:04:21.319313+0000 mon.a (mon.0) 10 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-09-13T22:04:21.474 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:21 smithi031 bash[22709]: cluster 2024-09-13T22:04:21.319747+0000 mon.a (mon.0) 11 : cluster [DBG] mgrmap e1: no daemons active 2024-09-13T22:04:22.067 INFO:teuthology.orchestra.run.smithi031.stdout:Wrote config to /etc/ceph/ceph.conf 2024-09-13T22:04:22.093 INFO:teuthology.orchestra.run.smithi031.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-09-13T22:04:22.093 INFO:teuthology.orchestra.run.smithi031.stdout:Creating mgr... 2024-09-13T22:04:22.094 INFO:teuthology.orchestra.run.smithi031.stdout:Verifying port 0.0.0.0:9283 ... 2024-09-13T22:04:22.094 INFO:teuthology.orchestra.run.smithi031.stdout:Verifying port 0.0.0.0:8765 ... 2024-09-13T22:04:22.413 INFO:teuthology.orchestra.run.smithi031.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-89616338-721b-11ef-bceb-c7b262605968@mgr.a 2024-09-13T22:04:22.413 INFO:teuthology.orchestra.run.smithi031.stdout:systemctl: stderr Failed to reset failed state of unit ceph-89616338-721b-11ef-bceb-c7b262605968@mgr.a.service: Unit ceph-89616338-721b-11ef-bceb-c7b262605968@mgr.a.service not loaded. 2024-09-13T22:04:22.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:22 smithi031 systemd[1]: /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-13T22:04:22.646 INFO:teuthology.orchestra.run.smithi031.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968.target.wants/ceph-89616338-721b-11ef-bceb-c7b262605968@mgr.a.service -> /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service. 2024-09-13T22:04:22.654 INFO:teuthology.orchestra.run.smithi031.stdout:firewalld does not appear to be present 2024-09-13T22:04:22.654 INFO:teuthology.orchestra.run.smithi031.stdout:Not possible to enable service . firewalld.service is not available 2024-09-13T22:04:22.655 INFO:teuthology.orchestra.run.smithi031.stdout:firewalld does not appear to be present 2024-09-13T22:04:22.655 INFO:teuthology.orchestra.run.smithi031.stdout:Not possible to open ports <[9283, 8765]>. firewalld.service is not available 2024-09-13T22:04:22.655 INFO:teuthology.orchestra.run.smithi031.stdout:Waiting for mgr to start... 2024-09-13T22:04:22.655 INFO:teuthology.orchestra.run.smithi031.stdout:Waiting for mgr... 2024-09-13T22:04:22.765 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:22 smithi031 bash[22709]: audit 2024-09-13T22:04:21.491862+0000 mon.a (mon.0) 12 : audit [INF] from='client.? 172.21.15.31:0/1186576357' entity='client.admin' 2024-09-13T22:04:22.765 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:22 smithi031 systemd[1]: /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-13T22:04:22.765 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:22 smithi031 systemd[1]: Started Ceph mgr.a for 89616338-721b-11ef-bceb-c7b262605968. 2024-09-13T22:04:24.473 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:24 smithi031 bash[22966]: debug 2024-09-13T22:04:24.373+0000 7fd791546040 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-09-13T22:04:24.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:24 smithi031 bash[22709]: audit 2024-09-13T22:04:24.464950+0000 mon.a (mon.0) 13 : audit [DBG] from='client.? 172.21.15.31:0/3479170278' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-13T22:04:25.064 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout 2024-09-13T22:04:25.064 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout { 2024-09-13T22:04:25.064 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "fsid": "89616338-721b-11ef-bceb-c7b262605968", 2024-09-13T22:04:25.065 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "health": { 2024-09-13T22:04:25.065 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-13T22:04:25.065 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-13T22:04:25.065 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-13T22:04:25.065 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout }, 2024-09-13T22:04:25.065 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-13T22:04:25.065 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-13T22:04:25.065 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout 0 2024-09-13T22:04:25.065 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout ], 2024-09-13T22:04:25.065 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-13T22:04:25.065 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "a" 2024-09-13T22:04:25.065 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout ], 2024-09-13T22:04:25.065 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "quorum_age": 3, 2024-09-13T22:04:25.066 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-13T22:04:25.066 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-13T22:04:25.066 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-13T22:04:25.066 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-13T22:04:25.066 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout }, 2024-09-13T22:04:25.066 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-13T22:04:25.066 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-13T22:04:25.066 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-13T22:04:25.066 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-13T22:04:25.066 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-13T22:04:25.066 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-13T22:04:25.066 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-13T22:04:25.066 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-13T22:04:25.070 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout }, 2024-09-13T22:04:25.070 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-13T22:04:25.070 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-13T22:04:25.070 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-13T22:04:25.070 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-13T22:04:25.070 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-13T22:04:25.070 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-13T22:04:25.071 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-13T22:04:25.071 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-13T22:04:25.071 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-13T22:04:25.071 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout }, 2024-09-13T22:04:25.071 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-13T22:04:25.071 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-13T22:04:25.071 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "btime": "2024-09-13T22:04:15:023402+0000", 2024-09-13T22:04:25.071 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-13T22:04:25.071 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-13T22:04:25.071 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout }, 2024-09-13T22:04:25.071 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-13T22:04:25.071 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-13T22:04:25.071 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-13T22:04:25.071 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-13T22:04:25.071 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-13T22:04:25.072 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-13T22:04:25.072 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "restful" 2024-09-13T22:04:25.072 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout ], 2024-09-13T22:04:25.072 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-13T22:04:25.072 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout }, 2024-09-13T22:04:25.072 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-13T22:04:25.072 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-13T22:04:25.072 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "modified": "2024-09-13T22:04:15.024314+0000", 2024-09-13T22:04:25.072 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-13T22:04:25.072 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout }, 2024-09-13T22:04:25.072 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-13T22:04:25.072 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout } 2024-09-13T22:04:25.072 INFO:teuthology.orchestra.run.smithi031.stdout:mgr not available, waiting (1/15)... 2024-09-13T22:04:25.973 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:25 smithi031 bash[22966]: debug 2024-09-13T22:04:25.621+0000 7fd791546040 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-09-13T22:04:25.973 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:25 smithi031 bash[22966]: debug 2024-09-13T22:04:25.689+0000 7fd791546040 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-09-13T22:04:25.973 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:25 smithi031 bash[22966]: debug 2024-09-13T22:04:25.845+0000 7fd791546040 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-09-13T22:04:26.862 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:26 smithi031 bash[22966]: debug 2024-09-13T22:04:26.521+0000 7fd791546040 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-09-13T22:04:26.863 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:26 smithi031 bash[22966]: debug 2024-09-13T22:04:26.593+0000 7fd791546040 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-09-13T22:04:26.863 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:26 smithi031 bash[22966]: debug 2024-09-13T22:04:26.665+0000 7fd791546040 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-09-13T22:04:26.863 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:26 smithi031 bash[22966]: debug 2024-09-13T22:04:26.857+0000 7fd791546040 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-09-13T22:04:27.153 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:26 smithi031 bash[22966]: debug 2024-09-13T22:04:26.937+0000 7fd791546040 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-09-13T22:04:27.154 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:27 smithi031 bash[22966]: debug 2024-09-13T22:04:27.009+0000 7fd791546040 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-09-13T22:04:27.473 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:27 smithi031 bash[22966]: debug 2024-09-13T22:04:27.277+0000 7fd791546040 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-09-13T22:04:27.473 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:27 smithi031 bash[22966]: debug 2024-09-13T22:04:27.349+0000 7fd791546040 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-09-13T22:04:27.898 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:27 smithi031 bash[22966]: debug 2024-09-13T22:04:27.553+0000 7fd791546040 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-09-13T22:04:27.898 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:27 smithi031 bash[22966]: debug 2024-09-13T22:04:27.633+0000 7fd791546040 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-09-13T22:04:28.222 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:27 smithi031 bash[22966]: debug 2024-09-13T22:04:27.893+0000 7fd791546040 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-09-13T22:04:28.223 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:28 smithi031 bash[22966]: debug 2024-09-13T22:04:28.085+0000 7fd791546040 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-09-13T22:04:28.535 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:28 smithi031 bash[22709]: audit 2024-09-13T22:04:28.319421+0000 mon.a (mon.0) 14 : audit [DBG] from='client.? 172.21.15.31:0/2509137749' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-13T22:04:28.535 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:28 smithi031 bash[22966]: debug 2024-09-13T22:04:28.257+0000 7fd791546040 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-09-13T22:04:28.535 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:28 smithi031 bash[22966]: debug 2024-09-13T22:04:28.341+0000 7fd791546040 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-09-13T22:04:28.930 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout 2024-09-13T22:04:28.930 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout { 2024-09-13T22:04:28.930 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "fsid": "89616338-721b-11ef-bceb-c7b262605968", 2024-09-13T22:04:28.930 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "health": { 2024-09-13T22:04:28.931 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-13T22:04:28.931 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-13T22:04:28.931 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-13T22:04:28.931 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout }, 2024-09-13T22:04:28.931 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-13T22:04:28.931 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-13T22:04:28.931 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout 0 2024-09-13T22:04:28.931 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout ], 2024-09-13T22:04:28.931 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-13T22:04:28.931 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "a" 2024-09-13T22:04:28.931 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout ], 2024-09-13T22:04:28.932 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "quorum_age": 7, 2024-09-13T22:04:28.932 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-13T22:04:28.932 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-13T22:04:28.932 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-13T22:04:28.932 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-13T22:04:28.932 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout }, 2024-09-13T22:04:28.932 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-13T22:04:28.932 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-13T22:04:28.932 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-13T22:04:28.932 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-13T22:04:28.933 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-13T22:04:28.933 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-13T22:04:28.933 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-13T22:04:28.933 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-13T22:04:28.933 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout }, 2024-09-13T22:04:28.933 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-13T22:04:28.933 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-13T22:04:28.933 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-13T22:04:28.933 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-13T22:04:28.933 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-13T22:04:28.933 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-13T22:04:28.933 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-13T22:04:28.934 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-13T22:04:28.934 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-13T22:04:28.934 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout }, 2024-09-13T22:04:28.934 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-13T22:04:28.934 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-13T22:04:28.934 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "btime": "2024-09-13T22:04:15:023402+0000", 2024-09-13T22:04:28.934 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-13T22:04:28.934 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-13T22:04:28.934 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout }, 2024-09-13T22:04:28.934 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-13T22:04:28.934 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-13T22:04:28.934 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-13T22:04:28.935 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-13T22:04:28.935 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-13T22:04:28.935 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-13T22:04:28.935 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "restful" 2024-09-13T22:04:28.935 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout ], 2024-09-13T22:04:28.935 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-13T22:04:28.935 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout }, 2024-09-13T22:04:28.935 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-13T22:04:28.935 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-13T22:04:28.935 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "modified": "2024-09-13T22:04:15.024314+0000", 2024-09-13T22:04:28.935 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-13T22:04:28.935 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout }, 2024-09-13T22:04:28.936 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-13T22:04:28.936 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout } 2024-09-13T22:04:28.936 INFO:teuthology.orchestra.run.smithi031.stdout:mgr not available, waiting (2/15)... 2024-09-13T22:04:28.972 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:28 smithi031 bash[22966]: debug 2024-09-13T22:04:28.533+0000 7fd791546040 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-09-13T22:04:29.687 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:29 smithi031 bash[22966]: debug 2024-09-13T22:04:29.373+0000 7fd791546040 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-09-13T22:04:29.687 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:29 smithi031 bash[22966]: debug 2024-09-13T22:04:29.449+0000 7fd791546040 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-09-13T22:04:29.973 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:29 smithi031 bash[22966]: debug 2024-09-13T22:04:29.681+0000 7fd791546040 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-09-13T22:04:29.973 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:29 smithi031 bash[22966]: debug 2024-09-13T22:04:29.761+0000 7fd791546040 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-09-13T22:04:30.473 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:30 smithi031 bash[22966]: debug 2024-09-13T22:04:30.165+0000 7fd791546040 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-09-13T22:04:30.473 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:30 smithi031 bash[22966]: debug 2024-09-13T22:04:30.249+0000 7fd791546040 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-09-13T22:04:30.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:30 smithi031 bash[22709]: cluster 2024-09-13T22:04:30.272266+0000 mon.a (mon.0) 15 : cluster [INF] Activating manager daemon a 2024-09-13T22:04:30.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:30 smithi031 bash[22709]: cluster 2024-09-13T22:04:30.278821+0000 mon.a (mon.0) 16 : cluster [DBG] mgrmap e2: a(active, starting, since 0.00674711s) 2024-09-13T22:04:30.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:30 smithi031 bash[22709]: audit 2024-09-13T22:04:30.280244+0000 mon.a (mon.0) 17 : audit [DBG] from='mgr.14100 172.21.15.31:0/2011526308' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-13T22:04:30.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:30 smithi031 bash[22709]: audit 2024-09-13T22:04:30.280346+0000 mon.a (mon.0) 18 : audit [DBG] from='mgr.14100 172.21.15.31:0/2011526308' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-13T22:04:30.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:30 smithi031 bash[22709]: audit 2024-09-13T22:04:30.280444+0000 mon.a (mon.0) 19 : audit [DBG] from='mgr.14100 172.21.15.31:0/2011526308' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-13T22:04:30.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:30 smithi031 bash[22709]: audit 2024-09-13T22:04:30.280535+0000 mon.a (mon.0) 20 : audit [DBG] from='mgr.14100 172.21.15.31:0/2011526308' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-13T22:04:30.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:30 smithi031 bash[22709]: audit 2024-09-13T22:04:30.281487+0000 mon.a (mon.0) 21 : audit [DBG] from='mgr.14100 172.21.15.31:0/2011526308' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-09-13T22:04:30.474 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:30 smithi031 bash[22709]: cluster 2024-09-13T22:04:30.308828+0000 mon.a (mon.0) 22 : cluster [INF] Manager daemon a is now available 2024-09-13T22:04:30.474 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:30 smithi031 bash[22709]: audit 2024-09-13T22:04:30.323319+0000 mon.a (mon.0) 23 : audit [INF] from='mgr.14100 172.21.15.31:0/2011526308' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-09-13T22:04:31.723 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:31 smithi031 bash[22709]: audit 2024-09-13T22:04:30.326352+0000 mon.a (mon.0) 24 : audit [INF] from='mgr.14100 172.21.15.31:0/2011526308' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-09-13T22:04:31.723 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:31 smithi031 bash[22709]: audit 2024-09-13T22:04:30.331255+0000 mon.a (mon.0) 25 : audit [INF] from='mgr.14100 172.21.15.31:0/2011526308' entity='mgr.a' 2024-09-13T22:04:31.723 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:31 smithi031 bash[22709]: audit 2024-09-13T22:04:30.333428+0000 mon.a (mon.0) 26 : audit [INF] from='mgr.14100 172.21.15.31:0/2011526308' entity='mgr.a' 2024-09-13T22:04:31.723 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:31 smithi031 bash[22709]: audit 2024-09-13T22:04:30.338913+0000 mon.a (mon.0) 27 : audit [INF] from='mgr.14100 172.21.15.31:0/2011526308' entity='mgr.a' 2024-09-13T22:04:31.723 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:31 smithi031 bash[22709]: cluster 2024-09-13T22:04:31.285882+0000 mon.a (mon.0) 28 : cluster [DBG] mgrmap e3: a(active, since 1.01381s) 2024-09-13T22:04:33.233 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout 2024-09-13T22:04:33.233 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout { 2024-09-13T22:04:33.234 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "fsid": "89616338-721b-11ef-bceb-c7b262605968", 2024-09-13T22:04:33.234 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "health": { 2024-09-13T22:04:33.234 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-13T22:04:33.234 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-13T22:04:33.234 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-13T22:04:33.234 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout }, 2024-09-13T22:04:33.234 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-13T22:04:33.234 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-13T22:04:33.234 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout 0 2024-09-13T22:04:33.234 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout ], 2024-09-13T22:04:33.234 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-13T22:04:33.234 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "a" 2024-09-13T22:04:33.234 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout ], 2024-09-13T22:04:33.234 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "quorum_age": 11, 2024-09-13T22:04:33.235 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-13T22:04:33.235 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-13T22:04:33.235 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-13T22:04:33.235 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-13T22:04:33.235 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout }, 2024-09-13T22:04:33.235 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-13T22:04:33.235 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-13T22:04:33.235 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-13T22:04:33.235 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-13T22:04:33.235 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-13T22:04:33.235 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-13T22:04:33.235 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-13T22:04:33.235 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-13T22:04:33.235 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout }, 2024-09-13T22:04:33.236 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-13T22:04:33.236 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-13T22:04:33.236 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-13T22:04:33.236 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-13T22:04:33.236 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-13T22:04:33.236 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-13T22:04:33.236 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-13T22:04:33.236 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-13T22:04:33.236 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-13T22:04:33.236 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout }, 2024-09-13T22:04:33.236 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-13T22:04:33.236 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-13T22:04:33.236 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "btime": "2024-09-13T22:04:15:023402+0000", 2024-09-13T22:04:33.236 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-13T22:04:33.237 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-13T22:04:33.237 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout }, 2024-09-13T22:04:33.237 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-13T22:04:33.237 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-13T22:04:33.237 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-13T22:04:33.237 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-13T22:04:33.237 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-13T22:04:33.237 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-13T22:04:33.237 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "restful" 2024-09-13T22:04:33.237 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout ], 2024-09-13T22:04:33.237 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-13T22:04:33.237 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout }, 2024-09-13T22:04:33.237 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-13T22:04:33.237 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-13T22:04:33.237 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "modified": "2024-09-13T22:04:15.024314+0000", 2024-09-13T22:04:33.238 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-13T22:04:33.238 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout }, 2024-09-13T22:04:33.238 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-13T22:04:33.238 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout } 2024-09-13T22:04:33.238 INFO:teuthology.orchestra.run.smithi031.stdout:mgr is available 2024-09-13T22:04:33.723 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:33 smithi031 bash[22709]: cluster 2024-09-13T22:04:32.334372+0000 mon.a (mon.0) 29 : cluster [DBG] mgrmap e4: a(active, since 2s) 2024-09-13T22:04:33.723 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:33 smithi031 bash[22709]: audit 2024-09-13T22:04:32.637597+0000 mon.a (mon.0) 30 : audit [DBG] from='client.? 172.21.15.31:0/2409639782' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-13T22:04:34.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:34 smithi031 bash[22709]: audit 2024-09-13T22:04:34.626523+0000 mon.a (mon.0) 31 : audit [INF] from='client.? 172.21.15.31:0/111566975' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-09-13T22:04:34.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:34 smithi031 bash[22709]: audit 2024-09-13T22:04:34.630775+0000 mon.a (mon.0) 32 : audit [INF] from='client.? 172.21.15.31:0/111566975' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-13T22:04:35.201 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout 2024-09-13T22:04:35.202 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout [global] 2024-09-13T22:04:35.202 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout fsid = 89616338-721b-11ef-bceb-c7b262605968 2024-09-13T22:04:35.202 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.31:3300,v1:172.21.15.31:6789] 2024-09-13T22:04:35.202 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-13T22:04:35.202 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-13T22:04:35.202 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-13T22:04:35.202 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-13T22:04:35.202 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout 2024-09-13T22:04:35.202 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-13T22:04:35.202 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-13T22:04:35.202 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout 2024-09-13T22:04:35.203 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout [osd] 2024-09-13T22:04:35.203 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-13T22:04:35.203 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-13T22:04:35.203 INFO:teuthology.orchestra.run.smithi031.stdout:Enabling cephadm module... 2024-09-13T22:04:37.223 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:36 smithi031 bash[22709]: audit 2024-09-13T22:04:36.670314+0000 mon.a (mon.0) 33 : audit [INF] from='client.? 172.21.15.31:0/103941026' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2024-09-13T22:04:37.223 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:36 smithi031 bash[22966]: ignoring --setuser ceph since I am not root 2024-09-13T22:04:37.223 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:36 smithi031 bash[22966]: ignoring --setgroup ceph since I am not root 2024-09-13T22:04:37.223 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:36 smithi031 bash[22966]: debug 2024-09-13T22:04:36.877+0000 7f5c6dffb040 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-09-13T22:04:38.116 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:37 smithi031 bash[22709]: audit 2024-09-13T22:04:36.722152+0000 mon.a (mon.0) 34 : audit [INF] from='client.? 172.21.15.31:0/103941026' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-09-13T22:04:38.116 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:37 smithi031 bash[22709]: cluster 2024-09-13T22:04:36.727526+0000 mon.a (mon.0) 35 : cluster [DBG] mgrmap e5: a(active, since 6s) 2024-09-13T22:04:38.473 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:38 smithi031 bash[22966]: debug 2024-09-13T22:04:38.113+0000 7f5c6dffb040 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-09-13T22:04:38.473 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:38 smithi031 bash[22966]: debug 2024-09-13T22:04:38.185+0000 7f5c6dffb040 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-09-13T22:04:38.473 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:38 smithi031 bash[22966]: debug 2024-09-13T22:04:38.345+0000 7f5c6dffb040 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-09-13T22:04:39.033 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:38 smithi031 bash[22709]: audit 2024-09-13T22:04:38.722014+0000 mon.a (mon.0) 36 : audit [DBG] from='client.? 172.21.15.31:0/3721488273' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-09-13T22:04:39.271 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout { 2024-09-13T22:04:39.271 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "epoch": 5, 2024-09-13T22:04:39.272 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-13T22:04:39.272 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-09-13T22:04:39.272 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-13T22:04:39.272 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout } 2024-09-13T22:04:39.272 INFO:teuthology.orchestra.run.smithi031.stdout:Waiting for the mgr to restart... 2024-09-13T22:04:39.272 INFO:teuthology.orchestra.run.smithi031.stdout:Waiting for mgr epoch 5... 2024-09-13T22:04:39.349 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:39 smithi031 bash[22966]: debug 2024-09-13T22:04:39.029+0000 7f5c6dffb040 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-09-13T22:04:39.349 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:39 smithi031 bash[22966]: debug 2024-09-13T22:04:39.101+0000 7f5c6dffb040 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-09-13T22:04:39.349 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:39 smithi031 bash[22966]: debug 2024-09-13T22:04:39.173+0000 7f5c6dffb040 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-09-13T22:04:39.722 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:39 smithi031 bash[22966]: debug 2024-09-13T22:04:39.369+0000 7f5c6dffb040 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-09-13T22:04:39.723 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:39 smithi031 bash[22966]: debug 2024-09-13T22:04:39.449+0000 7f5c6dffb040 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-09-13T22:04:39.723 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:39 smithi031 bash[22966]: debug 2024-09-13T22:04:39.521+0000 7f5c6dffb040 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-09-13T22:04:40.067 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:39 smithi031 bash[22966]: debug 2024-09-13T22:04:39.789+0000 7f5c6dffb040 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-09-13T22:04:40.067 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:39 smithi031 bash[22966]: debug 2024-09-13T22:04:39.857+0000 7f5c6dffb040 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-09-13T22:04:40.414 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:40 smithi031 bash[22966]: debug 2024-09-13T22:04:40.061+0000 7f5c6dffb040 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-09-13T22:04:40.414 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:40 smithi031 bash[22966]: debug 2024-09-13T22:04:40.145+0000 7f5c6dffb040 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-09-13T22:04:40.723 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:40 smithi031 bash[22966]: debug 2024-09-13T22:04:40.409+0000 7f5c6dffb040 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-09-13T22:04:40.723 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:40 smithi031 bash[22966]: debug 2024-09-13T22:04:40.597+0000 7f5c6dffb040 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-09-13T22:04:41.038 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:40 smithi031 bash[22966]: debug 2024-09-13T22:04:40.765+0000 7f5c6dffb040 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-09-13T22:04:41.038 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:40 smithi031 bash[22966]: debug 2024-09-13T22:04:40.849+0000 7f5c6dffb040 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-09-13T22:04:41.472 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:41 smithi031 bash[22966]: debug 2024-09-13T22:04:41.033+0000 7f5c6dffb040 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-09-13T22:04:42.185 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:41 smithi031 bash[22966]: debug 2024-09-13T22:04:41.869+0000 7f5c6dffb040 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-09-13T22:04:42.185 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:41 smithi031 bash[22966]: debug 2024-09-13T22:04:41.949+0000 7f5c6dffb040 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-09-13T22:04:42.472 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:42 smithi031 bash[22966]: debug 2024-09-13T22:04:42.181+0000 7f5c6dffb040 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-09-13T22:04:42.473 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:42 smithi031 bash[22966]: debug 2024-09-13T22:04:42.257+0000 7f5c6dffb040 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-09-13T22:04:42.972 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:42 smithi031 bash[22966]: debug 2024-09-13T22:04:42.665+0000 7f5c6dffb040 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-09-13T22:04:42.973 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:42 smithi031 bash[22966]: debug 2024-09-13T22:04:42.745+0000 7f5c6dffb040 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-09-13T22:04:42.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:42 smithi031 bash[22709]: cluster 2024-09-13T22:04:42.768311+0000 mon.a (mon.0) 37 : cluster [INF] Active manager daemon a restarted 2024-09-13T22:04:42.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:42 smithi031 bash[22709]: cluster 2024-09-13T22:04:42.768720+0000 mon.a (mon.0) 38 : cluster [INF] Activating manager daemon a 2024-09-13T22:04:42.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:42 smithi031 bash[22709]: cluster 2024-09-13T22:04:42.775576+0000 mon.a (mon.0) 39 : cluster [DBG] osdmap e2: 0 total, 0 up, 0 in 2024-09-13T22:04:42.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:42 smithi031 bash[22709]: cluster 2024-09-13T22:04:42.775688+0000 mon.a (mon.0) 40 : cluster [DBG] mgrmap e6: a(active, starting, since 0.00714374s) 2024-09-13T22:04:42.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:42 smithi031 bash[22709]: audit 2024-09-13T22:04:42.778325+0000 mon.a (mon.0) 41 : audit [DBG] from='mgr.14118 172.21.15.31:0/3482464975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-13T22:04:42.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:42 smithi031 bash[22709]: audit 2024-09-13T22:04:42.780129+0000 mon.a (mon.0) 42 : audit [DBG] from='mgr.14118 172.21.15.31:0/3482464975' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-09-13T22:04:42.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:42 smithi031 bash[22709]: audit 2024-09-13T22:04:42.781178+0000 mon.a (mon.0) 43 : audit [DBG] from='mgr.14118 172.21.15.31:0/3482464975' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-13T22:04:42.974 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:42 smithi031 bash[22709]: audit 2024-09-13T22:04:42.781297+0000 mon.a (mon.0) 44 : audit [DBG] from='mgr.14118 172.21.15.31:0/3482464975' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-13T22:04:42.974 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:42 smithi031 bash[22709]: audit 2024-09-13T22:04:42.781430+0000 mon.a (mon.0) 45 : audit [DBG] from='mgr.14118 172.21.15.31:0/3482464975' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-13T22:04:42.974 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:42 smithi031 bash[22709]: cluster 2024-09-13T22:04:42.804456+0000 mon.a (mon.0) 46 : cluster [INF] Manager daemon a is now available 2024-09-13T22:04:42.974 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:42 smithi031 bash[22709]: audit 2024-09-13T22:04:42.818397+0000 mon.a (mon.0) 47 : audit [INF] from='mgr.14118 172.21.15.31:0/3482464975' entity='mgr.a' 2024-09-13T22:04:44.223 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:43 smithi031 bash[22709]: cephadm 2024-09-13T22:04:42.816009+0000 mgr.a (mgr.14118) 1 : cephadm [INF] Found migration_current of "None". Setting to last migration. 2024-09-13T22:04:44.223 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:43 smithi031 bash[22709]: audit 2024-09-13T22:04:42.823308+0000 mon.a (mon.0) 48 : audit [INF] from='mgr.14118 172.21.15.31:0/3482464975' entity='mgr.a' 2024-09-13T22:04:44.223 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:43 smithi031 bash[22709]: audit 2024-09-13T22:04:42.828090+0000 mon.a (mon.0) 49 : audit [INF] from='mgr.14118 172.21.15.31:0/3482464975' entity='mgr.a' 2024-09-13T22:04:44.223 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:43 smithi031 bash[22709]: audit 2024-09-13T22:04:42.833346+0000 mon.a (mon.0) 50 : audit [DBG] from='mgr.14118 172.21.15.31:0/3482464975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:04:44.223 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:43 smithi031 bash[22709]: audit 2024-09-13T22:04:42.835753+0000 mon.a (mon.0) 51 : audit [DBG] from='mgr.14118 172.21.15.31:0/3482464975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:04:44.223 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:43 smithi031 bash[22709]: audit 2024-09-13T22:04:42.844937+0000 mon.a (mon.0) 52 : audit [INF] from='mgr.14118 172.21.15.31:0/3482464975' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-09-13T22:04:44.223 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:43 smithi031 bash[22709]: audit 2024-09-13T22:04:42.847339+0000 mon.a (mon.0) 53 : audit [INF] from='mgr.14118 172.21.15.31:0/3482464975' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-09-13T22:04:44.223 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:43 smithi031 bash[22709]: cluster 2024-09-13T22:04:43.780726+0000 mon.a (mon.0) 54 : cluster [DBG] mgrmap e7: a(active, since 1.01216s) 2024-09-13T22:04:44.372 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout { 2024-09-13T22:04:44.372 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2024-09-13T22:04:44.372 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-13T22:04:44.372 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout } 2024-09-13T22:04:44.373 INFO:teuthology.orchestra.run.smithi031.stdout:mgr epoch 5 is available 2024-09-13T22:04:44.373 INFO:teuthology.orchestra.run.smithi031.stdout:Setting orchestrator backend to cephadm... 2024-09-13T22:04:45.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:45 smithi031 bash[22709]: audit 2024-09-13T22:04:43.779652+0000 mgr.a (mgr.14118) 2 : audit [DBG] from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-13T22:04:45.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:45 smithi031 bash[22709]: audit 2024-09-13T22:04:43.793941+0000 mgr.a (mgr.14118) 3 : audit [DBG] from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-13T22:04:45.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:45 smithi031 bash[22709]: audit 2024-09-13T22:04:44.385871+0000 mon.a (mon.0) 55 : audit [INF] from='mgr.14118 172.21.15.31:0/3482464975' entity='mgr.a' 2024-09-13T22:04:45.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:45 smithi031 bash[22709]: audit 2024-09-13T22:04:44.390753+0000 mon.a (mon.0) 56 : audit [INF] from='mgr.14118 172.21.15.31:0/3482464975' entity='mgr.a' 2024-09-13T22:04:46.723 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:46 smithi031 bash[22709]: cluster 2024-09-13T22:04:45.394366+0000 mon.a (mon.0) 57 : cluster [DBG] mgrmap e8: a(active, since 2s) 2024-09-13T22:04:46.723 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:46 smithi031 bash[22709]: audit 2024-09-13T22:04:45.730172+0000 mgr.a (mgr.14118) 4 : audit [DBG] from='client.14130 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:04:46.723 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:46 smithi031 bash[22709]: audit 2024-09-13T22:04:45.736287+0000 mon.a (mon.0) 58 : audit [INF] from='mgr.14118 172.21.15.31:0/3482464975' entity='mgr.a' 2024-09-13T22:04:46.723 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:46 smithi031 bash[22709]: audit 2024-09-13T22:04:45.751627+0000 mon.a (mon.0) 59 : audit [DBG] from='mgr.14118 172.21.15.31:0/3482464975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:04:46.723 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:46 smithi031 bash[22709]: audit 2024-09-13T22:04:46.307301+0000 mon.a (mon.0) 60 : audit [DBG] from='mgr.14118 172.21.15.31:0/3482464975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:04:46.723 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:46 smithi031 bash[22966]: debug 2024-09-13T22:04:46.305+0000 7f5bd52fa640 -1 log_channel(cephadm) log [ERR] : [13/Sep/2024:22:04:46] ENGINE Error in HTTPServer.serve 2024-09-13T22:04:46.723 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:46 smithi031 bash[22966]: Traceback (most recent call last): 2024-09-13T22:04:46.724 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:46 smithi031 bash[22966]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-13T22:04:46.724 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:46 smithi031 bash[22966]: self._connections.run(self.expiration_interval) 2024-09-13T22:04:46.724 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:46 smithi031 bash[22966]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-13T22:04:46.724 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:46 smithi031 bash[22966]: self._run(expiration_interval) 2024-09-13T22:04:46.724 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:46 smithi031 bash[22966]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-13T22:04:46.724 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:46 smithi031 bash[22966]: new_conn = self._from_server_socket(self.server.socket) 2024-09-13T22:04:46.724 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:46 smithi031 bash[22966]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-13T22:04:46.724 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:46 smithi031 bash[22966]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-13T22:04:46.724 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:46 smithi031 bash[22966]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-13T22:04:46.724 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:46 smithi031 bash[22966]: s = self.context.wrap_socket( 2024-09-13T22:04:46.724 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:46 smithi031 bash[22966]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-13T22:04:46.724 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:46 smithi031 bash[22966]: return self.sslsocket_class._create( 2024-09-13T22:04:46.725 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:46 smithi031 bash[22966]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-13T22:04:46.725 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:46 smithi031 bash[22966]: self.do_handshake() 2024-09-13T22:04:46.725 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:46 smithi031 bash[22966]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-13T22:04:46.725 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:46 smithi031 bash[22966]: self._sslobj.do_handshake() 2024-09-13T22:04:46.725 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:46 smithi031 bash[22966]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-13T22:04:47.723 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:47 smithi031 bash[22709]: cephadm 2024-09-13T22:04:46.079462+0000 mgr.a (mgr.14118) 5 : cephadm [INF] [13/Sep/2024:22:04:46] ENGINE Bus STARTING 2024-09-13T22:04:47.723 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:47 smithi031 bash[22709]: cephadm 2024-09-13T22:04:46.181249+0000 mgr.a (mgr.14118) 6 : cephadm [INF] [13/Sep/2024:22:04:46] ENGINE Serving on http://172.21.15.31:8765 2024-09-13T22:04:47.723 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:47 smithi031 bash[22709]: cephadm 2024-09-13T22:04:46.306513+0000 mgr.a (mgr.14118) 7 : cephadm [INF] [13/Sep/2024:22:04:46] ENGINE Serving on https://172.21.15.31:7150 2024-09-13T22:04:47.723 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:47 smithi031 bash[22709]: cephadm 2024-09-13T22:04:46.306648+0000 mgr.a (mgr.14118) 8 : cephadm [INF] [13/Sep/2024:22:04:46] ENGINE Bus STARTED 2024-09-13T22:04:47.724 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:47 smithi031 bash[22709]: cephadm 2024-09-13T22:04:46.308176+0000 mgr.a (mgr.14118) 9 : cephadm [ERR] [13/Sep/2024:22:04:46] ENGINE Error in HTTPServer.serve 2024-09-13T22:04:47.724 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:47 smithi031 bash[22709]: Traceback (most recent call last): 2024-09-13T22:04:47.724 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:47 smithi031 bash[22709]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-13T22:04:47.724 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:47 smithi031 bash[22709]: self._connections.run(self.expiration_interval) 2024-09-13T22:04:47.724 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:47 smithi031 bash[22709]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-13T22:04:47.724 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:47 smithi031 bash[22709]: self._run(expiration_interval) 2024-09-13T22:04:47.724 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:47 smithi031 bash[22709]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-13T22:04:47.724 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:47 smithi031 bash[22709]: new_conn = self._from_server_socket(self.server.socket) 2024-09-13T22:04:47.724 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:47 smithi031 bash[22709]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-13T22:04:47.724 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:47 smithi031 bash[22709]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-13T22:04:47.724 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:47 smithi031 bash[22709]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-13T22:04:47.725 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:47 smithi031 bash[22709]: s = self.context.wrap_socket( 2024-09-13T22:04:47.725 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:47 smithi031 bash[22709]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-13T22:04:47.725 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:47 smithi031 bash[22709]: return self.sslsocket_class._create( 2024-09-13T22:04:47.725 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:47 smithi031 bash[22709]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-13T22:04:47.725 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:47 smithi031 bash[22709]: self.do_handshake() 2024-09-13T22:04:47.725 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:47 smithi031 bash[22709]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-13T22:04:47.725 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:47 smithi031 bash[22709]: self._sslobj.do_handshake() 2024-09-13T22:04:47.725 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:47 smithi031 bash[22709]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-13T22:04:48.363 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout value unchanged 2024-09-13T22:04:48.363 INFO:teuthology.orchestra.run.smithi031.stdout:Generating ssh key... 2024-09-13T22:04:49.143 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:48 smithi031 bash[22709]: audit 2024-09-13T22:04:47.790893+0000 mgr.a (mgr.14118) 10 : audit [DBG] from='client.14132 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:04:50.101 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:49 smithi031 bash[22709]: audit 2024-09-13T22:04:49.677896+0000 mgr.a (mgr.14118) 11 : audit [DBG] from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:04:50.101 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:49 smithi031 bash[22709]: cephadm 2024-09-13T22:04:49.678329+0000 mgr.a (mgr.14118) 12 : cephadm [INF] Generating ssh key... 2024-09-13T22:04:50.101 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:49 smithi031 bash[22966]: Generating public/private rsa key pair. 2024-09-13T22:04:50.102 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:49 smithi031 bash[22966]: Your identification has been saved in /tmp/tmphpjo5nba/key 2024-09-13T22:04:50.102 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:49 smithi031 bash[22966]: Your public key has been saved in /tmp/tmphpjo5nba/key.pub 2024-09-13T22:04:50.102 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:49 smithi031 bash[22966]: The key fingerprint is: 2024-09-13T22:04:50.102 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:49 smithi031 bash[22966]: SHA256:KXRxYEEXAoLuztyymqfxIQt2OYakHi3tqLs+mXqWa9g ceph-89616338-721b-11ef-bceb-c7b262605968 2024-09-13T22:04:50.102 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:49 smithi031 bash[22966]: The key's randomart image is: 2024-09-13T22:04:50.103 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:49 smithi031 bash[22966]: +---[RSA 3072]----+ 2024-09-13T22:04:50.103 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:49 smithi031 bash[22966]: | .. .oBo+. | 2024-09-13T22:04:50.103 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:49 smithi031 bash[22966]: | . . . = | 2024-09-13T22:04:50.103 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:49 smithi031 bash[22966]: | . . . | 2024-09-13T22:04:50.103 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:49 smithi031 bash[22966]: | . . . . | 2024-09-13T22:04:50.103 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:49 smithi031 bash[22966]: | o . S | 2024-09-13T22:04:50.103 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:49 smithi031 bash[22966]: |o = . . | 2024-09-13T22:04:50.104 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:49 smithi031 bash[22966]: |=@+X | 2024-09-13T22:04:50.104 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:49 smithi031 bash[22966]: |=XE.o | 2024-09-13T22:04:50.104 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:49 smithi031 bash[22966]: |&&== | 2024-09-13T22:04:50.104 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:04:49 smithi031 bash[22966]: +----[SHA256]-----+ 2024-09-13T22:04:51.222 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:50 smithi031 bash[22709]: audit 2024-09-13T22:04:49.883479+0000 mon.a (mon.0) 61 : audit [INF] from='mgr.14118 172.21.15.31:0/3482464975' entity='mgr.a' 2024-09-13T22:04:51.223 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:50 smithi031 bash[22709]: audit 2024-09-13T22:04:49.887878+0000 mon.a (mon.0) 62 : audit [INF] from='mgr.14118 172.21.15.31:0/3482464975' entity='mgr.a' 2024-09-13T22:04:52.502 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCRkn0xertUW4ox9IvgmZuH8k0WYpQ7DvAvS/TWPKhoC1hVpvI9lZAzV0CO50Du2+PQBmbwFpDVARqLDj1hddWFzCAcJg3wvoRyV9qQuusFrinPhfSbADSIQr8xVxo6NoHXoUStjL+WbX8NHiE0GARwxHS1+tJj6g16T9koj9ONitT9YKapKgmukRw1OesSZ0CY74MLn5hsJdi/A1SiRJhaVtayhvQx4E/8kPqJCFP60Aqa7aaLLJ/zhieRNo+RbvtrVqDXTC99r7QtDLC7PDDyJKOuLFn7mC2ik+H8gtyVCaCNunGsxVaggNF9fn1CFYAE/W+aIsXux4YkVoZOcKBojbIWmXbD87G+1TI4RrKIq0nYOtqbeOHknSPJVeqDmxVe/3CgMDyy9yi9ynwgF3liw3G6LS6a/298RzALgk7Wy9O2vZzHP0k2IXR1n27taosZaGF0wuWa3tvr90bTFkVnVDylhd4tsqP+yTSr4UAGOmR1yHhAP8yG8WZSWNX0z7U= ceph-89616338-721b-11ef-bceb-c7b262605968 2024-09-13T22:04:52.502 INFO:teuthology.orchestra.run.smithi031.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-09-13T22:04:52.503 INFO:teuthology.orchestra.run.smithi031.stdout:Adding key to root@localhost authorized_keys... 2024-09-13T22:04:52.514 INFO:teuthology.orchestra.run.smithi031.stdout:Adding host smithi031... 2024-09-13T22:04:52.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:52 smithi031 bash[22709]: audit 2024-09-13T22:04:51.901367+0000 mgr.a (mgr.14118) 13 : audit [DBG] from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:04:55.099 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:54 smithi031 bash[22709]: audit 2024-09-13T22:04:53.950151+0000 mgr.a (mgr.14118) 14 : audit [DBG] from='client.14138 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi031", "addr": "172.21.15.31", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:04:56.111 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:55 smithi031 bash[22709]: cephadm 2024-09-13T22:04:55.246077+0000 mgr.a (mgr.14118) 15 : cephadm [INF] Deploying cephadm binary to smithi031 2024-09-13T22:04:59.628 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout Added host 'smithi031' with addr '172.21.15.31' 2024-09-13T22:04:59.628 INFO:teuthology.orchestra.run.smithi031.stdout:Deploying unmanaged mon service... 2024-09-13T22:05:00.222 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:59 smithi031 bash[22709]: audit 2024-09-13T22:04:58.842858+0000 mon.a (mon.0) 63 : audit [INF] from='mgr.14118 172.21.15.31:0/3482464975' entity='mgr.a' 2024-09-13T22:05:00.222 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:59 smithi031 bash[22709]: cephadm 2024-09-13T22:04:58.843388+0000 mgr.a (mgr.14118) 16 : cephadm [INF] Added host smithi031 2024-09-13T22:05:00.223 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:04:59 smithi031 bash[22709]: audit 2024-09-13T22:04:58.843782+0000 mon.a (mon.0) 64 : audit [DBG] from='mgr.14118 172.21.15.31:0/3482464975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:05:02.318 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2024-09-13T22:05:02.318 INFO:teuthology.orchestra.run.smithi031.stdout:Deploying unmanaged mgr service... 2024-09-13T22:05:02.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:02 smithi031 bash[22709]: audit 2024-09-13T22:05:01.514569+0000 mgr.a (mgr.14118) 17 : audit [DBG] from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:05:02.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:02 smithi031 bash[22709]: cephadm 2024-09-13T22:05:01.517275+0000 mgr.a (mgr.14118) 18 : cephadm [INF] Saving service mon spec with placement count:5 2024-09-13T22:05:02.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:02 smithi031 bash[22709]: audit 2024-09-13T22:05:01.520269+0000 mon.a (mon.0) 65 : audit [INF] from='mgr.14118 172.21.15.31:0/3482464975' entity='mgr.a' 2024-09-13T22:05:02.723 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:02 smithi031 bash[22709]: audit 2024-09-13T22:05:02.093917+0000 mon.a (mon.0) 66 : audit [INF] from='mgr.14118 172.21.15.31:0/3482464975' entity='mgr.a' 2024-09-13T22:05:03.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:03 smithi031 bash[22709]: audit 2024-09-13T22:05:02.696207+0000 mon.a (mon.0) 67 : audit [INF] from='mgr.14118 172.21.15.31:0/3482464975' entity='mgr.a' 2024-09-13T22:05:04.434 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2024-09-13T22:05:04.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:04 smithi031 bash[22709]: cluster 2024-09-13T22:05:02.782704+0000 mgr.a (mgr.14118) 19 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:05:04.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:04 smithi031 bash[22709]: audit 2024-09-13T22:05:03.855214+0000 mon.a (mon.0) 68 : audit [INF] from='mgr.14118 172.21.15.31:0/3482464975' entity='mgr.a' 2024-09-13T22:05:05.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:05 smithi031 bash[22709]: audit 2024-09-13T22:05:03.849772+0000 mgr.a (mgr.14118) 20 : audit [DBG] from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:05:05.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:05 smithi031 bash[22709]: cephadm 2024-09-13T22:05:03.851988+0000 mgr.a (mgr.14118) 21 : cephadm [INF] Saving service mgr spec with placement count:2 2024-09-13T22:05:07.125 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:06 smithi031 bash[22709]: cluster 2024-09-13T22:05:04.783130+0000 mgr.a (mgr.14118) 22 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:05:07.125 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:06 smithi031 bash[22709]: audit 2024-09-13T22:05:05.775205+0000 mon.a (mon.0) 69 : audit [INF] from='client.? 172.21.15.31:0/1643167850' entity='client.admin' 2024-09-13T22:05:08.232 INFO:teuthology.orchestra.run.smithi031.stdout:Enabling the dashboard module... 2024-09-13T22:05:08.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:08 smithi031 bash[22709]: cluster 2024-09-13T22:05:06.783448+0000 mgr.a (mgr.14118) 23 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:05:08.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:08 smithi031 bash[22709]: audit 2024-09-13T22:05:07.660903+0000 mon.a (mon.0) 70 : audit [INF] from='client.? 172.21.15.31:0/1532128564' entity='client.admin' 2024-09-13T22:05:09.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:09 smithi031 bash[22709]: audit 2024-09-13T22:05:09.615258+0000 mon.a (mon.0) 71 : audit [INF] from='client.? 172.21.15.31:0/3078383010' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2024-09-13T22:05:09.973 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:09 smithi031 bash[22966]: ignoring --setuser ceph since I am not root 2024-09-13T22:05:09.973 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:09 smithi031 bash[22966]: ignoring --setgroup ceph since I am not root 2024-09-13T22:05:09.973 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:09 smithi031 bash[22966]: debug 2024-09-13T22:05:09.828+0000 7fb1d4e9e040 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-09-13T22:05:10.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:10 smithi031 bash[22709]: audit 2024-09-13T22:05:09.665958+0000 mon.a (mon.0) 72 : audit [INF] from='client.? 172.21.15.31:0/3078383010' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-09-13T22:05:10.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:10 smithi031 bash[22709]: cluster 2024-09-13T22:05:09.671998+0000 mon.a (mon.0) 73 : cluster [DBG] mgrmap e9: a(active, since 26s) 2024-09-13T22:05:11.472 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:11 smithi031 bash[22966]: debug 2024-09-13T22:05:11.084+0000 7fb1d4e9e040 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-09-13T22:05:11.473 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:11 smithi031 bash[22966]: debug 2024-09-13T22:05:11.156+0000 7fb1d4e9e040 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-09-13T22:05:11.473 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:11 smithi031 bash[22966]: debug 2024-09-13T22:05:11.316+0000 7fb1d4e9e040 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-09-13T22:05:11.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:11 smithi031 bash[22709]: audit 2024-09-13T22:05:11.679248+0000 mon.a (mon.0) 74 : audit [DBG] from='client.? 172.21.15.31:0/2173695863' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-09-13T22:05:12.255 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout { 2024-09-13T22:05:12.255 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "epoch": 9, 2024-09-13T22:05:12.255 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-13T22:05:12.255 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-09-13T22:05:12.255 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-13T22:05:12.255 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout } 2024-09-13T22:05:12.256 INFO:teuthology.orchestra.run.smithi031.stdout:Waiting for the mgr to restart... 2024-09-13T22:05:12.256 INFO:teuthology.orchestra.run.smithi031.stdout:Waiting for mgr epoch 9... 2024-09-13T22:05:12.337 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:12 smithi031 bash[22966]: debug 2024-09-13T22:05:12.000+0000 7fb1d4e9e040 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-09-13T22:05:12.337 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:12 smithi031 bash[22966]: debug 2024-09-13T22:05:12.072+0000 7fb1d4e9e040 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-09-13T22:05:12.337 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:12 smithi031 bash[22966]: debug 2024-09-13T22:05:12.144+0000 7fb1d4e9e040 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-09-13T22:05:12.722 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:12 smithi031 bash[22966]: debug 2024-09-13T22:05:12.340+0000 7fb1d4e9e040 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-09-13T22:05:12.722 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:12 smithi031 bash[22966]: debug 2024-09-13T22:05:12.420+0000 7fb1d4e9e040 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-09-13T22:05:12.722 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:12 smithi031 bash[22966]: debug 2024-09-13T22:05:12.492+0000 7fb1d4e9e040 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-09-13T22:05:13.040 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:12 smithi031 bash[22966]: debug 2024-09-13T22:05:12.760+0000 7fb1d4e9e040 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-09-13T22:05:13.041 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:12 smithi031 bash[22966]: debug 2024-09-13T22:05:12.832+0000 7fb1d4e9e040 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-09-13T22:05:13.387 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:13 smithi031 bash[22966]: debug 2024-09-13T22:05:13.036+0000 7fb1d4e9e040 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-09-13T22:05:13.387 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:13 smithi031 bash[22966]: debug 2024-09-13T22:05:13.116+0000 7fb1d4e9e040 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-09-13T22:05:13.722 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:13 smithi031 bash[22966]: debug 2024-09-13T22:05:13.384+0000 7fb1d4e9e040 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-09-13T22:05:13.722 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:13 smithi031 bash[22966]: debug 2024-09-13T22:05:13.568+0000 7fb1d4e9e040 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-09-13T22:05:14.010 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:13 smithi031 bash[22966]: debug 2024-09-13T22:05:13.740+0000 7fb1d4e9e040 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-09-13T22:05:14.011 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:13 smithi031 bash[22966]: debug 2024-09-13T22:05:13.820+0000 7fb1d4e9e040 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-09-13T22:05:15.175 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:14 smithi031 bash[22966]: debug 2024-09-13T22:05:14.008+0000 7fb1d4e9e040 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-09-13T22:05:15.175 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:14 smithi031 bash[22966]: debug 2024-09-13T22:05:14.860+0000 7fb1d4e9e040 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-09-13T22:05:15.175 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:14 smithi031 bash[22966]: debug 2024-09-13T22:05:14.936+0000 7fb1d4e9e040 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-09-13T22:05:15.472 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:15 smithi031 bash[22966]: debug 2024-09-13T22:05:15.172+0000 7fb1d4e9e040 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-09-13T22:05:15.472 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:15 smithi031 bash[22966]: debug 2024-09-13T22:05:15.248+0000 7fb1d4e9e040 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-09-13T22:05:15.972 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:15 smithi031 bash[22966]: debug 2024-09-13T22:05:15.656+0000 7fb1d4e9e040 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-09-13T22:05:15.972 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:15 smithi031 bash[22966]: debug 2024-09-13T22:05:15.740+0000 7fb1d4e9e040 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-09-13T22:05:15.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:15 smithi031 bash[22709]: cluster 2024-09-13T22:05:15.764687+0000 mon.a (mon.0) 75 : cluster [INF] Active manager daemon a restarted 2024-09-13T22:05:15.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:15 smithi031 bash[22709]: cluster 2024-09-13T22:05:15.765108+0000 mon.a (mon.0) 76 : cluster [INF] Activating manager daemon a 2024-09-13T22:05:15.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:15 smithi031 bash[22709]: cluster 2024-09-13T22:05:15.772474+0000 mon.a (mon.0) 77 : cluster [DBG] osdmap e3: 0 total, 0 up, 0 in 2024-09-13T22:05:15.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:15 smithi031 bash[22709]: cluster 2024-09-13T22:05:15.772716+0000 mon.a (mon.0) 78 : cluster [DBG] mgrmap e10: a(active, starting, since 0.00777874s) 2024-09-13T22:05:15.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:15 smithi031 bash[22709]: audit 2024-09-13T22:05:15.774481+0000 mon.a (mon.0) 79 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-13T22:05:15.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:15 smithi031 bash[22709]: audit 2024-09-13T22:05:15.775627+0000 mon.a (mon.0) 80 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-09-13T22:05:15.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:15 smithi031 bash[22709]: audit 2024-09-13T22:05:15.776843+0000 mon.a (mon.0) 81 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-13T22:05:15.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:15 smithi031 bash[22709]: audit 2024-09-13T22:05:15.777004+0000 mon.a (mon.0) 82 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-13T22:05:15.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:15 smithi031 bash[22709]: audit 2024-09-13T22:05:15.777211+0000 mon.a (mon.0) 83 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-13T22:05:15.974 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:15 smithi031 bash[22709]: cluster 2024-09-13T22:05:15.800370+0000 mon.a (mon.0) 84 : cluster [INF] Manager daemon a is now available 2024-09-13T22:05:17.222 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:16 smithi031 bash[22709]: audit 2024-09-13T22:05:15.816309+0000 mon.a (mon.0) 85 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:05:17.223 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:16 smithi031 bash[22709]: audit 2024-09-13T22:05:15.819657+0000 mon.a (mon.0) 86 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:05:17.223 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:16 smithi031 bash[22709]: audit 2024-09-13T22:05:15.837746+0000 mon.a (mon.0) 87 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-09-13T22:05:17.223 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:16 smithi031 bash[22709]: audit 2024-09-13T22:05:15.840326+0000 mon.a (mon.0) 88 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-09-13T22:05:17.223 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:16 smithi031 bash[22709]: cluster 2024-09-13T22:05:16.777655+0000 mon.a (mon.0) 89 : cluster [DBG] mgrmap e11: a(active, since 1.01271s) 2024-09-13T22:05:17.402 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout { 2024-09-13T22:05:17.402 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2024-09-13T22:05:17.402 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-13T22:05:17.402 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout } 2024-09-13T22:05:17.403 INFO:teuthology.orchestra.run.smithi031.stdout:mgr epoch 9 is available 2024-09-13T22:05:17.403 INFO:teuthology.orchestra.run.smithi031.stdout:Generating a dashboard self-signed certificate... 2024-09-13T22:05:17.828 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:17 smithi031 bash[22966]: debug 2024-09-13T22:05:17.512+0000 7fb13a95a640 -1 log_channel(cephadm) log [ERR] : [13/Sep/2024:22:05:17] ENGINE Error in HTTPServer.serve 2024-09-13T22:05:17.828 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:17 smithi031 bash[22966]: Traceback (most recent call last): 2024-09-13T22:05:17.828 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:17 smithi031 bash[22966]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-13T22:05:17.828 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:17 smithi031 bash[22966]: self._connections.run(self.expiration_interval) 2024-09-13T22:05:17.829 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:17 smithi031 bash[22966]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-13T22:05:17.829 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:17 smithi031 bash[22966]: self._run(expiration_interval) 2024-09-13T22:05:17.829 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:17 smithi031 bash[22966]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-13T22:05:17.829 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:17 smithi031 bash[22966]: new_conn = self._from_server_socket(self.server.socket) 2024-09-13T22:05:17.829 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:17 smithi031 bash[22966]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-13T22:05:17.829 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:17 smithi031 bash[22966]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-13T22:05:17.830 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:17 smithi031 bash[22966]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-13T22:05:17.830 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:17 smithi031 bash[22966]: s = self.context.wrap_socket( 2024-09-13T22:05:17.830 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:17 smithi031 bash[22966]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-13T22:05:17.830 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:17 smithi031 bash[22966]: return self.sslsocket_class._create( 2024-09-13T22:05:17.830 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:17 smithi031 bash[22966]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-13T22:05:17.830 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:17 smithi031 bash[22966]: self.do_handshake() 2024-09-13T22:05:17.831 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:17 smithi031 bash[22966]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-13T22:05:17.831 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:17 smithi031 bash[22966]: self._sslobj.do_handshake() 2024-09-13T22:05:17.831 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:17 smithi031 bash[22966]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-13T22:05:18.223 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:17 smithi031 bash[22709]: cephadm 2024-09-13T22:05:17.285790+0000 mgr.a (mgr.14150) 3 : cephadm [INF] [13/Sep/2024:22:05:17] ENGINE Bus STARTING 2024-09-13T22:05:18.223 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:17 smithi031 bash[22709]: cephadm 2024-09-13T22:05:17.387531+0000 mgr.a (mgr.14150) 4 : cephadm [INF] [13/Sep/2024:22:05:17] ENGINE Serving on http://172.21.15.31:8765 2024-09-13T22:05:18.223 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:17 smithi031 bash[22709]: cephadm 2024-09-13T22:05:17.513402+0000 mgr.a (mgr.14150) 5 : cephadm [INF] [13/Sep/2024:22:05:17] ENGINE Serving on https://172.21.15.31:7150 2024-09-13T22:05:18.223 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:17 smithi031 bash[22709]: cephadm 2024-09-13T22:05:17.513643+0000 mgr.a (mgr.14150) 6 : cephadm [INF] [13/Sep/2024:22:05:17] ENGINE Bus STARTED 2024-09-13T22:05:18.223 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:17 smithi031 bash[22709]: cephadm 2024-09-13T22:05:17.515826+0000 mgr.a (mgr.14150) 7 : cephadm [ERR] [13/Sep/2024:22:05:17] ENGINE Error in HTTPServer.serve 2024-09-13T22:05:18.223 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:17 smithi031 bash[22709]: Traceback (most recent call last): 2024-09-13T22:05:18.224 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:17 smithi031 bash[22709]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-13T22:05:18.224 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:17 smithi031 bash[22709]: self._connections.run(self.expiration_interval) 2024-09-13T22:05:18.224 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:17 smithi031 bash[22709]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-13T22:05:18.224 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:17 smithi031 bash[22709]: self._run(expiration_interval) 2024-09-13T22:05:18.224 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:17 smithi031 bash[22709]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-13T22:05:18.224 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:17 smithi031 bash[22709]: new_conn = self._from_server_socket(self.server.socket) 2024-09-13T22:05:18.224 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:17 smithi031 bash[22709]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-13T22:05:18.224 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:17 smithi031 bash[22709]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-13T22:05:18.224 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:17 smithi031 bash[22709]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-13T22:05:18.224 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:17 smithi031 bash[22709]: s = self.context.wrap_socket( 2024-09-13T22:05:18.224 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:17 smithi031 bash[22709]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-13T22:05:18.224 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:17 smithi031 bash[22709]: return self.sslsocket_class._create( 2024-09-13T22:05:18.224 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:17 smithi031 bash[22709]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-13T22:05:18.225 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:17 smithi031 bash[22709]: self.do_handshake() 2024-09-13T22:05:18.225 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:17 smithi031 bash[22709]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-13T22:05:18.225 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:17 smithi031 bash[22709]: self._sslobj.do_handshake() 2024-09-13T22:05:18.225 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:17 smithi031 bash[22709]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-13T22:05:19.103 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:18 smithi031 bash[22709]: cluster 2024-09-13T22:05:17.825843+0000 mon.a (mon.0) 90 : cluster [DBG] mgrmap e12: a(active, since 2s) 2024-09-13T22:05:19.453 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout Self-signed certificate created 2024-09-13T22:05:19.453 INFO:teuthology.orchestra.run.smithi031.stdout:Creating initial admin user... 2024-09-13T22:05:20.222 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:19 smithi031 bash[22709]: audit 2024-09-13T22:05:18.779515+0000 mgr.a (mgr.14150) 8 : audit [DBG] from='client.14162 -' entity='client.admin' cmd=[{"prefix": "dashboard create-self-signed-cert", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:05:20.223 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:19 smithi031 bash[22709]: audit 2024-09-13T22:05:18.866600+0000 mon.a (mon.0) 91 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:05:20.223 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:19 smithi031 bash[22709]: audit 2024-09-13T22:05:18.871073+0000 mon.a (mon.0) 92 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:05:21.752 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$atTXznjAFfBOMSO/lQPGBO8O..0AIcITDyfCqdWFJk5GKDZjnj0ti", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1726265121, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-09-13T22:05:21.753 INFO:teuthology.orchestra.run.smithi031.stdout:Fetching dashboard port number... 2024-09-13T22:05:22.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:22 smithi031 bash[22709]: audit 2024-09-13T22:05:20.855246+0000 mgr.a (mgr.14150) 9 : audit [DBG] from='client.14164 -' entity='client.admin' cmd=[{"prefix": "dashboard ac-user-create", "username": "admin", "rolename": "administrator", "force_password": true, "pwd_update_required": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:05:22.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:22 smithi031 bash[22709]: audit 2024-09-13T22:05:21.138407+0000 mon.a (mon.0) 93 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:05:23.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:23 smithi031 bash[22709]: cluster 2024-09-13T22:05:22.142729+0000 mon.a (mon.0) 94 : cluster [DBG] mgrmap e13: a(active, since 6s) 2024-09-13T22:05:23.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:23 smithi031 bash[22709]: audit 2024-09-13T22:05:22.673221+0000 mon.a (mon.0) 95 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:05:23.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:23 smithi031 bash[22709]: audit 2024-09-13T22:05:22.673969+0000 mon.a (mon.0) 96 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi031", "name": "osd_memory_target"}]: dispatch 2024-09-13T22:05:23.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:23 smithi031 bash[22709]: audit 2024-09-13T22:05:22.681004+0000 mon.a (mon.0) 97 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:05:23.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:23 smithi031 bash[22709]: audit 2024-09-13T22:05:22.682559+0000 mon.a (mon.0) 98 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi031", "caps": []}]: dispatch 2024-09-13T22:05:23.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:23 smithi031 bash[22709]: audit 2024-09-13T22:05:22.683300+0000 mon.a (mon.0) 99 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi031", "caps": []}]': finished 2024-09-13T22:05:23.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:23 smithi031 bash[22709]: audit 2024-09-13T22:05:23.101355+0000 mon.a (mon.0) 100 : audit [DBG] from='client.? 172.21.15.31:0/1542256016' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2024-09-13T22:05:23.683 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stdout 8443 2024-09-13T22:05:23.684 INFO:teuthology.orchestra.run.smithi031.stdout:firewalld does not appear to be present 2024-09-13T22:05:23.684 INFO:teuthology.orchestra.run.smithi031.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2024-09-13T22:05:23.687 INFO:teuthology.orchestra.run.smithi031.stdout:Ceph Dashboard is now available at: 2024-09-13T22:05:23.687 INFO:teuthology.orchestra.run.smithi031.stdout: 2024-09-13T22:05:23.687 INFO:teuthology.orchestra.run.smithi031.stdout: URL: https://smithi031.front.sepia.ceph.com:8443/ 2024-09-13T22:05:23.687 INFO:teuthology.orchestra.run.smithi031.stdout: User: admin 2024-09-13T22:05:23.687 INFO:teuthology.orchestra.run.smithi031.stdout: Password: iccpq8pn1y 2024-09-13T22:05:23.687 INFO:teuthology.orchestra.run.smithi031.stdout: 2024-09-13T22:05:23.688 INFO:teuthology.orchestra.run.smithi031.stdout:Saving cluster configuration to /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/config directory 2024-09-13T22:05:25.692 INFO:teuthology.orchestra.run.smithi031.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2024-09-13T22:05:25.692 INFO:teuthology.orchestra.run.smithi031.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-09-13T22:05:25.693 INFO:teuthology.orchestra.run.smithi031.stdout: 2024-09-13T22:05:25.693 INFO:teuthology.orchestra.run.smithi031.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid 89616338-721b-11ef-bceb-c7b262605968 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-09-13T22:05:25.693 INFO:teuthology.orchestra.run.smithi031.stdout: 2024-09-13T22:05:25.693 INFO:teuthology.orchestra.run.smithi031.stdout:Or, if you are only running a single cluster on this host: 2024-09-13T22:05:25.693 INFO:teuthology.orchestra.run.smithi031.stdout: 2024-09-13T22:05:25.693 INFO:teuthology.orchestra.run.smithi031.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2024-09-13T22:05:25.693 INFO:teuthology.orchestra.run.smithi031.stdout: 2024-09-13T22:05:25.693 INFO:teuthology.orchestra.run.smithi031.stdout:Please consider enabling telemetry to help improve Ceph: 2024-09-13T22:05:25.693 INFO:teuthology.orchestra.run.smithi031.stdout: 2024-09-13T22:05:25.693 INFO:teuthology.orchestra.run.smithi031.stdout: ceph telemetry on 2024-09-13T22:05:25.693 INFO:teuthology.orchestra.run.smithi031.stdout: 2024-09-13T22:05:25.694 INFO:teuthology.orchestra.run.smithi031.stdout:For more information see: 2024-09-13T22:05:25.694 INFO:teuthology.orchestra.run.smithi031.stdout: 2024-09-13T22:05:25.694 INFO:teuthology.orchestra.run.smithi031.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2024-09-13T22:05:25.694 INFO:teuthology.orchestra.run.smithi031.stdout: 2024-09-13T22:05:25.694 INFO:teuthology.orchestra.run.smithi031.stdout:Bootstrap complete. 2024-09-13T22:05:25.754 INFO:tasks.cephadm:Fetching config... 2024-09-13T22:05:25.755 DEBUG:teuthology.orchestra.run.smithi031:> set -ex 2024-09-13T22:05:25.755 DEBUG:teuthology.orchestra.run.smithi031:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-09-13T22:05:25.761 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-09-13T22:05:25.761 DEBUG:teuthology.orchestra.run.smithi031:> set -ex 2024-09-13T22:05:25.761 DEBUG:teuthology.orchestra.run.smithi031:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-09-13T22:05:25.806 INFO:tasks.cephadm:Fetching mon keyring... 2024-09-13T22:05:25.807 DEBUG:teuthology.orchestra.run.smithi031:> set -ex 2024-09-13T22:05:25.807 DEBUG:teuthology.orchestra.run.smithi031:> sudo dd if=/var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.a/keyring of=/dev/stdout 2024-09-13T22:05:25.869 INFO:tasks.cephadm:Fetching pub ssh key... 2024-09-13T22:05:25.870 DEBUG:teuthology.orchestra.run.smithi031:> set -ex 2024-09-13T22:05:25.870 DEBUG:teuthology.orchestra.run.smithi031:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-09-13T22:05:25.917 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-09-13T22:05:25.918 DEBUG:teuthology.orchestra.run.smithi031:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCRkn0xertUW4ox9IvgmZuH8k0WYpQ7DvAvS/TWPKhoC1hVpvI9lZAzV0CO50Du2+PQBmbwFpDVARqLDj1hddWFzCAcJg3wvoRyV9qQuusFrinPhfSbADSIQr8xVxo6NoHXoUStjL+WbX8NHiE0GARwxHS1+tJj6g16T9koj9ONitT9YKapKgmukRw1OesSZ0CY74MLn5hsJdi/A1SiRJhaVtayhvQx4E/8kPqJCFP60Aqa7aaLLJ/zhieRNo+RbvtrVqDXTC99r7QtDLC7PDDyJKOuLFn7mC2ik+H8gtyVCaCNunGsxVaggNF9fn1CFYAE/W+aIsXux4YkVoZOcKBojbIWmXbD87G+1TI4RrKIq0nYOtqbeOHknSPJVeqDmxVe/3CgMDyy9yi9ynwgF3liw3G6LS6a/298RzALgk7Wy9O2vZzHP0k2IXR1n27taosZaGF0wuWa3tvr90bTFkVnVDylhd4tsqP+yTSr4UAGOmR1yHhAP8yG8WZSWNX0z7U= ceph-89616338-721b-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-13T22:05:25.978 INFO:teuthology.orchestra.run.smithi031.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCRkn0xertUW4ox9IvgmZuH8k0WYpQ7DvAvS/TWPKhoC1hVpvI9lZAzV0CO50Du2+PQBmbwFpDVARqLDj1hddWFzCAcJg3wvoRyV9qQuusFrinPhfSbADSIQr8xVxo6NoHXoUStjL+WbX8NHiE0GARwxHS1+tJj6g16T9koj9ONitT9YKapKgmukRw1OesSZ0CY74MLn5hsJdi/A1SiRJhaVtayhvQx4E/8kPqJCFP60Aqa7aaLLJ/zhieRNo+RbvtrVqDXTC99r7QtDLC7PDDyJKOuLFn7mC2ik+H8gtyVCaCNunGsxVaggNF9fn1CFYAE/W+aIsXux4YkVoZOcKBojbIWmXbD87G+1TI4RrKIq0nYOtqbeOHknSPJVeqDmxVe/3CgMDyy9yi9ynwgF3liw3G6LS6a/298RzALgk7Wy9O2vZzHP0k2IXR1n27taosZaGF0wuWa3tvr90bTFkVnVDylhd4tsqP+yTSr4UAGOmR1yHhAP8yG8WZSWNX0z7U= ceph-89616338-721b-11ef-bceb-c7b262605968 2024-09-13T22:05:25.985 DEBUG:teuthology.orchestra.run.smithi096:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCRkn0xertUW4ox9IvgmZuH8k0WYpQ7DvAvS/TWPKhoC1hVpvI9lZAzV0CO50Du2+PQBmbwFpDVARqLDj1hddWFzCAcJg3wvoRyV9qQuusFrinPhfSbADSIQr8xVxo6NoHXoUStjL+WbX8NHiE0GARwxHS1+tJj6g16T9koj9ONitT9YKapKgmukRw1OesSZ0CY74MLn5hsJdi/A1SiRJhaVtayhvQx4E/8kPqJCFP60Aqa7aaLLJ/zhieRNo+RbvtrVqDXTC99r7QtDLC7PDDyJKOuLFn7mC2ik+H8gtyVCaCNunGsxVaggNF9fn1CFYAE/W+aIsXux4YkVoZOcKBojbIWmXbD87G+1TI4RrKIq0nYOtqbeOHknSPJVeqDmxVe/3CgMDyy9yi9ynwgF3liw3G6LS6a/298RzALgk7Wy9O2vZzHP0k2IXR1n27taosZaGF0wuWa3tvr90bTFkVnVDylhd4tsqP+yTSr4UAGOmR1yHhAP8yG8WZSWNX0z7U= ceph-89616338-721b-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-13T22:05:26.000 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:25 smithi031 systemd[1]: /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-13T22:05:26.000 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:25 smithi031 systemd[1]: /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-13T22:05:26.008 INFO:teuthology.orchestra.run.smithi096.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCRkn0xertUW4ox9IvgmZuH8k0WYpQ7DvAvS/TWPKhoC1hVpvI9lZAzV0CO50Du2+PQBmbwFpDVARqLDj1hddWFzCAcJg3wvoRyV9qQuusFrinPhfSbADSIQr8xVxo6NoHXoUStjL+WbX8NHiE0GARwxHS1+tJj6g16T9koj9ONitT9YKapKgmukRw1OesSZ0CY74MLn5hsJdi/A1SiRJhaVtayhvQx4E/8kPqJCFP60Aqa7aaLLJ/zhieRNo+RbvtrVqDXTC99r7QtDLC7PDDyJKOuLFn7mC2ik+H8gtyVCaCNunGsxVaggNF9fn1CFYAE/W+aIsXux4YkVoZOcKBojbIWmXbD87G+1TI4RrKIq0nYOtqbeOHknSPJVeqDmxVe/3CgMDyy9yi9ynwgF3liw3G6LS6a/298RzALgk7Wy9O2vZzHP0k2IXR1n27taosZaGF0wuWa3tvr90bTFkVnVDylhd4tsqP+yTSr4UAGOmR1yHhAP8yG8WZSWNX0z7U= ceph-89616338-721b-11ef-bceb-c7b262605968 2024-09-13T22:05:26.017 DEBUG:teuthology.orchestra.run.smithi138:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCRkn0xertUW4ox9IvgmZuH8k0WYpQ7DvAvS/TWPKhoC1hVpvI9lZAzV0CO50Du2+PQBmbwFpDVARqLDj1hddWFzCAcJg3wvoRyV9qQuusFrinPhfSbADSIQr8xVxo6NoHXoUStjL+WbX8NHiE0GARwxHS1+tJj6g16T9koj9ONitT9YKapKgmukRw1OesSZ0CY74MLn5hsJdi/A1SiRJhaVtayhvQx4E/8kPqJCFP60Aqa7aaLLJ/zhieRNo+RbvtrVqDXTC99r7QtDLC7PDDyJKOuLFn7mC2ik+H8gtyVCaCNunGsxVaggNF9fn1CFYAE/W+aIsXux4YkVoZOcKBojbIWmXbD87G+1TI4RrKIq0nYOtqbeOHknSPJVeqDmxVe/3CgMDyy9yi9ynwgF3liw3G6LS6a/298RzALgk7Wy9O2vZzHP0k2IXR1n27taosZaGF0wuWa3tvr90bTFkVnVDylhd4tsqP+yTSr4UAGOmR1yHhAP8yG8WZSWNX0z7U= ceph-89616338-721b-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-13T22:05:26.040 INFO:teuthology.orchestra.run.smithi138.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCRkn0xertUW4ox9IvgmZuH8k0WYpQ7DvAvS/TWPKhoC1hVpvI9lZAzV0CO50Du2+PQBmbwFpDVARqLDj1hddWFzCAcJg3wvoRyV9qQuusFrinPhfSbADSIQr8xVxo6NoHXoUStjL+WbX8NHiE0GARwxHS1+tJj6g16T9koj9ONitT9YKapKgmukRw1OesSZ0CY74MLn5hsJdi/A1SiRJhaVtayhvQx4E/8kPqJCFP60Aqa7aaLLJ/zhieRNo+RbvtrVqDXTC99r7QtDLC7PDDyJKOuLFn7mC2ik+H8gtyVCaCNunGsxVaggNF9fn1CFYAE/W+aIsXux4YkVoZOcKBojbIWmXbD87G+1TI4RrKIq0nYOtqbeOHknSPJVeqDmxVe/3CgMDyy9yi9ynwgF3liw3G6LS6a/298RzALgk7Wy9O2vZzHP0k2IXR1n27taosZaGF0wuWa3tvr90bTFkVnVDylhd4tsqP+yTSr4UAGOmR1yHhAP8yG8WZSWNX0z7U= ceph-89616338-721b-11ef-bceb-c7b262605968 2024-09-13T22:05:26.050 DEBUG:teuthology.orchestra.run.smithi031:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 89616338-721b-11ef-bceb-c7b262605968 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-09-13T22:05:26.472 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:05:26 smithi031 systemd[1]: /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-13T22:05:26.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:26 smithi031 systemd[1]: /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-13T22:05:26.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:26 smithi031 bash[22709]: cephadm 2024-09-13T22:05:24.904024+0000 mgr.a (mgr.14150) 10 : cephadm [INF] Deploying daemon agent.smithi031 on smithi031 2024-09-13T22:05:26.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:26 smithi031 bash[22709]: audit 2024-09-13T22:05:25.145034+0000 mon.a (mon.0) 101 : audit [INF] from='client.? 172.21.15.31:0/420014345' entity='client.admin' 2024-09-13T22:05:27.723 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:27 smithi031 bash[22709]: audit 2024-09-13T22:05:26.267980+0000 mon.a (mon.0) 102 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:05:27.723 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:27 smithi031 bash[22709]: audit 2024-09-13T22:05:26.270431+0000 mon.a (mon.0) 103 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:05:27.723 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:27 smithi031 bash[22709]: audit 2024-09-13T22:05:26.272550+0000 mon.a (mon.0) 104 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:05:27.723 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:27 smithi031 bash[22709]: audit 2024-09-13T22:05:26.286912+0000 mon.a (mon.0) 105 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:05:27.723 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:27 smithi031 bash[22709]: audit 2024-09-13T22:05:26.291052+0000 mon.a (mon.0) 106 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:05:27.723 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:27 smithi031 bash[22709]: audit 2024-09-13T22:05:26.293161+0000 mon.a (mon.0) 107 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:05:27.723 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:27 smithi031 bash[22709]: audit 2024-09-13T22:05:26.295119+0000 mon.a (mon.0) 108 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:05:27.723 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:27 smithi031 bash[22709]: audit 2024-09-13T22:05:26.296770+0000 mon.a (mon.0) 109 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:05:27.723 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:27 smithi031 bash[22709]: audit 2024-09-13T22:05:26.300207+0000 mon.a (mon.0) 110 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:05:27.723 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:27 smithi031 bash[22709]: audit 2024-09-13T22:05:26.315405+0000 mon.a (mon.0) 111 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:05:27.724 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:27 smithi031 bash[22709]: audit 2024-09-13T22:05:26.319299+0000 mon.a (mon.0) 112 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:05:27.724 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:27 smithi031 bash[22709]: audit 2024-09-13T22:05:26.786163+0000 mon.a (mon.0) 113 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:05:30.773 INFO:teuthology.orchestra.run.smithi031.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T22:05:32.104 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:31 smithi031 bash[22709]: audit 2024-09-13T22:05:30.834479+0000 mon.a (mon.0) 114 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:05:32.104 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:31 smithi031 bash[22709]: audit 2024-09-13T22:05:31.123645+0000 mon.a (mon.0) 115 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:05:32.105 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:31 smithi031 bash[22709]: audit 2024-09-13T22:05:31.127183+0000 mon.a (mon.0) 116 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:05:33.038 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-09-13T22:05:33.038 DEBUG:teuthology.orchestra.run.smithi031:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 89616338-721b-11ef-bceb-c7b262605968 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-09-13T22:05:33.724 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:33 smithi031 bash[22709]: audit 2024-09-13T22:05:32.437471+0000 mon.a (mon.0) 117 : audit [INF] from='client.? 172.21.15.31:0/537168990' entity='client.admin' 2024-09-13T22:05:33.725 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:33 smithi031 bash[22709]: audit 2024-09-13T22:05:32.455316+0000 mon.a (mon.0) 118 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:05:33.725 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:33 smithi031 bash[22709]: audit 2024-09-13T22:05:32.459805+0000 mon.a (mon.0) 119 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:05:36.802 INFO:teuthology.orchestra.run.smithi031.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T22:05:37.107 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:36 smithi031 bash[22709]: cluster 2024-09-13T22:05:35.778629+0000 mgr.a (mgr.14150) 11 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:05:39.651 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi096 2024-09-13T22:05:39.651 DEBUG:teuthology.orchestra.run.smithi096:> set -ex 2024-09-13T22:05:39.651 DEBUG:teuthology.orchestra.run.smithi096:> dd of=/etc/ceph/ceph.conf 2024-09-13T22:05:39.659 DEBUG:teuthology.orchestra.run.smithi096:> set -ex 2024-09-13T22:05:39.659 DEBUG:teuthology.orchestra.run.smithi096:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-13T22:05:39.708 INFO:tasks.cephadm:Adding host smithi096 to orchestrator... 2024-09-13T22:05:39.708 DEBUG:teuthology.orchestra.run.smithi031:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 89616338-721b-11ef-bceb-c7b262605968 -- ceph orch host add smithi096 2024-09-13T22:05:39.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:39 smithi031 bash[22709]: cluster 2024-09-13T22:05:37.779024+0000 mgr.a (mgr.14150) 12 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:05:39.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:39 smithi031 bash[22709]: audit 2024-09-13T22:05:38.617405+0000 mgr.a (mgr.14150) 13 : audit [DBG] from='client.14172 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:05:39.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:39 smithi031 bash[22709]: audit 2024-09-13T22:05:38.621323+0000 mon.a (mon.0) 120 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:05:39.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:39 smithi031 bash[22709]: audit 2024-09-13T22:05:38.622794+0000 mon.a (mon.0) 121 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:05:39.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:39 smithi031 bash[22709]: audit 2024-09-13T22:05:38.626342+0000 mon.a (mon.0) 122 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:05:39.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:39 smithi031 bash[22709]: audit 2024-09-13T22:05:38.627501+0000 mon.a (mon.0) 123 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:05:39.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:39 smithi031 bash[22709]: cephadm 2024-09-13T22:05:38.628824+0000 mgr.a (mgr.14150) 14 : cephadm [INF] Updating smithi031:/etc/ceph/ceph.conf 2024-09-13T22:05:39.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:39 smithi031 bash[22709]: cephadm 2024-09-13T22:05:38.729073+0000 mgr.a (mgr.14150) 15 : cephadm [INF] Updating smithi031:/var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T22:05:39.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:39 smithi031 bash[22709]: audit 2024-09-13T22:05:39.028633+0000 mon.a (mon.0) 124 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:05:39.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:39 smithi031 bash[22709]: audit 2024-09-13T22:05:39.033999+0000 mon.a (mon.0) 125 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:05:40.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:40 smithi031 bash[22709]: cephadm 2024-09-13T22:05:38.815128+0000 mgr.a (mgr.14150) 16 : cephadm [INF] Updating smithi031:/etc/ceph/ceph.client.admin.keyring 2024-09-13T22:05:40.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:40 smithi031 bash[22709]: cephadm 2024-09-13T22:05:38.911929+0000 mgr.a (mgr.14150) 17 : cephadm [INF] Updating smithi031:/var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-13T22:05:41.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:41 smithi031 bash[22709]: cluster 2024-09-13T22:05:39.779359+0000 mgr.a (mgr.14150) 18 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:05:41.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:41 smithi031 bash[22709]: audit 2024-09-13T22:05:41.350875+0000 mon.a (mon.0) 126 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:05:41.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:41 smithi031 bash[22709]: audit 2024-09-13T22:05:41.357189+0000 mon.a (mon.0) 127 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:05:43.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:43 smithi031 bash[22709]: cluster 2024-09-13T22:05:41.779752+0000 mgr.a (mgr.14150) 19 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:05:44.700 INFO:teuthology.orchestra.run.smithi031.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T22:05:45.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:45 smithi031 bash[22709]: cluster 2024-09-13T22:05:43.780172+0000 mgr.a (mgr.14150) 20 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:05:47.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:47 smithi031 bash[22709]: cluster 2024-09-13T22:05:45.780469+0000 mgr.a (mgr.14150) 21 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:05:47.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:47 smithi031 bash[22709]: audit 2024-09-13T22:05:46.016323+0000 mgr.a (mgr.14150) 22 : audit [DBG] from='client.14174 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi096", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:05:48.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:48 smithi031 bash[22709]: cephadm 2024-09-13T22:05:47.304751+0000 mgr.a (mgr.14150) 23 : cephadm [INF] Deploying cephadm binary to smithi096 2024-09-13T22:05:49.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:49 smithi031 bash[22709]: cluster 2024-09-13T22:05:47.780806+0000 mgr.a (mgr.14150) 24 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:05:50.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:50 smithi031 bash[22709]: audit 2024-09-13T22:05:49.738975+0000 mon.a (mon.0) 128 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:05:50.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:50 smithi031 bash[22709]: audit 2024-09-13T22:05:49.749861+0000 mon.a (mon.0) 129 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:05:50.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:50 smithi031 bash[22709]: audit 2024-09-13T22:05:49.762104+0000 mon.a (mon.0) 130 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:05:50.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:50 smithi031 bash[22709]: cluster 2024-09-13T22:05:49.781160+0000 mgr.a (mgr.14150) 25 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:05:50.988 INFO:teuthology.orchestra.run.smithi031.stdout:Added host 'smithi096' with addr '172.21.15.96' 2024-09-13T22:05:51.691 DEBUG:teuthology.orchestra.run.smithi031:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 89616338-721b-11ef-bceb-c7b262605968 -- ceph orch host ls --format=json 2024-09-13T22:05:52.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:51 smithi031 bash[22709]: audit 2024-09-13T22:05:50.986667+0000 mon.a (mon.0) 131 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:05:52.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:51 smithi031 bash[22709]: cephadm 2024-09-13T22:05:50.987620+0000 mgr.a (mgr.14150) 26 : cephadm [INF] Added host smithi096 2024-09-13T22:05:52.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:51 smithi031 bash[22709]: audit 2024-09-13T22:05:50.988464+0000 mon.a (mon.0) 132 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:05:52.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:51 smithi031 bash[22709]: audit 2024-09-13T22:05:51.479350+0000 mon.a (mon.0) 133 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:05:53.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:53 smithi031 bash[22709]: cluster 2024-09-13T22:05:51.781523+0000 mgr.a (mgr.14150) 27 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:05:53.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:53 smithi031 bash[22709]: audit 2024-09-13T22:05:52.998902+0000 mon.a (mon.0) 134 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:05:53.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:53 smithi031 bash[22709]: audit 2024-09-13T22:05:53.004725+0000 mon.a (mon.0) 135 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:05:53.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:53 smithi031 bash[22709]: audit 2024-09-13T22:05:53.006447+0000 mon.a (mon.0) 136 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi096", "name": "osd_memory_target"}]: dispatch 2024-09-13T22:05:53.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:53 smithi031 bash[22709]: audit 2024-09-13T22:05:53.008354+0000 mon.a (mon.0) 137 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:05:53.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:53 smithi031 bash[22709]: audit 2024-09-13T22:05:53.009975+0000 mon.a (mon.0) 138 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:05:54.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:54 smithi031 bash[22709]: cephadm 2024-09-13T22:05:53.012445+0000 mgr.a (mgr.14150) 28 : cephadm [INF] Updating smithi096:/etc/ceph/ceph.conf 2024-09-13T22:05:54.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:54 smithi031 bash[22709]: cephadm 2024-09-13T22:05:53.199495+0000 mgr.a (mgr.14150) 29 : cephadm [INF] Updating smithi096:/var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T22:05:54.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:54 smithi031 bash[22709]: cephadm 2024-09-13T22:05:53.360044+0000 mgr.a (mgr.14150) 30 : cephadm [INF] Updating smithi096:/etc/ceph/ceph.client.admin.keyring 2024-09-13T22:05:54.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:54 smithi031 bash[22709]: cephadm 2024-09-13T22:05:53.512743+0000 mgr.a (mgr.14150) 31 : cephadm [INF] Updating smithi096:/var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-13T22:05:54.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:54 smithi031 bash[22709]: audit 2024-09-13T22:05:53.667825+0000 mon.a (mon.0) 139 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:05:54.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:54 smithi031 bash[22709]: audit 2024-09-13T22:05:53.676157+0000 mon.a (mon.0) 140 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:05:54.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:54 smithi031 bash[22709]: audit 2024-09-13T22:05:53.678736+0000 mon.a (mon.0) 141 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi096", "caps": []}]: dispatch 2024-09-13T22:05:54.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:54 smithi031 bash[22709]: audit 2024-09-13T22:05:53.682447+0000 mon.a (mon.0) 142 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi096", "caps": []}]': finished 2024-09-13T22:05:55.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:55 smithi031 bash[22709]: cluster 2024-09-13T22:05:53.781885+0000 mgr.a (mgr.14150) 32 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:05:55.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:55 smithi031 bash[22709]: cephadm 2024-09-13T22:05:54.504644+0000 mgr.a (mgr.14150) 33 : cephadm [INF] Deploying daemon agent.smithi096 on smithi096 2024-09-13T22:05:55.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:55 smithi031 bash[22709]: audit 2024-09-13T22:05:55.551513+0000 mon.a (mon.0) 143 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:05:55.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:55 smithi031 bash[22709]: audit 2024-09-13T22:05:55.557229+0000 mon.a (mon.0) 144 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:05:55.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:55 smithi031 bash[22709]: audit 2024-09-13T22:05:55.562843+0000 mon.a (mon.0) 145 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:05:55.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:55 smithi031 bash[22709]: audit 2024-09-13T22:05:55.621122+0000 mon.a (mon.0) 146 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:05:55.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:55 smithi031 bash[22709]: audit 2024-09-13T22:05:55.625094+0000 mon.a (mon.0) 147 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:05:55.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:55 smithi031 bash[22709]: audit 2024-09-13T22:05:55.626467+0000 mon.a (mon.0) 148 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:05:55.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:55 smithi031 bash[22709]: audit 2024-09-13T22:05:55.633597+0000 mon.a (mon.0) 149 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:05:56.427 INFO:teuthology.orchestra.run.smithi031.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T22:05:56.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:56 smithi031 bash[22709]: audit 2024-09-13T22:05:55.695062+0000 mon.a (mon.0) 150 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:05:56.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:56 smithi031 bash[22709]: audit 2024-09-13T22:05:55.699034+0000 mon.a (mon.0) 151 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:05:56.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:56 smithi031 bash[22709]: audit 2024-09-13T22:05:55.700710+0000 mon.a (mon.0) 152 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:05:56.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:56 smithi031 bash[22709]: audit 2024-09-13T22:05:55.708606+0000 mon.a (mon.0) 153 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:05:56.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:56 smithi031 bash[22709]: audit 2024-09-13T22:05:55.841611+0000 mon.a (mon.0) 154 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:05:56.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:56 smithi031 bash[22709]: audit 2024-09-13T22:05:56.139494+0000 mon.a (mon.0) 155 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:05:57.909 INFO:teuthology.orchestra.run.smithi031.stdout: 2024-09-13T22:05:57.909 INFO:teuthology.orchestra.run.smithi031.stdout:[{"addr": "172.21.15.31", "hostname": "smithi031", "labels": [], "status": ""}, {"addr": "172.21.15.96", "hostname": "smithi096", "labels": [], "status": ""}] 2024-09-13T22:05:57.921 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:57 smithi031 bash[22709]: cluster 2024-09-13T22:05:55.782325+0000 mgr.a (mgr.14150) 34 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:05:57.921 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:57 smithi031 bash[22709]: audit 2024-09-13T22:05:57.191284+0000 mon.a (mon.0) 156 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:05:57.921 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:57 smithi031 bash[22709]: audit 2024-09-13T22:05:57.198600+0000 mon.a (mon.0) 157 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:05:58.555 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi138 2024-09-13T22:05:58.555 DEBUG:teuthology.orchestra.run.smithi138:> set -ex 2024-09-13T22:05:58.555 DEBUG:teuthology.orchestra.run.smithi138:> dd of=/etc/ceph/ceph.conf 2024-09-13T22:05:58.562 DEBUG:teuthology.orchestra.run.smithi138:> set -ex 2024-09-13T22:05:58.562 DEBUG:teuthology.orchestra.run.smithi138:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-13T22:05:58.609 INFO:tasks.cephadm:Adding host smithi138 to orchestrator... 2024-09-13T22:05:58.610 DEBUG:teuthology.orchestra.run.smithi031:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 89616338-721b-11ef-bceb-c7b262605968 -- ceph orch host add smithi138 2024-09-13T22:05:59.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:59 smithi031 bash[22709]: cluster 2024-09-13T22:05:57.782741+0000 mgr.a (mgr.14150) 35 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:05:59.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:05:59 smithi031 bash[22709]: audit 2024-09-13T22:05:57.908428+0000 mgr.a (mgr.14150) 36 : audit [DBG] from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-13T22:06:01.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:01 smithi031 bash[22709]: cluster 2024-09-13T22:05:59.783157+0000 mgr.a (mgr.14150) 37 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:03.345 INFO:teuthology.orchestra.run.smithi031.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T22:06:04.222 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:03 smithi031 bash[22709]: cluster 2024-09-13T22:06:01.783682+0000 mgr.a (mgr.14150) 38 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:05.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:05 smithi031 bash[22709]: cluster 2024-09-13T22:06:03.784091+0000 mgr.a (mgr.14150) 39 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:06.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:06 smithi031 bash[22709]: audit 2024-09-13T22:06:05.097934+0000 mgr.a (mgr.14150) 40 : audit [DBG] from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi138", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:06:07.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:07 smithi031 bash[22709]: cluster 2024-09-13T22:06:05.784509+0000 mgr.a (mgr.14150) 41 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:07.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:07 smithi031 bash[22709]: cephadm 2024-09-13T22:06:06.344923+0000 mgr.a (mgr.14150) 42 : cephadm [INF] Deploying cephadm binary to smithi138 2024-09-13T22:06:09.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:09 smithi031 bash[22709]: cluster 2024-09-13T22:06:07.784987+0000 mgr.a (mgr.14150) 43 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:10.047 INFO:teuthology.orchestra.run.smithi031.stdout:Added host 'smithi138' with addr '172.21.15.138' 2024-09-13T22:06:10.686 DEBUG:teuthology.orchestra.run.smithi031:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 89616338-721b-11ef-bceb-c7b262605968 -- ceph orch host ls --format=json 2024-09-13T22:06:11.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:10 smithi031 bash[22709]: cluster 2024-09-13T22:06:09.785339+0000 mgr.a (mgr.14150) 44 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:11.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:10 smithi031 bash[22709]: audit 2024-09-13T22:06:09.978280+0000 mon.a (mon.0) 158 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:11.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:10 smithi031 bash[22709]: audit 2024-09-13T22:06:09.984726+0000 mon.a (mon.0) 159 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:11.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:10 smithi031 bash[22709]: audit 2024-09-13T22:06:09.992384+0000 mon.a (mon.0) 160 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:11.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:10 smithi031 bash[22709]: audit 2024-09-13T22:06:10.046189+0000 mon.a (mon.0) 161 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:11.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:10 smithi031 bash[22709]: cephadm 2024-09-13T22:06:10.046974+0000 mgr.a (mgr.14150) 45 : cephadm [INF] Added host smithi138 2024-09-13T22:06:11.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:10 smithi031 bash[22709]: audit 2024-09-13T22:06:10.047746+0000 mon.a (mon.0) 162 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:06:11.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:10 smithi031 bash[22709]: audit 2024-09-13T22:06:10.131974+0000 mon.a (mon.0) 163 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:11.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:10 smithi031 bash[22709]: audit 2024-09-13T22:06:10.136739+0000 mon.a (mon.0) 164 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:11.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:10 smithi031 bash[22709]: audit 2024-09-13T22:06:10.556831+0000 mon.a (mon.0) 165 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:13.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:13 smithi031 bash[22709]: cluster 2024-09-13T22:06:11.785731+0000 mgr.a (mgr.14150) 46 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:13.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:13 smithi031 bash[22709]: audit 2024-09-13T22:06:12.079880+0000 mon.a (mon.0) 166 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:13.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:13 smithi031 bash[22709]: audit 2024-09-13T22:06:12.085964+0000 mon.a (mon.0) 167 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:13.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:13 smithi031 bash[22709]: audit 2024-09-13T22:06:12.087457+0000 mon.a (mon.0) 168 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi138", "name": "osd_memory_target"}]: dispatch 2024-09-13T22:06:13.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:13 smithi031 bash[22709]: audit 2024-09-13T22:06:12.089410+0000 mon.a (mon.0) 169 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:06:13.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:13 smithi031 bash[22709]: audit 2024-09-13T22:06:12.091168+0000 mon.a (mon.0) 170 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:06:13.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:13 smithi031 bash[22709]: cephadm 2024-09-13T22:06:12.093691+0000 mgr.a (mgr.14150) 47 : cephadm [INF] Updating smithi138:/etc/ceph/ceph.conf 2024-09-13T22:06:13.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:13 smithi031 bash[22709]: cephadm 2024-09-13T22:06:12.279496+0000 mgr.a (mgr.14150) 48 : cephadm [INF] Updating smithi138:/var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T22:06:13.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:13 smithi031 bash[22709]: cephadm 2024-09-13T22:06:12.440671+0000 mgr.a (mgr.14150) 49 : cephadm [INF] Updating smithi138:/etc/ceph/ceph.client.admin.keyring 2024-09-13T22:06:13.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:13 smithi031 bash[22709]: cephadm 2024-09-13T22:06:12.593382+0000 mgr.a (mgr.14150) 50 : cephadm [INF] Updating smithi138:/var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-13T22:06:13.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:13 smithi031 bash[22709]: audit 2024-09-13T22:06:12.746727+0000 mon.a (mon.0) 171 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:13.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:13 smithi031 bash[22709]: audit 2024-09-13T22:06:12.752116+0000 mon.a (mon.0) 172 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:13.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:13 smithi031 bash[22709]: audit 2024-09-13T22:06:12.755120+0000 mon.a (mon.0) 173 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi138", "caps": []}]: dispatch 2024-09-13T22:06:13.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:13 smithi031 bash[22709]: audit 2024-09-13T22:06:12.757168+0000 mon.a (mon.0) 174 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi138", "caps": []}]': finished 2024-09-13T22:06:15.420 INFO:teuthology.orchestra.run.smithi031.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T22:06:15.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:15 smithi031 bash[22709]: cluster 2024-09-13T22:06:13.786009+0000 mgr.a (mgr.14150) 51 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:15.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:15 smithi031 bash[22709]: cephadm 2024-09-13T22:06:13.802176+0000 mgr.a (mgr.14150) 52 : cephadm [INF] Deploying daemon agent.smithi138 on smithi138 2024-09-13T22:06:15.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:15 smithi031 bash[22709]: audit 2024-09-13T22:06:14.897515+0000 mon.a (mon.0) 175 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:15.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:15 smithi031 bash[22709]: audit 2024-09-13T22:06:14.902916+0000 mon.a (mon.0) 176 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:15.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:15 smithi031 bash[22709]: audit 2024-09-13T22:06:14.907991+0000 mon.a (mon.0) 177 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:15.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:15 smithi031 bash[22709]: audit 2024-09-13T22:06:14.998463+0000 mon.a (mon.0) 178 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:06:15.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:15 smithi031 bash[22709]: audit 2024-09-13T22:06:15.002777+0000 mon.a (mon.0) 179 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:06:15.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:15 smithi031 bash[22709]: audit 2024-09-13T22:06:15.004180+0000 mon.a (mon.0) 180 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:06:15.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:15 smithi031 bash[22709]: audit 2024-09-13T22:06:15.011533+0000 mon.a (mon.0) 181 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:16.422 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:16 smithi031 bash[22709]: audit 2024-09-13T22:06:15.101536+0000 mon.a (mon.0) 182 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:06:16.422 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:16 smithi031 bash[22709]: audit 2024-09-13T22:06:15.106376+0000 mon.a (mon.0) 183 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:06:16.422 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:16 smithi031 bash[22709]: audit 2024-09-13T22:06:15.108335+0000 mon.a (mon.0) 184 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:06:16.422 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:16 smithi031 bash[22709]: audit 2024-09-13T22:06:15.116608+0000 mon.a (mon.0) 185 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:16.422 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:16 smithi031 bash[22709]: audit 2024-09-13T22:06:15.436493+0000 mon.a (mon.0) 186 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:16.422 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:16 smithi031 bash[22709]: audit 2024-09-13T22:06:15.849572+0000 mon.a (mon.0) 187 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:16.783 INFO:teuthology.orchestra.run.smithi031.stdout: 2024-09-13T22:06:16.783 INFO:teuthology.orchestra.run.smithi031.stdout:[{"addr": "172.21.15.31", "hostname": "smithi031", "labels": [], "status": ""}, {"addr": "172.21.15.96", "hostname": "smithi096", "labels": [], "status": ""}, {"addr": "172.21.15.138", "hostname": "smithi138", "labels": [], "status": ""}] 2024-09-13T22:06:17.371 INFO:tasks.cephadm:Setting crush tunables to default 2024-09-13T22:06:17.371 DEBUG:teuthology.orchestra.run.smithi031:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 89616338-721b-11ef-bceb-c7b262605968 -- ceph osd crush tunables default 2024-09-13T22:06:17.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:17 smithi031 bash[22709]: cluster 2024-09-13T22:06:15.786399+0000 mgr.a (mgr.14150) 53 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:17.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:17 smithi031 bash[22709]: audit 2024-09-13T22:06:16.491118+0000 mon.a (mon.0) 188 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:17.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:17 smithi031 bash[22709]: audit 2024-09-13T22:06:16.495591+0000 mon.a (mon.0) 189 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:17.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:17 smithi031 bash[22709]: audit 2024-09-13T22:06:16.746036+0000 mon.a (mon.0) 190 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:17.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:17 smithi031 bash[22709]: audit 2024-09-13T22:06:16.749898+0000 mon.a (mon.0) 191 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:17.723 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:17 smithi031 bash[22709]: audit 2024-09-13T22:06:16.755644+0000 mon.a (mon.0) 192 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:18.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:18 smithi031 bash[22709]: audit 2024-09-13T22:06:16.782947+0000 mgr.a (mgr.14150) 54 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-13T22:06:19.959 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:19 smithi031 bash[22709]: cluster 2024-09-13T22:06:17.786804+0000 mgr.a (mgr.14150) 55 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:21.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:21 smithi031 bash[22709]: cluster 2024-09-13T22:06:19.787188+0000 mgr.a (mgr.14150) 56 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:22.106 INFO:teuthology.orchestra.run.smithi031.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T22:06:23.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:23 smithi031 bash[22709]: cluster 2024-09-13T22:06:21.787602+0000 mgr.a (mgr.14150) 57 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:24.506 INFO:teuthology.orchestra.run.smithi031.stderr:adjusted tunables profile to default 2024-09-13T22:06:24.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:24 smithi031 bash[22709]: audit 2024-09-13T22:06:23.616423+0000 mon.a (mon.0) 193 : audit [INF] from='client.? 172.21.15.31:0/2192616921' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-09-13T22:06:25.123 INFO:tasks.cephadm:Adding mon.a on smithi031 2024-09-13T22:06:25.123 INFO:tasks.cephadm:Adding mon.b on smithi096 2024-09-13T22:06:25.123 INFO:tasks.cephadm:Adding mon.c on smithi138 2024-09-13T22:06:25.124 DEBUG:teuthology.orchestra.run.smithi138:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 89616338-721b-11ef-bceb-c7b262605968 -- ceph orch apply mon '3;smithi031:172.21.15.31=a;smithi096:172.21.15.96=b;smithi138:172.21.15.138=c' 2024-09-13T22:06:25.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:25 smithi031 bash[22709]: cluster 2024-09-13T22:06:23.787996+0000 mgr.a (mgr.14150) 58 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:25.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:25 smithi031 bash[22709]: audit 2024-09-13T22:06:24.505836+0000 mon.a (mon.0) 194 : audit [INF] from='client.? 172.21.15.31:0/2192616921' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-13T22:06:25.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:25 smithi031 bash[22709]: cluster 2024-09-13T22:06:24.510381+0000 mon.a (mon.0) 195 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-13T22:06:26.351 INFO:teuthology.orchestra.run.smithi138.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T22:06:27.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:27 smithi031 bash[22709]: cluster 2024-09-13T22:06:25.788428+0000 mgr.a (mgr.14150) 59 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:27.977 INFO:teuthology.orchestra.run.smithi138.stdout:Scheduled mon update... 2024-09-13T22:06:28.670 DEBUG:teuthology.orchestra.run.smithi096:mon.b> sudo journalctl -f -n 0 -u ceph-89616338-721b-11ef-bceb-c7b262605968@mon.b.service 2024-09-13T22:06:28.673 DEBUG:teuthology.orchestra.run.smithi138:mon.c> sudo journalctl -f -n 0 -u ceph-89616338-721b-11ef-bceb-c7b262605968@mon.c.service 2024-09-13T22:06:28.675 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-13T22:06:28.675 DEBUG:teuthology.orchestra.run.smithi138:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 89616338-721b-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-13T22:06:29.222 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:28 smithi031 bash[22709]: cluster 2024-09-13T22:06:27.788819+0000 mgr.a (mgr.14150) 60 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:29.222 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:28 smithi031 bash[22709]: audit 2024-09-13T22:06:27.965927+0000 mgr.a (mgr.14150) 61 : audit [DBG] from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi031:172.21.15.31=a;smithi096:172.21.15.96=b;smithi138:172.21.15.138=c", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:06:29.222 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:28 smithi031 bash[22709]: cephadm 2024-09-13T22:06:27.971017+0000 mgr.a (mgr.14150) 62 : cephadm [INF] Saving service mon spec with placement smithi031:172.21.15.31=a;smithi096:172.21.15.96=b;smithi138:172.21.15.138=c;count:3 2024-09-13T22:06:29.222 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:28 smithi031 bash[22709]: audit 2024-09-13T22:06:27.976773+0000 mon.a (mon.0) 196 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:29.223 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:28 smithi031 bash[22709]: audit 2024-09-13T22:06:27.978463+0000 mon.a (mon.0) 197 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:06:29.223 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:28 smithi031 bash[22709]: audit 2024-09-13T22:06:27.983119+0000 mon.a (mon.0) 198 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:06:29.223 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:28 smithi031 bash[22709]: audit 2024-09-13T22:06:27.984813+0000 mon.a (mon.0) 199 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:06:29.223 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:28 smithi031 bash[22709]: audit 2024-09-13T22:06:27.993556+0000 mon.a (mon.0) 200 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:29.223 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:28 smithi031 bash[22709]: audit 2024-09-13T22:06:27.998515+0000 mon.a (mon.0) 201 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-13T22:06:29.223 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:28 smithi031 bash[22709]: audit 2024-09-13T22:06:28.000092+0000 mon.a (mon.0) 202 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:06:29.223 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:28 smithi031 bash[22709]: cephadm 2024-09-13T22:06:28.001911+0000 mgr.a (mgr.14150) 63 : cephadm [INF] Deploying daemon mon.c on smithi138 2024-09-13T22:06:30.420 INFO:teuthology.orchestra.run.smithi138.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T22:06:31.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:31 smithi031 bash[22709]: cluster 2024-09-13T22:06:29.789277+0000 mgr.a (mgr.14150) 64 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:31.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:31 smithi031 bash[22709]: audit 2024-09-13T22:06:30.071770+0000 mon.a (mon.0) 203 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:31.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:31 smithi031 bash[22709]: audit 2024-09-13T22:06:30.079621+0000 mon.a (mon.0) 204 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:31.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:31 smithi031 bash[22709]: audit 2024-09-13T22:06:30.202244+0000 mon.a (mon.0) 205 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:31.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:31 smithi031 bash[22709]: audit 2024-09-13T22:06:30.207771+0000 mon.a (mon.0) 206 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:31.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:31 smithi031 bash[22709]: audit 2024-09-13T22:06:30.214977+0000 mon.a (mon.0) 207 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:31.894 INFO:teuthology.orchestra.run.smithi138.stdout: 2024-09-13T22:06:31.894 INFO:teuthology.orchestra.run.smithi138.stdout:{"epoch":1,"fsid":"89616338-721b-11ef-bceb-c7b262605968","modified":"2024-09-13T22:04:10.314756Z","created":"2024-09-13T22:04:10.314756Z","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.31:3300","nonce":0},{"type":"v1","addr":"172.21.15.31:6789","nonce":0}]},"addr":"172.21.15.31:6789/0","public_addr":"172.21.15.31:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-13T22:06:31.894 INFO:teuthology.orchestra.run.smithi138.stderr:dumped monmap epoch 1 2024-09-13T22:06:32.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:32 smithi031 bash[22709]: audit 2024-09-13T22:06:31.893964+0000 mon.a (mon.0) 208 : audit [DBG] from='client.? 172.21.15.138:0/2681533173' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-13T22:06:33.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:33 smithi031 bash[22709]: cluster 2024-09-13T22:06:31.789688+0000 mgr.a (mgr.14150) 65 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:33.760 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-13T22:06:33.760 DEBUG:teuthology.orchestra.run.smithi138:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 89616338-721b-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-13T22:06:35.000 INFO:teuthology.orchestra.run.smithi138.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.c/config 2024-09-13T22:06:35.010 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:34 smithi138 systemd[1]: Started Ceph mon.c for 89616338-721b-11ef-bceb-c7b262605968. 2024-09-13T22:06:35.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:35 smithi031 bash[22709]: cluster 2024-09-13T22:06:33.790091+0000 mgr.a (mgr.14150) 66 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:35.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:35 smithi031 bash[22709]: audit 2024-09-13T22:06:34.958930+0000 mon.a (mon.0) 209 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:35.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:35 smithi031 bash[22709]: audit 2024-09-13T22:06:34.964364+0000 mon.a (mon.0) 210 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:35.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:35 smithi031 bash[22709]: audit 2024-09-13T22:06:34.970373+0000 mon.a (mon.0) 211 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:35.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:35 smithi031 bash[22709]: audit 2024-09-13T22:06:34.971664+0000 mon.a (mon.0) 212 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-13T22:06:35.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:35 smithi031 bash[22709]: audit 2024-09-13T22:06:34.973413+0000 mon.a (mon.0) 213 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:06:36.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:36 smithi031 bash[22709]: cephadm 2024-09-13T22:06:34.975330+0000 mgr.a (mgr.14150) 67 : cephadm [INF] Deploying daemon mon.b on smithi096 2024-09-13T22:06:37.291 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.114+0000 7f759a308c80 0 set uid:gid to 167:167 (ceph:ceph) 2024-09-13T22:06:37.291 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.114+0000 7f759a308c80 0 ceph version 19.1.1-324-gecab7be5 (ecab7be58963a5bd03910cd73eef66405d7fdd50) squid (stable), process ceph-mon, pid 7 2024-09-13T22:06:37.291 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.114+0000 7f759a308c80 0 pidfile_write: ignore empty --pid-file 2024-09-13T22:06:37.291 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 0 load: jerasure load: lrc 2024-09-13T22:06:37.291 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: RocksDB version: 7.9.2 2024-09-13T22:06:37.291 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Git sha 0 2024-09-13T22:06:37.291 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Compile date 2024-09-13 16:59:10 2024-09-13T22:06:37.291 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: DB SUMMARY 2024-09-13T22:06:37.292 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: DB Session ID: PZHVFMFYU79H4I4HTL6M 2024-09-13T22:06:37.292 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: CURRENT file: CURRENT 2024-09-13T22:06:37.292 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: IDENTITY file: IDENTITY 2024-09-13T22:06:37.292 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: MANIFEST file: MANIFEST-000005 size: 59 Bytes 2024-09-13T22:06:37.292 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-c/store.db dir, Total Num: 0, files: 2024-09-13T22:06:37.292 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-c/store.db: 000004.log size: 511 ; 2024-09-13T22:06:37.292 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.error_if_exists: 0 2024-09-13T22:06:37.292 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.create_if_missing: 0 2024-09-13T22:06:37.292 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.paranoid_checks: 1 2024-09-13T22:06:37.292 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-09-13T22:06:37.293 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-13T22:06:37.293 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-13T22:06:37.293 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.env: 0x55a54d3ca940 2024-09-13T22:06:37.293 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.fs: PosixFileSystem 2024-09-13T22:06:37.293 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.info_log: 0x55a54e64f6e0 2024-09-13T22:06:37.293 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.max_file_opening_threads: 16 2024-09-13T22:06:37.293 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.statistics: (nil) 2024-09-13T22:06:37.293 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.use_fsync: 0 2024-09-13T22:06:37.293 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.max_log_file_size: 0 2024-09-13T22:06:37.293 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-13T22:06:37.293 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-09-13T22:06:37.293 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.keep_log_file_num: 1000 2024-09-13T22:06:37.294 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.recycle_log_file_num: 0 2024-09-13T22:06:37.294 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.allow_fallocate: 1 2024-09-13T22:06:37.294 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.allow_mmap_reads: 0 2024-09-13T22:06:37.294 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.allow_mmap_writes: 0 2024-09-13T22:06:37.294 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.use_direct_reads: 0 2024-09-13T22:06:37.294 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-13T22:06:37.294 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.create_missing_column_families: 0 2024-09-13T22:06:37.294 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.db_log_dir: 2024-09-13T22:06:37.294 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.wal_dir: 2024-09-13T22:06:37.294 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-09-13T22:06:37.294 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-09-13T22:06:37.295 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-09-13T22:06:37.295 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-13T22:06:37.295 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-13T22:06:37.295 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-09-13T22:06:37.295 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.advise_random_on_open: 1 2024-09-13T22:06:37.295 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.db_write_buffer_size: 0 2024-09-13T22:06:37.295 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.write_buffer_manager: 0x55a54e65edc0 2024-09-13T22:06:37.295 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-13T22:06:37.295 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-13T22:06:37.295 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-09-13T22:06:37.295 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.rate_limiter: (nil) 2024-09-13T22:06:37.295 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-13T22:06:37.295 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.wal_recovery_mode: 2 2024-09-13T22:06:37.296 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.enable_thread_tracking: 0 2024-09-13T22:06:37.296 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.enable_pipelined_write: 0 2024-09-13T22:06:37.296 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.unordered_write: 0 2024-09-13T22:06:37.296 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-13T22:06:37.296 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-13T22:06:37.296 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-13T22:06:37.296 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-13T22:06:37.296 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.row_cache: None 2024-09-13T22:06:37.296 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.wal_filter: None 2024-09-13T22:06:37.296 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-13T22:06:37.296 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.allow_ingest_behind: 0 2024-09-13T22:06:37.296 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.two_write_queues: 0 2024-09-13T22:06:37.296 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.manual_wal_flush: 0 2024-09-13T22:06:37.297 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.wal_compression: 0 2024-09-13T22:06:37.297 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.atomic_flush: 0 2024-09-13T22:06:37.297 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-13T22:06:37.297 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-09-13T22:06:37.297 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-09-13T22:06:37.297 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.log_readahead_size: 0 2024-09-13T22:06:37.297 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-13T22:06:37.297 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.best_efforts_recovery: 0 2024-09-13T22:06:37.297 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-13T22:06:37.297 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-13T22:06:37.297 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.allow_data_in_errors: 0 2024-09-13T22:06:37.297 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.db_host_id: __hostname__ 2024-09-13T22:06:37.297 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-09-13T22:06:37.297 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.max_background_jobs: 2 2024-09-13T22:06:37.298 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.max_background_compactions: -1 2024-09-13T22:06:37.300 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.max_subcompactions: 1 2024-09-13T22:06:37.300 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-13T22:06:37.300 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-13T22:06:37.300 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-09-13T22:06:37.300 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.max_total_wal_size: 0 2024-09-13T22:06:37.300 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-13T22:06:37.300 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-09-13T22:06:37.301 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-09-13T22:06:37.301 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-13T22:06:37.301 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.max_open_files: -1 2024-09-13T22:06:37.301 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.bytes_per_sync: 0 2024-09-13T22:06:37.301 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-09-13T22:06:37.301 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-09-13T22:06:37.301 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.compaction_readahead_size: 0 2024-09-13T22:06:37.301 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.max_background_flushes: -1 2024-09-13T22:06:37.301 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Compression algorithms supported: 2024-09-13T22:06:37.301 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: kZSTD supported: 0 2024-09-13T22:06:37.301 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: kXpressCompression supported: 0 2024-09-13T22:06:37.301 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: kBZip2Compression supported: 0 2024-09-13T22:06:37.301 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-13T22:06:37.302 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: kLZ4Compression supported: 1 2024-09-13T22:06:37.302 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: kZlibCompression supported: 1 2024-09-13T22:06:37.302 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: kLZ4HCCompression supported: 1 2024-09-13T22:06:37.302 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: kSnappyCompression supported: 1 2024-09-13T22:06:37.302 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-09-13T22:06:37.302 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-09-13T22:06:37.302 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-c/store.db/MANIFEST-000005 2024-09-13T22:06:37.302 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-13T22:06:37.302 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-13T22:06:37.302 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.merge_operator: 2024-09-13T22:06:37.302 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.compaction_filter: None 2024-09-13T22:06:37.302 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.compaction_filter_factory: None 2024-09-13T22:06:37.302 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.sst_partitioner_factory: None 2024-09-13T22:06:37.302 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-09-13T22:06:37.303 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-09-13T22:06:37.303 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55a54e64f320) 2024-09-13T22:06:37.303 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cache_index_and_filter_blocks: 1 2024-09-13T22:06:37.303 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-13T22:06:37.303 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-13T22:06:37.303 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: pin_top_level_index_and_filter: 1 2024-09-13T22:06:37.303 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: index_type: 0 2024-09-13T22:06:37.303 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: data_block_index_type: 0 2024-09-13T22:06:37.303 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: index_shortening: 1 2024-09-13T22:06:37.303 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: data_block_hash_table_util_ratio: 0.750000 2024-09-13T22:06:37.303 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: checksum: 4 2024-09-13T22:06:37.303 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: no_block_cache: 0 2024-09-13T22:06:37.303 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: block_cache: 0x55a54e6451f0 2024-09-13T22:06:37.304 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: block_cache_name: BinnedLRUCache 2024-09-13T22:06:37.304 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: block_cache_options: 2024-09-13T22:06:37.304 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: capacity : 536870912 2024-09-13T22:06:37.304 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: num_shard_bits : 4 2024-09-13T22:06:37.304 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: strict_capacity_limit : 0 2024-09-13T22:06:37.304 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: high_pri_pool_ratio: 0.000 2024-09-13T22:06:37.304 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: block_cache_compressed: (nil) 2024-09-13T22:06:37.304 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: persistent_cache: (nil) 2024-09-13T22:06:37.304 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: block_size: 4096 2024-09-13T22:06:37.304 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: block_size_deviation: 10 2024-09-13T22:06:37.304 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: block_restart_interval: 16 2024-09-13T22:06:37.304 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: index_block_restart_interval: 1 2024-09-13T22:06:37.304 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: metadata_block_size: 4096 2024-09-13T22:06:37.305 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: partition_filters: 0 2024-09-13T22:06:37.305 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: use_delta_encoding: 1 2024-09-13T22:06:37.305 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: filter_policy: bloomfilter 2024-09-13T22:06:37.305 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: whole_key_filtering: 1 2024-09-13T22:06:37.305 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: verify_compression: 0 2024-09-13T22:06:37.305 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: read_amp_bytes_per_bit: 0 2024-09-13T22:06:37.305 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: format_version: 5 2024-09-13T22:06:37.305 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: enable_index_compression: 1 2024-09-13T22:06:37.305 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: block_align: 0 2024-09-13T22:06:37.305 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: max_auto_readahead_size: 262144 2024-09-13T22:06:37.306 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: prepopulate_block_cache: 0 2024-09-13T22:06:37.306 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: initial_auto_readahead_size: 8192 2024-09-13T22:06:37.306 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: num_file_reads_for_auto_readahead: 2 2024-09-13T22:06:37.306 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.write_buffer_size: 33554432 2024-09-13T22:06:37.306 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.max_write_buffer_number: 2 2024-09-13T22:06:37.306 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.compression: NoCompression 2024-09-13T22:06:37.306 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.bottommost_compression: Disabled 2024-09-13T22:06:37.306 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.prefix_extractor: nullptr 2024-09-13T22:06:37.306 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-13T22:06:37.306 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.num_levels: 7 2024-09-13T22:06:37.306 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-13T22:06:37.306 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-13T22:06:37.306 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-13T22:06:37.307 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-13T22:06:37.307 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-13T22:06:37.307 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-13T22:06:37.307 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-13T22:06:37.307 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-13T22:06:37.307 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-13T22:06:37.307 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-13T22:06:37.307 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-13T22:06:37.307 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-13T22:06:37.307 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-09-13T22:06:37.307 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.compression_opts.level: 32767 2024-09-13T22:06:37.307 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.compression_opts.strategy: 0 2024-09-13T22:06:37.307 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-13T22:06:37.307 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-13T22:06:37.308 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-13T22:06:37.308 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-13T22:06:37.308 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.compression_opts.enabled: false 2024-09-13T22:06:37.308 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-13T22:06:37.308 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-13T22:06:37.308 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-13T22:06:37.308 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-13T22:06:37.308 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.target_file_size_base: 67108864 2024-09-13T22:06:37.308 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-09-13T22:06:37.308 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-13T22:06:37.308 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-13T22:06:37.308 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-13T22:06:37.308 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-13T22:06:37.308 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-13T22:06:37.309 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-13T22:06:37.309 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-13T22:06:37.309 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-13T22:06:37.309 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-13T22:06:37.309 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-13T22:06:37.309 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-13T22:06:37.309 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-13T22:06:37.309 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-13T22:06:37.309 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.arena_block_size: 1048576 2024-09-13T22:06:37.309 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-13T22:06:37.309 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-13T22:06:37.309 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.disable_auto_compactions: 0 2024-09-13T22:06:37.309 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-13T22:06:37.309 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-13T22:06:37.310 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-13T22:06:37.310 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-13T22:06:37.310 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-13T22:06:37.310 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-13T22:06:37.310 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-13T22:06:37.310 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-13T22:06:37.310 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-13T22:06:37.310 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-13T22:06:37.310 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-13T22:06:37.310 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.inplace_update_support: 0 2024-09-13T22:06:37.310 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-09-13T22:06:37.310 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-13T22:06:37.310 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-13T22:06:37.310 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-09-13T22:06:37.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.bloom_locality: 0 2024-09-13T22:06:37.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.max_successive_merges: 0 2024-09-13T22:06:37.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-09-13T22:06:37.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.paranoid_file_checks: 0 2024-09-13T22:06:37.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.force_consistency_checks: 1 2024-09-13T22:06:37.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.report_bg_io_stats: 0 2024-09-13T22:06:37.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.ttl: 2592000 2024-09-13T22:06:37.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-09-13T22:06:37.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-13T22:06:37.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-13T22:06:37.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.enable_blob_files: false 2024-09-13T22:06:37.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.min_blob_size: 0 2024-09-13T22:06:37.311 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.blob_file_size: 268435456 2024-09-13T22:06:37.312 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-09-13T22:06:37.312 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-09-13T22:06:37.312 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-13T22:06:37.312 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-13T22:06:37.312 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-13T22:06:37.312 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.blob_file_starting_level: 0 2024-09-13T22:06:37.312 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-13T22:06:37.312 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 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-09-13T22:06:37.312 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-09-13T22:06:37.312 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 54fcd8a2-d9ff-43c6-90e9-8a93fe1b23f9 2024-09-13T22:06:37.312 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726265197121321, "job": 1, "event": "recovery_started", "wal_files": [4]} 2024-09-13T22:06:37.312 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #4 mode 2 2024-09-13T22:06:37.312 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726265197121935, "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": 1726265197, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "54fcd8a2-d9ff-43c6-90e9-8a93fe1b23f9", "db_session_id": "PZHVFMFYU79H4I4HTL6M", "orig_file_number": 8, "seqno_to_time_mapping": "N/A"}} 2024-09-13T22:06:37.313 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726265197122084, "job": 1, "event": "recovery_finished"} 2024-09-13T22:06:37.313 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.118+0000 7f759a308c80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 10 2024-09-13T22:06:37.313 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.122+0000 7f759a308c80 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-09-13T22:06:37.313 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.122+0000 7f759a308c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x55a54e670e00 2024-09-13T22:06:37.313 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.122+0000 7f759a308c80 4 rocksdb: DB pointer 0x55a54e770000 2024-09-13T22:06:37.313 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.122+0000 7f75900d1640 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-13T22:06:37.313 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.122+0000 7f75900d1640 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-13T22:06:37.313 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: ** DB Stats ** 2024-09-13T22:06:37.313 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-13T22:06:37.313 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-09-13T22:06:37.313 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-13T22:06:37.313 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-13T22:06:37.313 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-09-13T22:06:37.314 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-13T22:06:37.314 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-13T22:06:37.314 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: ** Compaction Stats [default] ** 2024-09-13T22:06:37.314 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-09-13T22:06:37.314 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-13T22:06:37.314 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: L0 1/0 1.61 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.7 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-13T22:06:37.314 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: Sum 1/0 1.61 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.7 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-13T22:06:37.314 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.7 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-13T22:06:37.314 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: ** Compaction Stats [default] ** 2024-09-13T22:06:37.314 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-09-13T22:06:37.314 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-13T22:06:37.314 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.7 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-13T22:06:37.314 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-13T22:06:37.314 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-13T22:06:37.314 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: Flush(GB): cumulative 0.000, interval 0.000 2024-09-13T22:06:37.315 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-13T22:06:37.315 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: AddFile(Total Files): cumulative 0, interval 0 2024-09-13T22:06:37.315 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: AddFile(L0 Files): cumulative 0, interval 0 2024-09-13T22:06:37.315 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: AddFile(Keys): cumulative 0, interval 0 2024-09-13T22:06:37.315 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: Cumulative compaction: 0.00 GB write, 0.35 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-13T22:06:37.315 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: Interval compaction: 0.00 GB write, 0.35 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-13T22:06:37.315 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-09-13T22:06:37.315 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: Block cache BinnedLRUCache@0x55a54e6451f0#7 capacity: 512.00 MB usage: 0.22 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.6e-05 secs_since: 0 2024-09-13T22:06:37.315 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: 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-09-13T22:06:37.315 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: ** File Read Latency Histogram By Level [default] ** 2024-09-13T22:06:37.315 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.122+0000 7f759a308c80 0 mon.c does not exist in monmap, will attempt to join an existing cluster 2024-09-13T22:06:37.315 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.122+0000 7f759a308c80 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-09-13T22:06:37.315 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.122+0000 7f759a308c80 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 89616338-721b-11ef-bceb-c7b262605968 2024-09-13T22:06:37.316 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.126+0000 7f759a308c80 1 mon.c@-1(???) e0 preinit fsid 89616338-721b-11ef-bceb-c7b262605968 2024-09-13T22:06:37.316 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.158+0000 7f75930d7640 0 mon.c@-1(synchronizing).mds e1 new map 2024-09-13T22:06:37.316 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.158+0000 7f75930d7640 0 mon.c@-1(synchronizing).mds e1 print_map 2024-09-13T22:06:37.316 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: e1 2024-09-13T22:06:37.316 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: btime 2024-09-13T22:04:15:023402+0000 2024-09-13T22:06:37.316 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: enable_multiple, ever_enabled_multiple: 1,1 2024-09-13T22:06:37.316 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2,11=minor log segments,12=quiesce subvolumes} 2024-09-13T22:06:37.316 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: legacy client fscid: -1 2024-09-13T22:06:37.316 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: 2024-09-13T22:06:37.316 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: No filesystems configured 2024-09-13T22:06:37.316 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.158+0000 7f75930d7640 1 mon.c@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-09-13T22:06:37.316 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.158+0000 7f75930d7640 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-09-13T22:06:37.316 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.158+0000 7f75930d7640 1 mon.c@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-09-13T22:06:37.317 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.158+0000 7f75930d7640 1 mon.c@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-09-13T22:06:37.317 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.158+0000 7f75930d7640 1 mon.c@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-09-13T22:06:37.317 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.158+0000 7f75930d7640 1 mon.c@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-09-13T22:06:37.317 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.158+0000 7f75930d7640 0 mon.c@-1(synchronizing).osd e4 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-13T22:06:37.317 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.158+0000 7f75930d7640 0 mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-13T22:06:37.317 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.158+0000 7f75930d7640 0 mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-13T22:06:37.317 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.158+0000 7f75930d7640 0 mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-13T22:06:37.317 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cluster 2024-09-13T22:05:39.779359+0000 mgr.a (mgr.14150) 18 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:37.317 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:05:41.350875+0000 mon.a (mon.0) 126 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.317 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:05:41.357189+0000 mon.a (mon.0) 127 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.317 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cluster 2024-09-13T22:05:41.779752+0000 mgr.a (mgr.14150) 19 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:37.317 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cluster 2024-09-13T22:05:43.780172+0000 mgr.a (mgr.14150) 20 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:37.317 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cluster 2024-09-13T22:05:45.780469+0000 mgr.a (mgr.14150) 21 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:37.318 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:05:46.016323+0000 mgr.a (mgr.14150) 22 : audit [DBG] from='client.14174 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi096", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:06:37.318 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cephadm 2024-09-13T22:05:47.304751+0000 mgr.a (mgr.14150) 23 : cephadm [INF] Deploying cephadm binary to smithi096 2024-09-13T22:06:37.318 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cluster 2024-09-13T22:05:47.780806+0000 mgr.a (mgr.14150) 24 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:37.318 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:05:49.738975+0000 mon.a (mon.0) 128 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.318 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:05:49.749861+0000 mon.a (mon.0) 129 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.318 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:05:49.762104+0000 mon.a (mon.0) 130 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.318 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cluster 2024-09-13T22:05:49.781160+0000 mgr.a (mgr.14150) 25 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:37.318 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:05:50.986667+0000 mon.a (mon.0) 131 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.318 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cephadm 2024-09-13T22:05:50.987620+0000 mgr.a (mgr.14150) 26 : cephadm [INF] Added host smithi096 2024-09-13T22:06:37.318 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:05:50.988464+0000 mon.a (mon.0) 132 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:06:37.318 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:05:51.479350+0000 mon.a (mon.0) 133 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.318 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cluster 2024-09-13T22:05:51.781523+0000 mgr.a (mgr.14150) 27 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:37.318 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:05:52.998902+0000 mon.a (mon.0) 134 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.319 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:05:53.004725+0000 mon.a (mon.0) 135 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.319 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:05:53.006447+0000 mon.a (mon.0) 136 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi096", "name": "osd_memory_target"}]: dispatch 2024-09-13T22:06:37.319 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:05:53.008354+0000 mon.a (mon.0) 137 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:06:37.319 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:05:53.009975+0000 mon.a (mon.0) 138 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:06:37.319 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cephadm 2024-09-13T22:05:53.012445+0000 mgr.a (mgr.14150) 28 : cephadm [INF] Updating smithi096:/etc/ceph/ceph.conf 2024-09-13T22:06:37.319 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cephadm 2024-09-13T22:05:53.199495+0000 mgr.a (mgr.14150) 29 : cephadm [INF] Updating smithi096:/var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T22:06:37.319 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cephadm 2024-09-13T22:05:53.360044+0000 mgr.a (mgr.14150) 30 : cephadm [INF] Updating smithi096:/etc/ceph/ceph.client.admin.keyring 2024-09-13T22:06:37.319 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cephadm 2024-09-13T22:05:53.512743+0000 mgr.a (mgr.14150) 31 : cephadm [INF] Updating smithi096:/var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-13T22:06:37.319 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:05:53.667825+0000 mon.a (mon.0) 139 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.319 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:05:53.676157+0000 mon.a (mon.0) 140 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.319 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:05:53.678736+0000 mon.a (mon.0) 141 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi096", "caps": []}]: dispatch 2024-09-13T22:06:37.319 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:05:53.682447+0000 mon.a (mon.0) 142 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi096", "caps": []}]': finished 2024-09-13T22:06:37.319 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cluster 2024-09-13T22:05:53.781885+0000 mgr.a (mgr.14150) 32 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:37.319 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cephadm 2024-09-13T22:05:54.504644+0000 mgr.a (mgr.14150) 33 : cephadm [INF] Deploying daemon agent.smithi096 on smithi096 2024-09-13T22:06:37.320 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:05:55.551513+0000 mon.a (mon.0) 143 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.320 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:05:55.557229+0000 mon.a (mon.0) 144 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.320 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:05:55.562843+0000 mon.a (mon.0) 145 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.320 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:05:55.621122+0000 mon.a (mon.0) 146 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:06:37.320 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:05:55.625094+0000 mon.a (mon.0) 147 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:06:37.320 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:05:55.626467+0000 mon.a (mon.0) 148 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:06:37.320 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:05:55.633597+0000 mon.a (mon.0) 149 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.320 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:05:55.695062+0000 mon.a (mon.0) 150 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:06:37.320 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:05:55.699034+0000 mon.a (mon.0) 151 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:06:37.320 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:05:55.700710+0000 mon.a (mon.0) 152 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:06:37.320 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:05:55.708606+0000 mon.a (mon.0) 153 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.320 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:05:55.841611+0000 mon.a (mon.0) 154 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.321 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:05:56.139494+0000 mon.a (mon.0) 155 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.321 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cluster 2024-09-13T22:05:55.782325+0000 mgr.a (mgr.14150) 34 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:37.321 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:05:57.191284+0000 mon.a (mon.0) 156 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.321 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:05:57.198600+0000 mon.a (mon.0) 157 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.321 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cluster 2024-09-13T22:05:57.782741+0000 mgr.a (mgr.14150) 35 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:37.321 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:05:57.908428+0000 mgr.a (mgr.14150) 36 : audit [DBG] from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-13T22:06:37.321 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cluster 2024-09-13T22:05:59.783157+0000 mgr.a (mgr.14150) 37 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:37.321 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cluster 2024-09-13T22:06:01.783682+0000 mgr.a (mgr.14150) 38 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:37.321 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cluster 2024-09-13T22:06:03.784091+0000 mgr.a (mgr.14150) 39 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:37.321 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:05.097934+0000 mgr.a (mgr.14150) 40 : audit [DBG] from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi138", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:06:37.321 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cluster 2024-09-13T22:06:05.784509+0000 mgr.a (mgr.14150) 41 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:37.321 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cephadm 2024-09-13T22:06:06.344923+0000 mgr.a (mgr.14150) 42 : cephadm [INF] Deploying cephadm binary to smithi138 2024-09-13T22:06:37.321 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cluster 2024-09-13T22:06:07.784987+0000 mgr.a (mgr.14150) 43 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:37.322 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cluster 2024-09-13T22:06:09.785339+0000 mgr.a (mgr.14150) 44 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:37.322 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:09.978280+0000 mon.a (mon.0) 158 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.322 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:09.984726+0000 mon.a (mon.0) 159 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.322 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:09.992384+0000 mon.a (mon.0) 160 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.322 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:10.046189+0000 mon.a (mon.0) 161 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.322 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cephadm 2024-09-13T22:06:10.046974+0000 mgr.a (mgr.14150) 45 : cephadm [INF] Added host smithi138 2024-09-13T22:06:37.322 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:10.047746+0000 mon.a (mon.0) 162 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:06:37.322 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:10.131974+0000 mon.a (mon.0) 163 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.322 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:10.136739+0000 mon.a (mon.0) 164 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.322 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:10.556831+0000 mon.a (mon.0) 165 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.322 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cluster 2024-09-13T22:06:11.785731+0000 mgr.a (mgr.14150) 46 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:37.322 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:12.079880+0000 mon.a (mon.0) 166 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.322 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:12.085964+0000 mon.a (mon.0) 167 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.322 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:12.087457+0000 mon.a (mon.0) 168 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi138", "name": "osd_memory_target"}]: dispatch 2024-09-13T22:06:37.323 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:12.089410+0000 mon.a (mon.0) 169 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:06:37.323 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:12.091168+0000 mon.a (mon.0) 170 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:06:37.323 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cephadm 2024-09-13T22:06:12.093691+0000 mgr.a (mgr.14150) 47 : cephadm [INF] Updating smithi138:/etc/ceph/ceph.conf 2024-09-13T22:06:37.323 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cephadm 2024-09-13T22:06:12.279496+0000 mgr.a (mgr.14150) 48 : cephadm [INF] Updating smithi138:/var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T22:06:37.323 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cephadm 2024-09-13T22:06:12.440671+0000 mgr.a (mgr.14150) 49 : cephadm [INF] Updating smithi138:/etc/ceph/ceph.client.admin.keyring 2024-09-13T22:06:37.323 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cephadm 2024-09-13T22:06:12.593382+0000 mgr.a (mgr.14150) 50 : cephadm [INF] Updating smithi138:/var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-13T22:06:37.323 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:12.746727+0000 mon.a (mon.0) 171 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.323 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:12.752116+0000 mon.a (mon.0) 172 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.323 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:12.755120+0000 mon.a (mon.0) 173 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi138", "caps": []}]: dispatch 2024-09-13T22:06:37.323 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:12.757168+0000 mon.a (mon.0) 174 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi138", "caps": []}]': finished 2024-09-13T22:06:37.323 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cluster 2024-09-13T22:06:13.786009+0000 mgr.a (mgr.14150) 51 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:37.323 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cephadm 2024-09-13T22:06:13.802176+0000 mgr.a (mgr.14150) 52 : cephadm [INF] Deploying daemon agent.smithi138 on smithi138 2024-09-13T22:06:37.324 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:14.897515+0000 mon.a (mon.0) 175 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.324 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:14.902916+0000 mon.a (mon.0) 176 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.324 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:14.907991+0000 mon.a (mon.0) 177 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.324 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:14.998463+0000 mon.a (mon.0) 178 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:06:37.324 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:15.002777+0000 mon.a (mon.0) 179 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:06:37.324 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:15.004180+0000 mon.a (mon.0) 180 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:06:37.324 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:15.011533+0000 mon.a (mon.0) 181 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.324 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:15.101536+0000 mon.a (mon.0) 182 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:06:37.324 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:15.106376+0000 mon.a (mon.0) 183 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:06:37.324 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:15.108335+0000 mon.a (mon.0) 184 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:06:37.324 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:15.116608+0000 mon.a (mon.0) 185 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.324 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:15.436493+0000 mon.a (mon.0) 186 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:15.849572+0000 mon.a (mon.0) 187 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cluster 2024-09-13T22:06:15.786399+0000 mgr.a (mgr.14150) 53 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:37.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:16.491118+0000 mon.a (mon.0) 188 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:16.495591+0000 mon.a (mon.0) 189 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:16.746036+0000 mon.a (mon.0) 190 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:16.749898+0000 mon.a (mon.0) 191 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:16.755644+0000 mon.a (mon.0) 192 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:16.782947+0000 mgr.a (mgr.14150) 54 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-13T22:06:37.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cluster 2024-09-13T22:06:17.786804+0000 mgr.a (mgr.14150) 55 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:37.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cluster 2024-09-13T22:06:19.787188+0000 mgr.a (mgr.14150) 56 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:37.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cluster 2024-09-13T22:06:21.787602+0000 mgr.a (mgr.14150) 57 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:37.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:23.616423+0000 mon.a (mon.0) 193 : audit [INF] from='client.? 172.21.15.31:0/2192616921' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-09-13T22:06:37.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cluster 2024-09-13T22:06:23.787996+0000 mgr.a (mgr.14150) 58 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:37.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:24.505836+0000 mon.a (mon.0) 194 : audit [INF] from='client.? 172.21.15.31:0/2192616921' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-13T22:06:37.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cluster 2024-09-13T22:06:24.510381+0000 mon.a (mon.0) 195 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-13T22:06:37.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cluster 2024-09-13T22:06:25.788428+0000 mgr.a (mgr.14150) 59 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:37.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cluster 2024-09-13T22:06:27.788819+0000 mgr.a (mgr.14150) 60 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:37.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:27.965927+0000 mgr.a (mgr.14150) 61 : audit [DBG] from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi031:172.21.15.31=a;smithi096:172.21.15.96=b;smithi138:172.21.15.138=c", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:06:37.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cephadm 2024-09-13T22:06:27.971017+0000 mgr.a (mgr.14150) 62 : cephadm [INF] Saving service mon spec with placement smithi031:172.21.15.31=a;smithi096:172.21.15.96=b;smithi138:172.21.15.138=c;count:3 2024-09-13T22:06:37.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:27.976773+0000 mon.a (mon.0) 196 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:27.978463+0000 mon.a (mon.0) 197 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:06:37.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:27.983119+0000 mon.a (mon.0) 198 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:06:37.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:27.984813+0000 mon.a (mon.0) 199 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:06:37.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:27.993556+0000 mon.a (mon.0) 200 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:27.998515+0000 mon.a (mon.0) 201 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-13T22:06:37.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:28.000092+0000 mon.a (mon.0) 202 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:06:37.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cephadm 2024-09-13T22:06:28.001911+0000 mgr.a (mgr.14150) 63 : cephadm [INF] Deploying daemon mon.c on smithi138 2024-09-13T22:06:37.327 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cluster 2024-09-13T22:06:29.789277+0000 mgr.a (mgr.14150) 64 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:37.327 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:30.071770+0000 mon.a (mon.0) 203 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.327 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:30.079621+0000 mon.a (mon.0) 204 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.327 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:30.202244+0000 mon.a (mon.0) 205 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.327 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:30.207771+0000 mon.a (mon.0) 206 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.327 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:30.214977+0000 mon.a (mon.0) 207 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.327 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:31.893964+0000 mon.a (mon.0) 208 : audit [DBG] from='client.? 172.21.15.138:0/2681533173' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-13T22:06:37.327 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cluster 2024-09-13T22:06:31.789688+0000 mgr.a (mgr.14150) 65 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:37.327 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cluster 2024-09-13T22:06:33.790091+0000 mgr.a (mgr.14150) 66 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:37.327 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:34.958930+0000 mon.a (mon.0) 209 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.327 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:34.964364+0000 mon.a (mon.0) 210 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.327 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:34.970373+0000 mon.a (mon.0) 211 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.327 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:34.971664+0000 mon.a (mon.0) 212 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-13T22:06:37.327 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:34.973413+0000 mon.a (mon.0) 213 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:06:37.328 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cephadm 2024-09-13T22:06:34.975330+0000 mgr.a (mgr.14150) 67 : cephadm [INF] Deploying daemon mon.b on smithi096 2024-09-13T22:06:37.328 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: cluster 2024-09-13T22:06:35.790489+0000 mgr.a (mgr.14150) 68 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:37.328 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:36.944725+0000 mon.a (mon.0) 214 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.328 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:36.950207+0000 mon.a (mon.0) 215 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.328 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: audit 2024-09-13T22:06:36.957993+0000 mon.a (mon.0) 216 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.328 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:37 smithi138 bash[23295]: debug 2024-09-13T22:06:37.158+0000 7f75930d7640 1 mon.c@-1(synchronizing).paxosservice(auth 1..6) refresh upgraded, format 0 -> 3 2024-09-13T22:06:37.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:37 smithi031 bash[22709]: cluster 2024-09-13T22:06:35.790489+0000 mgr.a (mgr.14150) 68 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:37.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:37 smithi031 bash[22709]: audit 2024-09-13T22:06:36.944725+0000 mon.a (mon.0) 214 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:37 smithi031 bash[22709]: audit 2024-09-13T22:06:36.950207+0000 mon.a (mon.0) 215 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:37.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:37 smithi031 bash[22709]: audit 2024-09-13T22:06:36.957993+0000 mon.a (mon.0) 216 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:40.823 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: debug 2024-09-13T22:06:40.809+0000 7f76829c7c80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-13T22:06:40.823 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: debug 2024-09-13T22:06:40.809+0000 7f76829c7c80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-13T22:06:40.823 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: debug 2024-09-13T22:06:40.809+0000 7f76829c7c80 4 rocksdb: Options.blob_file_starting_level: 0 2024-09-13T22:06:40.823 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: debug 2024-09-13T22:06:40.809+0000 7f76829c7c80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-13T22:06:40.823 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: debug 2024-09-13T22:06:40.809+0000 7f76829c7c80 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-09-13T22:06:40.823 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: debug 2024-09-13T22:06:40.809+0000 7f76829c7c80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-09-13T22:06:40.824 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: debug 2024-09-13T22:06:40.809+0000 7f76829c7c80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: d0467808-2e0d-4ab5-a027-b634b3b3d0d2 2024-09-13T22:06:40.824 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: debug 2024-09-13T22:06:40.809+0000 7f76829c7c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726265200814946, "job": 1, "event": "recovery_started", "wal_files": [4]} 2024-09-13T22:06:40.824 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: debug 2024-09-13T22:06:40.809+0000 7f76829c7c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #4 mode 2 2024-09-13T22:06:41.190 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: debug 2024-09-13T22:06:40.809+0000 7f76829c7c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726265200815417, "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": 1726265200, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "d0467808-2e0d-4ab5-a027-b634b3b3d0d2", "db_session_id": "ZEJ1YG3P5OIZ4BAUX7Q8", "orig_file_number": 8, "seqno_to_time_mapping": "N/A"}} 2024-09-13T22:06:41.190 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: debug 2024-09-13T22:06:40.809+0000 7f76829c7c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726265200815534, "job": 1, "event": "recovery_finished"} 2024-09-13T22:06:41.191 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: debug 2024-09-13T22:06:40.813+0000 7f76829c7c80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 10 2024-09-13T22:06:41.191 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: debug 2024-09-13T22:06:40.813+0000 7f76829c7c80 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-09-13T22:06:41.191 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: debug 2024-09-13T22:06:40.813+0000 7f76829c7c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x55911001ee00 2024-09-13T22:06:41.191 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: debug 2024-09-13T22:06:40.813+0000 7f76829c7c80 4 rocksdb: DB pointer 0x55911011e000 2024-09-13T22:06:41.191 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: debug 2024-09-13T22:06:40.813+0000 7f7678790640 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-13T22:06:41.191 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: debug 2024-09-13T22:06:40.813+0000 7f7678790640 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-13T22:06:41.192 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: ** DB Stats ** 2024-09-13T22:06:41.192 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-13T22:06:41.192 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-09-13T22:06:41.192 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-13T22:06:41.192 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-13T22:06:41.192 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-09-13T22:06:41.192 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-13T22:06:41.192 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-13T22:06:41.193 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: ** Compaction Stats [default] ** 2024-09-13T22:06:41.193 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-09-13T22:06:41.194 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-13T22:06:41.194 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: L0 1/0 1.61 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.7 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-13T22:06:41.194 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: Sum 1/0 1.61 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.7 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-13T22:06:41.194 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.7 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-13T22:06:41.194 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: ** Compaction Stats [default] ** 2024-09-13T22:06:41.194 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-09-13T22:06:41.194 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-13T22:06:41.194 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.7 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-13T22:06:41.194 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-13T22:06:41.195 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-13T22:06:41.195 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: Flush(GB): cumulative 0.000, interval 0.000 2024-09-13T22:06:41.195 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-13T22:06:41.195 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: AddFile(Total Files): cumulative 0, interval 0 2024-09-13T22:06:41.195 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: AddFile(L0 Files): cumulative 0, interval 0 2024-09-13T22:06:41.195 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: AddFile(Keys): cumulative 0, interval 0 2024-09-13T22:06:41.195 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: Cumulative compaction: 0.00 GB write, 0.50 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-13T22:06:41.195 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: Interval compaction: 0.00 GB write, 0.50 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-13T22:06:41.195 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-09-13T22:06:41.195 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: Block cache BinnedLRUCache@0x55910fff31f0#7 capacity: 512.00 MB usage: 0.22 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.3e-05 secs_since: 0 2024-09-13T22:06:41.195 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: 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-09-13T22:06:41.195 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: ** File Read Latency Histogram By Level [default] ** 2024-09-13T22:06:41.196 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: debug 2024-09-13T22:06:40.813+0000 7f76829c7c80 0 mon.b does not exist in monmap, will attempt to join an existing cluster 2024-09-13T22:06:41.196 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: debug 2024-09-13T22:06:40.813+0000 7f76829c7c80 0 using public_addr v2:172.21.15.96:0/0 -> [v2:172.21.15.96:3300/0,v1:172.21.15.96:6789/0] 2024-09-13T22:06:41.196 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: debug 2024-09-13T22:06:40.813+0000 7f76829c7c80 0 starting mon.b rank -1 at public addrs [v2:172.21.15.96:3300/0,v1:172.21.15.96:6789/0] at bind addrs [v2:172.21.15.96:3300/0,v1:172.21.15.96:6789/0] mon_data /var/lib/ceph/mon/ceph-b fsid 89616338-721b-11ef-bceb-c7b262605968 2024-09-13T22:06:41.196 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: debug 2024-09-13T22:06:40.817+0000 7f76829c7c80 1 mon.b@-1(???) e0 preinit fsid 89616338-721b-11ef-bceb-c7b262605968 2024-09-13T22:06:41.196 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: debug 2024-09-13T22:06:40.841+0000 7f767b796640 0 mon.b@-1(synchronizing).mds e1 new map 2024-09-13T22:06:41.196 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: debug 2024-09-13T22:06:40.841+0000 7f767b796640 0 mon.b@-1(synchronizing).mds e1 print_map 2024-09-13T22:06:41.196 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: e1 2024-09-13T22:06:41.196 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: btime 2024-09-13T22:04:15:023402+0000 2024-09-13T22:06:41.196 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: enable_multiple, ever_enabled_multiple: 1,1 2024-09-13T22:06:41.196 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2,11=minor log segments,12=quiesce subvolumes} 2024-09-13T22:06:41.196 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: legacy client fscid: -1 2024-09-13T22:06:41.196 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: 2024-09-13T22:06:41.196 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: No filesystems configured 2024-09-13T22:06:41.197 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: debug 2024-09-13T22:06:40.841+0000 7f767b796640 1 mon.b@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-09-13T22:06:41.197 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: debug 2024-09-13T22:06:40.841+0000 7f767b796640 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-09-13T22:06:41.197 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: debug 2024-09-13T22:06:40.841+0000 7f767b796640 1 mon.b@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-09-13T22:06:41.197 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: debug 2024-09-13T22:06:40.841+0000 7f767b796640 1 mon.b@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-09-13T22:06:41.197 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: debug 2024-09-13T22:06:40.841+0000 7f767b796640 1 mon.b@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-09-13T22:06:41.197 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: debug 2024-09-13T22:06:40.841+0000 7f767b796640 1 mon.b@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-09-13T22:06:41.197 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: debug 2024-09-13T22:06:40.841+0000 7f767b796640 0 mon.b@-1(synchronizing).osd e4 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-13T22:06:41.197 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: debug 2024-09-13T22:06:40.841+0000 7f767b796640 0 mon.b@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-13T22:06:41.197 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: debug 2024-09-13T22:06:40.841+0000 7f767b796640 0 mon.b@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-13T22:06:41.197 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: debug 2024-09-13T22:06:40.841+0000 7f767b796640 0 mon.b@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-13T22:06:41.197 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cluster 2024-09-13T22:05:39.779359+0000 mgr.a (mgr.14150) 18 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:41.197 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:05:41.350875+0000 mon.a (mon.0) 126 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.197 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:05:41.357189+0000 mon.a (mon.0) 127 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.198 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cluster 2024-09-13T22:05:41.779752+0000 mgr.a (mgr.14150) 19 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:41.198 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cluster 2024-09-13T22:05:43.780172+0000 mgr.a (mgr.14150) 20 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:41.198 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cluster 2024-09-13T22:05:45.780469+0000 mgr.a (mgr.14150) 21 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:41.198 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:05:46.016323+0000 mgr.a (mgr.14150) 22 : audit [DBG] from='client.14174 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi096", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:06:41.198 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cephadm 2024-09-13T22:05:47.304751+0000 mgr.a (mgr.14150) 23 : cephadm [INF] Deploying cephadm binary to smithi096 2024-09-13T22:06:41.198 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cluster 2024-09-13T22:05:47.780806+0000 mgr.a (mgr.14150) 24 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:41.198 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:05:49.738975+0000 mon.a (mon.0) 128 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.198 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:05:49.749861+0000 mon.a (mon.0) 129 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.198 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:05:49.762104+0000 mon.a (mon.0) 130 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.198 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cluster 2024-09-13T22:05:49.781160+0000 mgr.a (mgr.14150) 25 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:41.198 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:05:50.986667+0000 mon.a (mon.0) 131 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.198 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cephadm 2024-09-13T22:05:50.987620+0000 mgr.a (mgr.14150) 26 : cephadm [INF] Added host smithi096 2024-09-13T22:06:41.199 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:05:50.988464+0000 mon.a (mon.0) 132 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:06:41.199 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:05:51.479350+0000 mon.a (mon.0) 133 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.199 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cluster 2024-09-13T22:05:51.781523+0000 mgr.a (mgr.14150) 27 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:41.199 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:05:52.998902+0000 mon.a (mon.0) 134 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.199 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:05:53.004725+0000 mon.a (mon.0) 135 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.199 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:05:53.006447+0000 mon.a (mon.0) 136 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi096", "name": "osd_memory_target"}]: dispatch 2024-09-13T22:06:41.199 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:05:53.008354+0000 mon.a (mon.0) 137 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:06:41.199 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:05:53.009975+0000 mon.a (mon.0) 138 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:06:41.199 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cephadm 2024-09-13T22:05:53.012445+0000 mgr.a (mgr.14150) 28 : cephadm [INF] Updating smithi096:/etc/ceph/ceph.conf 2024-09-13T22:06:41.199 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cephadm 2024-09-13T22:05:53.199495+0000 mgr.a (mgr.14150) 29 : cephadm [INF] Updating smithi096:/var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T22:06:41.199 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cephadm 2024-09-13T22:05:53.360044+0000 mgr.a (mgr.14150) 30 : cephadm [INF] Updating smithi096:/etc/ceph/ceph.client.admin.keyring 2024-09-13T22:06:41.199 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cephadm 2024-09-13T22:05:53.512743+0000 mgr.a (mgr.14150) 31 : cephadm [INF] Updating smithi096:/var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-13T22:06:41.199 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:05:53.667825+0000 mon.a (mon.0) 139 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.200 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:05:53.676157+0000 mon.a (mon.0) 140 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.200 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:05:53.678736+0000 mon.a (mon.0) 141 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi096", "caps": []}]: dispatch 2024-09-13T22:06:41.200 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:05:53.682447+0000 mon.a (mon.0) 142 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi096", "caps": []}]': finished 2024-09-13T22:06:41.200 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cluster 2024-09-13T22:05:53.781885+0000 mgr.a (mgr.14150) 32 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:41.200 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cephadm 2024-09-13T22:05:54.504644+0000 mgr.a (mgr.14150) 33 : cephadm [INF] Deploying daemon agent.smithi096 on smithi096 2024-09-13T22:06:41.200 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:05:55.551513+0000 mon.a (mon.0) 143 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.200 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:05:55.557229+0000 mon.a (mon.0) 144 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.200 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:05:55.562843+0000 mon.a (mon.0) 145 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.200 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:05:55.621122+0000 mon.a (mon.0) 146 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:06:41.201 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:05:55.625094+0000 mon.a (mon.0) 147 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:06:41.201 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:05:55.626467+0000 mon.a (mon.0) 148 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:06:41.201 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:05:55.633597+0000 mon.a (mon.0) 149 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.201 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:05:55.695062+0000 mon.a (mon.0) 150 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:06:41.201 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:05:55.699034+0000 mon.a (mon.0) 151 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:06:41.201 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:05:55.700710+0000 mon.a (mon.0) 152 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:06:41.201 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:05:55.708606+0000 mon.a (mon.0) 153 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.201 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:05:55.841611+0000 mon.a (mon.0) 154 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.201 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:05:56.139494+0000 mon.a (mon.0) 155 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.201 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cluster 2024-09-13T22:05:55.782325+0000 mgr.a (mgr.14150) 34 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:41.202 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:05:57.191284+0000 mon.a (mon.0) 156 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.202 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:05:57.198600+0000 mon.a (mon.0) 157 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.202 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cluster 2024-09-13T22:05:57.782741+0000 mgr.a (mgr.14150) 35 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:41.202 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:05:57.908428+0000 mgr.a (mgr.14150) 36 : audit [DBG] from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-13T22:06:41.202 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cluster 2024-09-13T22:05:59.783157+0000 mgr.a (mgr.14150) 37 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:41.203 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cluster 2024-09-13T22:06:01.783682+0000 mgr.a (mgr.14150) 38 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:41.203 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cluster 2024-09-13T22:06:03.784091+0000 mgr.a (mgr.14150) 39 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:41.203 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:05.097934+0000 mgr.a (mgr.14150) 40 : audit [DBG] from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi138", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:06:41.203 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cluster 2024-09-13T22:06:05.784509+0000 mgr.a (mgr.14150) 41 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:41.203 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cephadm 2024-09-13T22:06:06.344923+0000 mgr.a (mgr.14150) 42 : cephadm [INF] Deploying cephadm binary to smithi138 2024-09-13T22:06:41.203 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cluster 2024-09-13T22:06:07.784987+0000 mgr.a (mgr.14150) 43 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:41.203 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cluster 2024-09-13T22:06:09.785339+0000 mgr.a (mgr.14150) 44 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:41.203 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:09.978280+0000 mon.a (mon.0) 158 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.203 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:09.984726+0000 mon.a (mon.0) 159 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.203 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:09.992384+0000 mon.a (mon.0) 160 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.203 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:10.046189+0000 mon.a (mon.0) 161 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.203 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cephadm 2024-09-13T22:06:10.046974+0000 mgr.a (mgr.14150) 45 : cephadm [INF] Added host smithi138 2024-09-13T22:06:41.204 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:10.047746+0000 mon.a (mon.0) 162 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:06:41.204 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:10.131974+0000 mon.a (mon.0) 163 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.204 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:10.136739+0000 mon.a (mon.0) 164 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.204 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:10.556831+0000 mon.a (mon.0) 165 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.204 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cluster 2024-09-13T22:06:11.785731+0000 mgr.a (mgr.14150) 46 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:41.204 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:12.079880+0000 mon.a (mon.0) 166 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.204 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:12.085964+0000 mon.a (mon.0) 167 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.204 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:12.087457+0000 mon.a (mon.0) 168 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi138", "name": "osd_memory_target"}]: dispatch 2024-09-13T22:06:41.204 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:12.089410+0000 mon.a (mon.0) 169 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:06:41.204 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:12.091168+0000 mon.a (mon.0) 170 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:06:41.204 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cephadm 2024-09-13T22:06:12.093691+0000 mgr.a (mgr.14150) 47 : cephadm [INF] Updating smithi138:/etc/ceph/ceph.conf 2024-09-13T22:06:41.204 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cephadm 2024-09-13T22:06:12.279496+0000 mgr.a (mgr.14150) 48 : cephadm [INF] Updating smithi138:/var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T22:06:41.205 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cephadm 2024-09-13T22:06:12.440671+0000 mgr.a (mgr.14150) 49 : cephadm [INF] Updating smithi138:/etc/ceph/ceph.client.admin.keyring 2024-09-13T22:06:41.205 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cephadm 2024-09-13T22:06:12.593382+0000 mgr.a (mgr.14150) 50 : cephadm [INF] Updating smithi138:/var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-13T22:06:41.205 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:12.746727+0000 mon.a (mon.0) 171 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.205 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:12.752116+0000 mon.a (mon.0) 172 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.205 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:12.755120+0000 mon.a (mon.0) 173 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi138", "caps": []}]: dispatch 2024-09-13T22:06:41.205 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:12.757168+0000 mon.a (mon.0) 174 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi138", "caps": []}]': finished 2024-09-13T22:06:41.205 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cluster 2024-09-13T22:06:13.786009+0000 mgr.a (mgr.14150) 51 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:41.205 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cephadm 2024-09-13T22:06:13.802176+0000 mgr.a (mgr.14150) 52 : cephadm [INF] Deploying daemon agent.smithi138 on smithi138 2024-09-13T22:06:41.205 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:14.897515+0000 mon.a (mon.0) 175 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.205 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:14.902916+0000 mon.a (mon.0) 176 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.205 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:14.907991+0000 mon.a (mon.0) 177 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.205 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:14.998463+0000 mon.a (mon.0) 178 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:06:41.206 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:15.002777+0000 mon.a (mon.0) 179 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:06:41.206 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:15.004180+0000 mon.a (mon.0) 180 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:06:41.206 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:15.011533+0000 mon.a (mon.0) 181 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.206 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:15.101536+0000 mon.a (mon.0) 182 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:06:41.206 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:15.106376+0000 mon.a (mon.0) 183 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:06:41.206 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:15.108335+0000 mon.a (mon.0) 184 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:06:41.207 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:15.116608+0000 mon.a (mon.0) 185 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.207 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:15.436493+0000 mon.a (mon.0) 186 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.207 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:15.849572+0000 mon.a (mon.0) 187 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.207 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cluster 2024-09-13T22:06:15.786399+0000 mgr.a (mgr.14150) 53 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:41.207 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:16.491118+0000 mon.a (mon.0) 188 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.207 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:16.495591+0000 mon.a (mon.0) 189 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.207 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:16.746036+0000 mon.a (mon.0) 190 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.208 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:16.749898+0000 mon.a (mon.0) 191 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.208 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:16.755644+0000 mon.a (mon.0) 192 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.208 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:16.782947+0000 mgr.a (mgr.14150) 54 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-13T22:06:41.208 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cluster 2024-09-13T22:06:17.786804+0000 mgr.a (mgr.14150) 55 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:41.208 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cluster 2024-09-13T22:06:19.787188+0000 mgr.a (mgr.14150) 56 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:41.208 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cluster 2024-09-13T22:06:21.787602+0000 mgr.a (mgr.14150) 57 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:41.208 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:23.616423+0000 mon.a (mon.0) 193 : audit [INF] from='client.? 172.21.15.31:0/2192616921' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-09-13T22:06:41.208 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cluster 2024-09-13T22:06:23.787996+0000 mgr.a (mgr.14150) 58 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:41.208 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:24.505836+0000 mon.a (mon.0) 194 : audit [INF] from='client.? 172.21.15.31:0/2192616921' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-13T22:06:41.208 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cluster 2024-09-13T22:06:24.510381+0000 mon.a (mon.0) 195 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-13T22:06:41.209 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cluster 2024-09-13T22:06:25.788428+0000 mgr.a (mgr.14150) 59 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:41.209 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cluster 2024-09-13T22:06:27.788819+0000 mgr.a (mgr.14150) 60 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:41.209 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:27.965927+0000 mgr.a (mgr.14150) 61 : audit [DBG] from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi031:172.21.15.31=a;smithi096:172.21.15.96=b;smithi138:172.21.15.138=c", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:06:41.209 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cephadm 2024-09-13T22:06:27.971017+0000 mgr.a (mgr.14150) 62 : cephadm [INF] Saving service mon spec with placement smithi031:172.21.15.31=a;smithi096:172.21.15.96=b;smithi138:172.21.15.138=c;count:3 2024-09-13T22:06:41.209 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:27.976773+0000 mon.a (mon.0) 196 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.209 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:27.978463+0000 mon.a (mon.0) 197 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:06:41.209 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:27.983119+0000 mon.a (mon.0) 198 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:06:41.209 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:27.984813+0000 mon.a (mon.0) 199 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:06:41.209 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:27.993556+0000 mon.a (mon.0) 200 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.209 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:27.998515+0000 mon.a (mon.0) 201 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-13T22:06:41.209 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:28.000092+0000 mon.a (mon.0) 202 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:06:41.210 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cephadm 2024-09-13T22:06:28.001911+0000 mgr.a (mgr.14150) 63 : cephadm [INF] Deploying daemon mon.c on smithi138 2024-09-13T22:06:41.210 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cluster 2024-09-13T22:06:29.789277+0000 mgr.a (mgr.14150) 64 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:41.210 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:30.071770+0000 mon.a (mon.0) 203 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.210 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:30.079621+0000 mon.a (mon.0) 204 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.210 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:30.202244+0000 mon.a (mon.0) 205 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.210 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:30.207771+0000 mon.a (mon.0) 206 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.210 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:30.214977+0000 mon.a (mon.0) 207 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.210 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:31.893964+0000 mon.a (mon.0) 208 : audit [DBG] from='client.? 172.21.15.138:0/2681533173' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-13T22:06:41.210 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cluster 2024-09-13T22:06:31.789688+0000 mgr.a (mgr.14150) 65 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:41.210 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cluster 2024-09-13T22:06:33.790091+0000 mgr.a (mgr.14150) 66 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:41.211 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:34.958930+0000 mon.a (mon.0) 209 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.211 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:34.964364+0000 mon.a (mon.0) 210 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.211 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:34.970373+0000 mon.a (mon.0) 211 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.211 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:34.971664+0000 mon.a (mon.0) 212 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-13T22:06:41.211 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:34.973413+0000 mon.a (mon.0) 213 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:06:41.211 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cephadm 2024-09-13T22:06:34.975330+0000 mgr.a (mgr.14150) 67 : cephadm [INF] Deploying daemon mon.b on smithi096 2024-09-13T22:06:41.211 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: cluster 2024-09-13T22:06:35.790489+0000 mgr.a (mgr.14150) 68 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:41.211 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:36.944725+0000 mon.a (mon.0) 214 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.211 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:36.950207+0000 mon.a (mon.0) 215 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.211 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: audit 2024-09-13T22:06:36.957993+0000 mon.a (mon.0) 216 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:41.211 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:40 smithi096 bash[23620]: debug 2024-09-13T22:06:40.841+0000 7f767b796640 1 mon.b@-1(synchronizing).paxosservice(auth 1..6) refresh upgraded, format 0 -> 3 2024-09-13T22:06:42.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:42 smithi031 bash[22709]: audit 2024-09-13T22:06:37.171463+0000 mon.a (mon.0) 218 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-13T22:06:42.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:42 smithi031 bash[22709]: cluster 2024-09-13T22:06:37.171842+0000 mon.a (mon.0) 219 : cluster [INF] mon.a calling monitor election 2024-09-13T22:06:42.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:42 smithi031 bash[22709]: audit 2024-09-13T22:06:37.191484+0000 mon.a (mon.0) 220 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-13T22:06:42.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:42 smithi031 bash[22709]: cluster 2024-09-13T22:06:37.790905+0000 mgr.a (mgr.14150) 69 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:42.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:42 smithi031 bash[22709]: audit 2024-09-13T22:06:38.166280+0000 mon.a (mon.0) 221 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-13T22:06:42.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:42 smithi031 bash[22709]: audit 2024-09-13T22:06:39.166209+0000 mon.a (mon.0) 222 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-13T22:06:42.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:42 smithi031 bash[22709]: cluster 2024-09-13T22:06:39.168540+0000 mon.c (mon.1) 1 : cluster [INF] mon.c calling monitor election 2024-09-13T22:06:42.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:42 smithi031 bash[22709]: cluster 2024-09-13T22:06:39.791282+0000 mgr.a (mgr.14150) 70 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:42.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:42 smithi031 bash[22709]: audit 2024-09-13T22:06:40.166624+0000 mon.a (mon.0) 223 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-13T22:06:42.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:42 smithi031 bash[22709]: audit 2024-09-13T22:06:40.850576+0000 mon.a (mon.0) 224 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-13T22:06:42.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:42 smithi031 bash[22709]: audit 2024-09-13T22:06:41.166651+0000 mon.a (mon.0) 225 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-13T22:06:42.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:42 smithi031 bash[22709]: audit 2024-09-13T22:06:41.850816+0000 mon.a (mon.0) 226 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-13T22:06:42.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:42 smithi031 bash[22709]: audit 2024-09-13T22:06:42.167019+0000 mon.a (mon.0) 227 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-13T22:06:42.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:42 smithi031 bash[22709]: cluster 2024-09-13T22:06:42.212076+0000 mon.a (mon.0) 228 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-13T22:06:42.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:42 smithi031 bash[22709]: cluster 2024-09-13T22:06:42.218726+0000 mon.a (mon.0) 229 : cluster [DBG] monmap epoch 2 2024-09-13T22:06:42.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:42 smithi031 bash[22709]: cluster 2024-09-13T22:06:42.218773+0000 mon.a (mon.0) 230 : cluster [DBG] fsid 89616338-721b-11ef-bceb-c7b262605968 2024-09-13T22:06:42.474 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:42 smithi031 bash[22709]: cluster 2024-09-13T22:06:42.218813+0000 mon.a (mon.0) 231 : cluster [DBG] last_changed 2024-09-13T22:06:37.165962+0000 2024-09-13T22:06:42.474 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:42 smithi031 bash[22709]: cluster 2024-09-13T22:06:42.218856+0000 mon.a (mon.0) 232 : cluster [DBG] created 2024-09-13T22:04:10.314756+0000 2024-09-13T22:06:42.474 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:42 smithi031 bash[22709]: cluster 2024-09-13T22:06:42.218897+0000 mon.a (mon.0) 233 : cluster [DBG] min_mon_release 19 (squid) 2024-09-13T22:06:42.474 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:42 smithi031 bash[22709]: cluster 2024-09-13T22:06:42.218935+0000 mon.a (mon.0) 234 : cluster [DBG] election_strategy: 1 2024-09-13T22:06:42.474 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:42 smithi031 bash[22709]: cluster 2024-09-13T22:06:42.218976+0000 mon.a (mon.0) 235 : cluster [DBG] 0: [v2:172.21.15.31:3300/0,v1:172.21.15.31:6789/0] mon.a 2024-09-13T22:06:42.474 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:42 smithi031 bash[22709]: cluster 2024-09-13T22:06:42.219015+0000 mon.a (mon.0) 236 : cluster [DBG] 1: [v2:172.21.15.138:3300/0,v1:172.21.15.138:6789/0] mon.c 2024-09-13T22:06:42.474 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:42 smithi031 bash[22709]: cluster 2024-09-13T22:06:42.239215+0000 mon.a (mon.0) 237 : cluster [DBG] fsmap 2024-09-13T22:06:42.474 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:42 smithi031 bash[22709]: cluster 2024-09-13T22:06:42.239304+0000 mon.a (mon.0) 238 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-13T22:06:42.474 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:42 smithi031 bash[22709]: cluster 2024-09-13T22:06:42.239624+0000 mon.a (mon.0) 239 : cluster [DBG] mgrmap e13: a(active, since 86s) 2024-09-13T22:06:42.474 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:42 smithi031 bash[22709]: cluster 2024-09-13T22:06:42.239953+0000 mon.a (mon.0) 240 : cluster [INF] overall HEALTH_OK 2024-09-13T22:06:42.474 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:42 smithi031 bash[22709]: audit 2024-09-13T22:06:42.248399+0000 mon.a (mon.0) 241 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:42.474 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:42 smithi031 bash[22709]: audit 2024-09-13T22:06:42.254079+0000 mon.a (mon.0) 242 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:42.474 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:42 smithi031 bash[22709]: audit 2024-09-13T22:06:42.259570+0000 mon.a (mon.0) 243 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:42.475 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:42 smithi031 bash[22709]: audit 2024-09-13T22:06:42.265321+0000 mon.a (mon.0) 244 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:42.475 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:42 smithi031 bash[22709]: audit 2024-09-13T22:06:42.270665+0000 mon.a (mon.0) 245 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:42.475 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:42 smithi031 bash[22709]: audit 2024-09-13T22:06:42.276437+0000 mon.a (mon.0) 246 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:42.475 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:42 smithi031 bash[22709]: audit 2024-09-13T22:06:42.282037+0000 mon.a (mon.0) 247 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:42.475 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:42 smithi031 bash[22709]: audit 2024-09-13T22:06:42.288064+0000 mon.a (mon.0) 248 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:42.578 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:42 smithi138 bash[23295]: audit 2024-09-13T22:06:37.171463+0000 mon.a (mon.0) 218 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-13T22:06:42.578 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:42 smithi138 bash[23295]: cluster 2024-09-13T22:06:37.171842+0000 mon.a (mon.0) 219 : cluster [INF] mon.a calling monitor election 2024-09-13T22:06:42.578 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:42 smithi138 bash[23295]: audit 2024-09-13T22:06:37.191484+0000 mon.a (mon.0) 220 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-13T22:06:42.578 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:42 smithi138 bash[23295]: cluster 2024-09-13T22:06:37.790905+0000 mgr.a (mgr.14150) 69 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:42.578 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:42 smithi138 bash[23295]: audit 2024-09-13T22:06:38.166280+0000 mon.a (mon.0) 221 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-13T22:06:42.578 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:42 smithi138 bash[23295]: audit 2024-09-13T22:06:39.166209+0000 mon.a (mon.0) 222 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-13T22:06:42.578 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:42 smithi138 bash[23295]: cluster 2024-09-13T22:06:39.168540+0000 mon.c (mon.1) 1 : cluster [INF] mon.c calling monitor election 2024-09-13T22:06:42.578 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:42 smithi138 bash[23295]: cluster 2024-09-13T22:06:39.791282+0000 mgr.a (mgr.14150) 70 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:42.578 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:42 smithi138 bash[23295]: audit 2024-09-13T22:06:40.166624+0000 mon.a (mon.0) 223 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-13T22:06:42.578 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:42 smithi138 bash[23295]: audit 2024-09-13T22:06:40.850576+0000 mon.a (mon.0) 224 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-13T22:06:42.579 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:42 smithi138 bash[23295]: audit 2024-09-13T22:06:41.166651+0000 mon.a (mon.0) 225 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-13T22:06:42.579 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:42 smithi138 bash[23295]: audit 2024-09-13T22:06:41.850816+0000 mon.a (mon.0) 226 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-13T22:06:42.579 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:42 smithi138 bash[23295]: audit 2024-09-13T22:06:42.167019+0000 mon.a (mon.0) 227 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-13T22:06:42.579 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:42 smithi138 bash[23295]: cluster 2024-09-13T22:06:42.212076+0000 mon.a (mon.0) 228 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-13T22:06:42.579 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:42 smithi138 bash[23295]: cluster 2024-09-13T22:06:42.218726+0000 mon.a (mon.0) 229 : cluster [DBG] monmap epoch 2 2024-09-13T22:06:42.579 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:42 smithi138 bash[23295]: cluster 2024-09-13T22:06:42.218773+0000 mon.a (mon.0) 230 : cluster [DBG] fsid 89616338-721b-11ef-bceb-c7b262605968 2024-09-13T22:06:42.579 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:42 smithi138 bash[23295]: cluster 2024-09-13T22:06:42.218813+0000 mon.a (mon.0) 231 : cluster [DBG] last_changed 2024-09-13T22:06:37.165962+0000 2024-09-13T22:06:42.579 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:42 smithi138 bash[23295]: cluster 2024-09-13T22:06:42.218856+0000 mon.a (mon.0) 232 : cluster [DBG] created 2024-09-13T22:04:10.314756+0000 2024-09-13T22:06:42.579 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:42 smithi138 bash[23295]: cluster 2024-09-13T22:06:42.218897+0000 mon.a (mon.0) 233 : cluster [DBG] min_mon_release 19 (squid) 2024-09-13T22:06:42.579 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:42 smithi138 bash[23295]: cluster 2024-09-13T22:06:42.218935+0000 mon.a (mon.0) 234 : cluster [DBG] election_strategy: 1 2024-09-13T22:06:42.579 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:42 smithi138 bash[23295]: cluster 2024-09-13T22:06:42.218976+0000 mon.a (mon.0) 235 : cluster [DBG] 0: [v2:172.21.15.31:3300/0,v1:172.21.15.31:6789/0] mon.a 2024-09-13T22:06:42.579 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:42 smithi138 bash[23295]: cluster 2024-09-13T22:06:42.219015+0000 mon.a (mon.0) 236 : cluster [DBG] 1: [v2:172.21.15.138:3300/0,v1:172.21.15.138:6789/0] mon.c 2024-09-13T22:06:42.579 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:42 smithi138 bash[23295]: cluster 2024-09-13T22:06:42.239215+0000 mon.a (mon.0) 237 : cluster [DBG] fsmap 2024-09-13T22:06:42.580 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:42 smithi138 bash[23295]: cluster 2024-09-13T22:06:42.239304+0000 mon.a (mon.0) 238 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-13T22:06:42.580 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:42 smithi138 bash[23295]: cluster 2024-09-13T22:06:42.239624+0000 mon.a (mon.0) 239 : cluster [DBG] mgrmap e13: a(active, since 86s) 2024-09-13T22:06:42.580 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:42 smithi138 bash[23295]: cluster 2024-09-13T22:06:42.239953+0000 mon.a (mon.0) 240 : cluster [INF] overall HEALTH_OK 2024-09-13T22:06:42.580 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:42 smithi138 bash[23295]: audit 2024-09-13T22:06:42.248399+0000 mon.a (mon.0) 241 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:42.580 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:42 smithi138 bash[23295]: audit 2024-09-13T22:06:42.254079+0000 mon.a (mon.0) 242 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:42.580 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:42 smithi138 bash[23295]: audit 2024-09-13T22:06:42.259570+0000 mon.a (mon.0) 243 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:42.580 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:42 smithi138 bash[23295]: audit 2024-09-13T22:06:42.265321+0000 mon.a (mon.0) 244 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:42.580 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:42 smithi138 bash[23295]: audit 2024-09-13T22:06:42.270665+0000 mon.a (mon.0) 245 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:42.580 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:42 smithi138 bash[23295]: audit 2024-09-13T22:06:42.276437+0000 mon.a (mon.0) 246 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:42.580 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:42 smithi138 bash[23295]: audit 2024-09-13T22:06:42.282037+0000 mon.a (mon.0) 247 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:42.580 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:42 smithi138 bash[23295]: audit 2024-09-13T22:06:42.288064+0000 mon.a (mon.0) 248 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:43.190 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:42 smithi096 bash[23620]: audit 2024-09-13T22:06:37.171463+0000 mon.a (mon.0) 218 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-13T22:06:43.190 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:42 smithi096 bash[23620]: cluster 2024-09-13T22:06:37.171842+0000 mon.a (mon.0) 219 : cluster [INF] mon.a calling monitor election 2024-09-13T22:06:43.190 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:42 smithi096 bash[23620]: audit 2024-09-13T22:06:37.191484+0000 mon.a (mon.0) 220 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-13T22:06:43.191 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:42 smithi096 bash[23620]: cluster 2024-09-13T22:06:37.790905+0000 mgr.a (mgr.14150) 69 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:43.191 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:42 smithi096 bash[23620]: audit 2024-09-13T22:06:38.166280+0000 mon.a (mon.0) 221 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-13T22:06:43.191 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:42 smithi096 bash[23620]: audit 2024-09-13T22:06:39.166209+0000 mon.a (mon.0) 222 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-13T22:06:43.191 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:42 smithi096 bash[23620]: cluster 2024-09-13T22:06:39.168540+0000 mon.c (mon.1) 1 : cluster [INF] mon.c calling monitor election 2024-09-13T22:06:43.191 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:42 smithi096 bash[23620]: cluster 2024-09-13T22:06:39.791282+0000 mgr.a (mgr.14150) 70 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:43.191 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:42 smithi096 bash[23620]: audit 2024-09-13T22:06:40.166624+0000 mon.a (mon.0) 223 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-13T22:06:43.191 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:42 smithi096 bash[23620]: audit 2024-09-13T22:06:40.850576+0000 mon.a (mon.0) 224 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-13T22:06:43.191 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:42 smithi096 bash[23620]: audit 2024-09-13T22:06:41.166651+0000 mon.a (mon.0) 225 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-13T22:06:43.191 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:42 smithi096 bash[23620]: audit 2024-09-13T22:06:41.850816+0000 mon.a (mon.0) 226 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-13T22:06:43.191 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:42 smithi096 bash[23620]: audit 2024-09-13T22:06:42.167019+0000 mon.a (mon.0) 227 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-13T22:06:43.191 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:42 smithi096 bash[23620]: cluster 2024-09-13T22:06:42.212076+0000 mon.a (mon.0) 228 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-13T22:06:43.191 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:42 smithi096 bash[23620]: cluster 2024-09-13T22:06:42.218726+0000 mon.a (mon.0) 229 : cluster [DBG] monmap epoch 2 2024-09-13T22:06:43.191 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:42 smithi096 bash[23620]: cluster 2024-09-13T22:06:42.218773+0000 mon.a (mon.0) 230 : cluster [DBG] fsid 89616338-721b-11ef-bceb-c7b262605968 2024-09-13T22:06:43.192 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:42 smithi096 bash[23620]: cluster 2024-09-13T22:06:42.218813+0000 mon.a (mon.0) 231 : cluster [DBG] last_changed 2024-09-13T22:06:37.165962+0000 2024-09-13T22:06:43.192 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:42 smithi096 bash[23620]: cluster 2024-09-13T22:06:42.218856+0000 mon.a (mon.0) 232 : cluster [DBG] created 2024-09-13T22:04:10.314756+0000 2024-09-13T22:06:43.192 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:42 smithi096 bash[23620]: cluster 2024-09-13T22:06:42.218897+0000 mon.a (mon.0) 233 : cluster [DBG] min_mon_release 19 (squid) 2024-09-13T22:06:43.192 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:42 smithi096 bash[23620]: cluster 2024-09-13T22:06:42.218935+0000 mon.a (mon.0) 234 : cluster [DBG] election_strategy: 1 2024-09-13T22:06:43.192 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:42 smithi096 bash[23620]: cluster 2024-09-13T22:06:42.218976+0000 mon.a (mon.0) 235 : cluster [DBG] 0: [v2:172.21.15.31:3300/0,v1:172.21.15.31:6789/0] mon.a 2024-09-13T22:06:43.192 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:42 smithi096 bash[23620]: cluster 2024-09-13T22:06:42.219015+0000 mon.a (mon.0) 236 : cluster [DBG] 1: [v2:172.21.15.138:3300/0,v1:172.21.15.138:6789/0] mon.c 2024-09-13T22:06:43.192 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:42 smithi096 bash[23620]: cluster 2024-09-13T22:06:42.239215+0000 mon.a (mon.0) 237 : cluster [DBG] fsmap 2024-09-13T22:06:43.192 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:42 smithi096 bash[23620]: cluster 2024-09-13T22:06:42.239304+0000 mon.a (mon.0) 238 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-13T22:06:43.192 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:42 smithi096 bash[23620]: cluster 2024-09-13T22:06:42.239624+0000 mon.a (mon.0) 239 : cluster [DBG] mgrmap e13: a(active, since 86s) 2024-09-13T22:06:43.192 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:42 smithi096 bash[23620]: cluster 2024-09-13T22:06:42.239953+0000 mon.a (mon.0) 240 : cluster [INF] overall HEALTH_OK 2024-09-13T22:06:43.192 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:42 smithi096 bash[23620]: audit 2024-09-13T22:06:42.248399+0000 mon.a (mon.0) 241 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:43.192 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:42 smithi096 bash[23620]: audit 2024-09-13T22:06:42.254079+0000 mon.a (mon.0) 242 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:43.193 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:42 smithi096 bash[23620]: audit 2024-09-13T22:06:42.259570+0000 mon.a (mon.0) 243 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:43.193 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:42 smithi096 bash[23620]: audit 2024-09-13T22:06:42.265321+0000 mon.a (mon.0) 244 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:43.193 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:42 smithi096 bash[23620]: audit 2024-09-13T22:06:42.270665+0000 mon.a (mon.0) 245 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:43.193 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:42 smithi096 bash[23620]: audit 2024-09-13T22:06:42.276437+0000 mon.a (mon.0) 246 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:43.193 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:42 smithi096 bash[23620]: audit 2024-09-13T22:06:42.282037+0000 mon.a (mon.0) 247 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:43.193 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:42 smithi096 bash[23620]: audit 2024-09-13T22:06:42.288064+0000 mon.a (mon.0) 248 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:43.224 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:06:43 smithi031 bash[22966]: debug 2024-09-13T22:06:43.164+0000 7fb173b8c640 -1 mgr.server handle_report got status from non-daemon mon.c 2024-09-13T22:06:48.328 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:47 smithi138 bash[23295]: cephadm 2024-09-13T22:06:42.807902+0000 mgr.a (mgr.14150) 78 : cephadm [INF] Metadata not up to date on all hosts. Skipping non agent specs 2024-09-13T22:06:48.328 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:47 smithi138 bash[23295]: cephadm 2024-09-13T22:06:42.854425+0000 mgr.a (mgr.14150) 79 : cephadm [INF] Reconfiguring mon.a (unknown last config time)... 2024-09-13T22:06:48.328 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:47 smithi138 bash[23295]: cephadm 2024-09-13T22:06:42.857515+0000 mgr.a (mgr.14150) 80 : cephadm [INF] Reconfiguring daemon mon.a on smithi031 2024-09-13T22:06:48.329 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:47 smithi138 bash[23295]: audit 2024-09-13T22:06:42.866188+0000 mon.a (mon.0) 265 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-13T22:06:48.329 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:47 smithi138 bash[23295]: cluster 2024-09-13T22:06:42.866475+0000 mon.a (mon.0) 266 : cluster [INF] mon.a calling monitor election 2024-09-13T22:06:48.329 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:47 smithi138 bash[23295]: cluster 2024-09-13T22:06:42.869161+0000 mon.c (mon.1) 2 : cluster [INF] mon.c calling monitor election 2024-09-13T22:06:48.329 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:47 smithi138 bash[23295]: audit 2024-09-13T22:06:42.887072+0000 mon.a (mon.0) 267 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-13T22:06:48.329 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:47 smithi138 bash[23295]: audit 2024-09-13T22:06:42.887187+0000 mon.a (mon.0) 268 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-13T22:06:48.329 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:47 smithi138 bash[23295]: cluster 2024-09-13T22:06:43.792049+0000 mgr.a (mgr.14150) 81 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:48.329 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:47 smithi138 bash[23295]: audit 2024-09-13T22:06:43.850830+0000 mon.a (mon.0) 269 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-13T22:06:48.329 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:47 smithi138 bash[23295]: audit 2024-09-13T22:06:44.851357+0000 mon.a (mon.0) 270 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-13T22:06:48.329 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:47 smithi138 bash[23295]: cluster 2024-09-13T22:06:44.863295+0000 mon.b (mon.2) 1 : cluster [INF] mon.b calling monitor election 2024-09-13T22:06:48.329 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:47 smithi138 bash[23295]: cluster 2024-09-13T22:06:45.792393+0000 mgr.a (mgr.14150) 82 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:48.329 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:47 smithi138 bash[23295]: audit 2024-09-13T22:06:45.851024+0000 mon.a (mon.0) 271 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-13T22:06:48.329 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:47 smithi138 bash[23295]: audit 2024-09-13T22:06:46.851136+0000 mon.a (mon.0) 272 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-13T22:06:48.330 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:47 smithi138 bash[23295]: audit 2024-09-13T22:06:47.851305+0000 mon.a (mon.0) 273 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-13T22:06:48.330 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:47 smithi138 bash[23295]: cluster 2024-09-13T22:06:47.908749+0000 mon.a (mon.0) 274 : cluster [INF] mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-13T22:06:48.330 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:47 smithi138 bash[23295]: cluster 2024-09-13T22:06:47.916854+0000 mon.a (mon.0) 275 : cluster [DBG] monmap epoch 3 2024-09-13T22:06:48.330 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:47 smithi138 bash[23295]: cluster 2024-09-13T22:06:47.916907+0000 mon.a (mon.0) 276 : cluster [DBG] fsid 89616338-721b-11ef-bceb-c7b262605968 2024-09-13T22:06:48.330 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:47 smithi138 bash[23295]: cluster 2024-09-13T22:06:47.916943+0000 mon.a (mon.0) 277 : cluster [DBG] last_changed 2024-09-13T22:06:42.860001+0000 2024-09-13T22:06:48.330 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:47 smithi138 bash[23295]: cluster 2024-09-13T22:06:47.916983+0000 mon.a (mon.0) 278 : cluster [DBG] created 2024-09-13T22:04:10.314756+0000 2024-09-13T22:06:48.330 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:47 smithi138 bash[23295]: cluster 2024-09-13T22:06:47.917021+0000 mon.a (mon.0) 279 : cluster [DBG] min_mon_release 19 (squid) 2024-09-13T22:06:48.330 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:47 smithi138 bash[23295]: cluster 2024-09-13T22:06:47.917061+0000 mon.a (mon.0) 280 : cluster [DBG] election_strategy: 1 2024-09-13T22:06:48.330 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:48 smithi138 bash[23295]: cluster 2024-09-13T22:06:47.917102+0000 mon.a (mon.0) 281 : cluster [DBG] 0: [v2:172.21.15.31:3300/0,v1:172.21.15.31:6789/0] mon.a 2024-09-13T22:06:48.330 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:48 smithi138 bash[23295]: cluster 2024-09-13T22:06:47.917137+0000 mon.a (mon.0) 282 : cluster [DBG] 1: [v2:172.21.15.138:3300/0,v1:172.21.15.138:6789/0] mon.c 2024-09-13T22:06:48.330 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:48 smithi138 bash[23295]: cluster 2024-09-13T22:06:47.917181+0000 mon.a (mon.0) 283 : cluster [DBG] 2: [v2:172.21.15.96:3300/0,v1:172.21.15.96:6789/0] mon.b 2024-09-13T22:06:48.330 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:48 smithi138 bash[23295]: cluster 2024-09-13T22:06:47.935197+0000 mon.a (mon.0) 284 : cluster [DBG] fsmap 2024-09-13T22:06:48.331 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:48 smithi138 bash[23295]: cluster 2024-09-13T22:06:47.935289+0000 mon.a (mon.0) 285 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-13T22:06:48.331 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:48 smithi138 bash[23295]: cluster 2024-09-13T22:06:47.935650+0000 mon.a (mon.0) 286 : cluster [DBG] mgrmap e13: a(active, since 92s) 2024-09-13T22:06:48.331 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:48 smithi138 bash[23295]: cluster 2024-09-13T22:06:47.935968+0000 mon.a (mon.0) 287 : cluster [INF] overall HEALTH_OK 2024-09-13T22:06:48.331 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:48 smithi138 bash[23295]: audit 2024-09-13T22:06:47.944897+0000 mon.a (mon.0) 288 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:48.331 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:48 smithi138 bash[23295]: audit 2024-09-13T22:06:47.952044+0000 mon.a (mon.0) 289 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:48.331 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:48 smithi138 bash[23295]: audit 2024-09-13T22:06:47.959503+0000 mon.a (mon.0) 290 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:48.331 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:48 smithi138 bash[23295]: audit 2024-09-13T22:06:47.966568+0000 mon.a (mon.0) 291 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:48.331 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:48 smithi138 bash[23295]: audit 2024-09-13T22:06:47.973853+0000 mon.a (mon.0) 292 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:48.331 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:48 smithi138 bash[23295]: audit 2024-09-13T22:06:47.981196+0000 mon.a (mon.0) 293 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:48.331 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:48 smithi138 bash[23295]: audit 2024-09-13T22:06:47.982000+0000 mon.a (mon.0) 294 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-13T22:06:48.440 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:47 smithi096 bash[23620]: cephadm 2024-09-13T22:06:42.807902+0000 mgr.a (mgr.14150) 78 : cephadm [INF] Metadata not up to date on all hosts. Skipping non agent specs 2024-09-13T22:06:48.440 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:47 smithi096 bash[23620]: cephadm 2024-09-13T22:06:42.854425+0000 mgr.a (mgr.14150) 79 : cephadm [INF] Reconfiguring mon.a (unknown last config time)... 2024-09-13T22:06:48.440 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:47 smithi096 bash[23620]: cephadm 2024-09-13T22:06:42.857515+0000 mgr.a (mgr.14150) 80 : cephadm [INF] Reconfiguring daemon mon.a on smithi031 2024-09-13T22:06:48.440 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:47 smithi096 bash[23620]: audit 2024-09-13T22:06:42.866188+0000 mon.a (mon.0) 265 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-13T22:06:48.440 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:47 smithi096 bash[23620]: cluster 2024-09-13T22:06:42.866475+0000 mon.a (mon.0) 266 : cluster [INF] mon.a calling monitor election 2024-09-13T22:06:48.440 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:47 smithi096 bash[23620]: cluster 2024-09-13T22:06:42.869161+0000 mon.c (mon.1) 2 : cluster [INF] mon.c calling monitor election 2024-09-13T22:06:48.440 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:47 smithi096 bash[23620]: audit 2024-09-13T22:06:42.887072+0000 mon.a (mon.0) 267 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-13T22:06:48.441 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:47 smithi096 bash[23620]: audit 2024-09-13T22:06:42.887187+0000 mon.a (mon.0) 268 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-13T22:06:48.441 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:47 smithi096 bash[23620]: cluster 2024-09-13T22:06:43.792049+0000 mgr.a (mgr.14150) 81 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:48.441 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:47 smithi096 bash[23620]: audit 2024-09-13T22:06:43.850830+0000 mon.a (mon.0) 269 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-13T22:06:48.441 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:47 smithi096 bash[23620]: audit 2024-09-13T22:06:44.851357+0000 mon.a (mon.0) 270 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-13T22:06:48.441 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:47 smithi096 bash[23620]: cluster 2024-09-13T22:06:44.863295+0000 mon.b (mon.2) 1 : cluster [INF] mon.b calling monitor election 2024-09-13T22:06:48.441 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:47 smithi096 bash[23620]: cluster 2024-09-13T22:06:45.792393+0000 mgr.a (mgr.14150) 82 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:48.441 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:47 smithi096 bash[23620]: audit 2024-09-13T22:06:45.851024+0000 mon.a (mon.0) 271 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-13T22:06:48.441 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:47 smithi096 bash[23620]: audit 2024-09-13T22:06:46.851136+0000 mon.a (mon.0) 272 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-13T22:06:48.441 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:47 smithi096 bash[23620]: audit 2024-09-13T22:06:47.851305+0000 mon.a (mon.0) 273 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-13T22:06:48.441 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:47 smithi096 bash[23620]: cluster 2024-09-13T22:06:47.908749+0000 mon.a (mon.0) 274 : cluster [INF] mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-13T22:06:48.441 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:47 smithi096 bash[23620]: cluster 2024-09-13T22:06:47.916854+0000 mon.a (mon.0) 275 : cluster [DBG] monmap epoch 3 2024-09-13T22:06:48.441 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:47 smithi096 bash[23620]: cluster 2024-09-13T22:06:47.916907+0000 mon.a (mon.0) 276 : cluster [DBG] fsid 89616338-721b-11ef-bceb-c7b262605968 2024-09-13T22:06:48.441 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:48 smithi096 bash[23620]: cluster 2024-09-13T22:06:47.916943+0000 mon.a (mon.0) 277 : cluster [DBG] last_changed 2024-09-13T22:06:42.860001+0000 2024-09-13T22:06:48.442 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:48 smithi096 bash[23620]: cluster 2024-09-13T22:06:47.916983+0000 mon.a (mon.0) 278 : cluster [DBG] created 2024-09-13T22:04:10.314756+0000 2024-09-13T22:06:48.442 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:48 smithi096 bash[23620]: cluster 2024-09-13T22:06:47.917021+0000 mon.a (mon.0) 279 : cluster [DBG] min_mon_release 19 (squid) 2024-09-13T22:06:48.442 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:48 smithi096 bash[23620]: cluster 2024-09-13T22:06:47.917061+0000 mon.a (mon.0) 280 : cluster [DBG] election_strategy: 1 2024-09-13T22:06:48.442 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:48 smithi096 bash[23620]: cluster 2024-09-13T22:06:47.917102+0000 mon.a (mon.0) 281 : cluster [DBG] 0: [v2:172.21.15.31:3300/0,v1:172.21.15.31:6789/0] mon.a 2024-09-13T22:06:48.442 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:48 smithi096 bash[23620]: cluster 2024-09-13T22:06:47.917137+0000 mon.a (mon.0) 282 : cluster [DBG] 1: [v2:172.21.15.138:3300/0,v1:172.21.15.138:6789/0] mon.c 2024-09-13T22:06:48.442 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:48 smithi096 bash[23620]: cluster 2024-09-13T22:06:47.917181+0000 mon.a (mon.0) 283 : cluster [DBG] 2: [v2:172.21.15.96:3300/0,v1:172.21.15.96:6789/0] mon.b 2024-09-13T22:06:48.442 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:48 smithi096 bash[23620]: cluster 2024-09-13T22:06:47.935197+0000 mon.a (mon.0) 284 : cluster [DBG] fsmap 2024-09-13T22:06:48.442 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:48 smithi096 bash[23620]: cluster 2024-09-13T22:06:47.935289+0000 mon.a (mon.0) 285 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-13T22:06:48.442 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:48 smithi096 bash[23620]: cluster 2024-09-13T22:06:47.935650+0000 mon.a (mon.0) 286 : cluster [DBG] mgrmap e13: a(active, since 92s) 2024-09-13T22:06:48.442 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:48 smithi096 bash[23620]: cluster 2024-09-13T22:06:47.935968+0000 mon.a (mon.0) 287 : cluster [INF] overall HEALTH_OK 2024-09-13T22:06:48.442 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:48 smithi096 bash[23620]: audit 2024-09-13T22:06:47.944897+0000 mon.a (mon.0) 288 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:48.442 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:48 smithi096 bash[23620]: audit 2024-09-13T22:06:47.952044+0000 mon.a (mon.0) 289 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:48.442 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:48 smithi096 bash[23620]: audit 2024-09-13T22:06:47.959503+0000 mon.a (mon.0) 290 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:48.442 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:48 smithi096 bash[23620]: audit 2024-09-13T22:06:47.966568+0000 mon.a (mon.0) 291 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:48.443 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:48 smithi096 bash[23620]: audit 2024-09-13T22:06:47.973853+0000 mon.a (mon.0) 292 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:48.443 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:48 smithi096 bash[23620]: audit 2024-09-13T22:06:47.981196+0000 mon.a (mon.0) 293 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:48.443 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:48 smithi096 bash[23620]: audit 2024-09-13T22:06:47.982000+0000 mon.a (mon.0) 294 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-13T22:06:48.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:47 smithi031 bash[22709]: cephadm 2024-09-13T22:06:42.807902+0000 mgr.a (mgr.14150) 78 : cephadm [INF] Metadata not up to date on all hosts. Skipping non agent specs 2024-09-13T22:06:48.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:47 smithi031 bash[22709]: cephadm 2024-09-13T22:06:42.854425+0000 mgr.a (mgr.14150) 79 : cephadm [INF] Reconfiguring mon.a (unknown last config time)... 2024-09-13T22:06:48.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:47 smithi031 bash[22709]: cephadm 2024-09-13T22:06:42.857515+0000 mgr.a (mgr.14150) 80 : cephadm [INF] Reconfiguring daemon mon.a on smithi031 2024-09-13T22:06:48.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:47 smithi031 bash[22709]: audit 2024-09-13T22:06:42.866188+0000 mon.a (mon.0) 265 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-13T22:06:48.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:47 smithi031 bash[22709]: cluster 2024-09-13T22:06:42.866475+0000 mon.a (mon.0) 266 : cluster [INF] mon.a calling monitor election 2024-09-13T22:06:48.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:47 smithi031 bash[22709]: cluster 2024-09-13T22:06:42.869161+0000 mon.c (mon.1) 2 : cluster [INF] mon.c calling monitor election 2024-09-13T22:06:48.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:47 smithi031 bash[22709]: audit 2024-09-13T22:06:42.887072+0000 mon.a (mon.0) 267 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-13T22:06:48.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:47 smithi031 bash[22709]: audit 2024-09-13T22:06:42.887187+0000 mon.a (mon.0) 268 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-13T22:06:48.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:47 smithi031 bash[22709]: cluster 2024-09-13T22:06:43.792049+0000 mgr.a (mgr.14150) 81 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:48.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:47 smithi031 bash[22709]: audit 2024-09-13T22:06:43.850830+0000 mon.a (mon.0) 269 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-13T22:06:48.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:47 smithi031 bash[22709]: audit 2024-09-13T22:06:44.851357+0000 mon.a (mon.0) 270 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-13T22:06:48.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:47 smithi031 bash[22709]: cluster 2024-09-13T22:06:44.863295+0000 mon.b (mon.2) 1 : cluster [INF] mon.b calling monitor election 2024-09-13T22:06:48.474 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:47 smithi031 bash[22709]: cluster 2024-09-13T22:06:45.792393+0000 mgr.a (mgr.14150) 82 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:48.474 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:47 smithi031 bash[22709]: audit 2024-09-13T22:06:45.851024+0000 mon.a (mon.0) 271 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-13T22:06:48.474 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:47 smithi031 bash[22709]: audit 2024-09-13T22:06:46.851136+0000 mon.a (mon.0) 272 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-13T22:06:48.474 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:47 smithi031 bash[22709]: audit 2024-09-13T22:06:47.851305+0000 mon.a (mon.0) 273 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-13T22:06:48.474 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:47 smithi031 bash[22709]: cluster 2024-09-13T22:06:47.908749+0000 mon.a (mon.0) 274 : cluster [INF] mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-13T22:06:48.474 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:47 smithi031 bash[22709]: cluster 2024-09-13T22:06:47.916854+0000 mon.a (mon.0) 275 : cluster [DBG] monmap epoch 3 2024-09-13T22:06:48.474 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:48 smithi031 bash[22709]: cluster 2024-09-13T22:06:47.916907+0000 mon.a (mon.0) 276 : cluster [DBG] fsid 89616338-721b-11ef-bceb-c7b262605968 2024-09-13T22:06:48.474 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:48 smithi031 bash[22709]: cluster 2024-09-13T22:06:47.916943+0000 mon.a (mon.0) 277 : cluster [DBG] last_changed 2024-09-13T22:06:42.860001+0000 2024-09-13T22:06:48.475 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:48 smithi031 bash[22709]: cluster 2024-09-13T22:06:47.916983+0000 mon.a (mon.0) 278 : cluster [DBG] created 2024-09-13T22:04:10.314756+0000 2024-09-13T22:06:48.475 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:48 smithi031 bash[22709]: cluster 2024-09-13T22:06:47.917021+0000 mon.a (mon.0) 279 : cluster [DBG] min_mon_release 19 (squid) 2024-09-13T22:06:48.475 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:48 smithi031 bash[22709]: cluster 2024-09-13T22:06:47.917061+0000 mon.a (mon.0) 280 : cluster [DBG] election_strategy: 1 2024-09-13T22:06:48.475 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:48 smithi031 bash[22709]: cluster 2024-09-13T22:06:47.917102+0000 mon.a (mon.0) 281 : cluster [DBG] 0: [v2:172.21.15.31:3300/0,v1:172.21.15.31:6789/0] mon.a 2024-09-13T22:06:48.475 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:48 smithi031 bash[22709]: cluster 2024-09-13T22:06:47.917137+0000 mon.a (mon.0) 282 : cluster [DBG] 1: [v2:172.21.15.138:3300/0,v1:172.21.15.138:6789/0] mon.c 2024-09-13T22:06:48.475 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:48 smithi031 bash[22709]: cluster 2024-09-13T22:06:47.917181+0000 mon.a (mon.0) 283 : cluster [DBG] 2: [v2:172.21.15.96:3300/0,v1:172.21.15.96:6789/0] mon.b 2024-09-13T22:06:48.475 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:48 smithi031 bash[22709]: cluster 2024-09-13T22:06:47.935197+0000 mon.a (mon.0) 284 : cluster [DBG] fsmap 2024-09-13T22:06:48.475 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:48 smithi031 bash[22709]: cluster 2024-09-13T22:06:47.935289+0000 mon.a (mon.0) 285 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-13T22:06:48.475 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:48 smithi031 bash[22709]: cluster 2024-09-13T22:06:47.935650+0000 mon.a (mon.0) 286 : cluster [DBG] mgrmap e13: a(active, since 92s) 2024-09-13T22:06:48.476 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:48 smithi031 bash[22709]: cluster 2024-09-13T22:06:47.935968+0000 mon.a (mon.0) 287 : cluster [INF] overall HEALTH_OK 2024-09-13T22:06:48.476 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:48 smithi031 bash[22709]: audit 2024-09-13T22:06:47.944897+0000 mon.a (mon.0) 288 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:48.476 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:48 smithi031 bash[22709]: audit 2024-09-13T22:06:47.952044+0000 mon.a (mon.0) 289 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:48.476 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:48 smithi031 bash[22709]: audit 2024-09-13T22:06:47.959503+0000 mon.a (mon.0) 290 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:48.476 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:48 smithi031 bash[22709]: audit 2024-09-13T22:06:47.966568+0000 mon.a (mon.0) 291 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:48.476 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:48 smithi031 bash[22709]: audit 2024-09-13T22:06:47.973853+0000 mon.a (mon.0) 292 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:48.476 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:48 smithi031 bash[22709]: audit 2024-09-13T22:06:47.981196+0000 mon.a (mon.0) 293 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:48.476 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:48 smithi031 bash[22709]: audit 2024-09-13T22:06:47.982000+0000 mon.a (mon.0) 294 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-13T22:06:49.327 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:48 smithi138 bash[23295]: cluster 2024-09-13T22:06:47.792761+0000 mgr.a (mgr.14150) 83 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:49.327 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:48 smithi138 bash[23295]: cephadm 2024-09-13T22:06:47.977270+0000 mgr.a (mgr.14150) 84 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-13T22:06:49.327 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:48 smithi138 bash[23295]: audit 2024-09-13T22:06:47.985999+0000 mon.a (mon.0) 295 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-13T22:06:49.327 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:48 smithi138 bash[23295]: audit 2024-09-13T22:06:47.987870+0000 mon.a (mon.0) 296 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:06:49.327 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:49 smithi138 bash[23295]: audit 2024-09-13T22:06:47.991775+0000 mon.a (mon.0) 297 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:49.328 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:49 smithi138 bash[23295]: cephadm 2024-09-13T22:06:47.994865+0000 mgr.a (mgr.14150) 85 : cephadm [INF] Reconfiguring daemon mon.b on smithi096 2024-09-13T22:06:49.328 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:49 smithi138 bash[23295]: audit 2024-09-13T22:06:48.136329+0000 mon.a (mon.0) 298 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:49.328 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:49 smithi138 bash[23295]: audit 2024-09-13T22:06:48.144668+0000 mon.a (mon.0) 299 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:49.328 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:49 smithi138 bash[23295]: audit 2024-09-13T22:06:48.153655+0000 mon.a (mon.0) 300 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:49.328 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:49 smithi138 bash[23295]: audit 2024-09-13T22:06:48.851755+0000 mon.a (mon.0) 301 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-13T22:06:49.329 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:48 smithi031 bash[22709]: cluster 2024-09-13T22:06:47.792761+0000 mgr.a (mgr.14150) 83 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:49.329 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:48 smithi031 bash[22709]: cephadm 2024-09-13T22:06:47.977270+0000 mgr.a (mgr.14150) 84 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-13T22:06:49.329 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:48 smithi031 bash[22709]: audit 2024-09-13T22:06:47.985999+0000 mon.a (mon.0) 295 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-13T22:06:49.329 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:48 smithi031 bash[22709]: audit 2024-09-13T22:06:47.987870+0000 mon.a (mon.0) 296 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:06:49.329 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:48 smithi031 bash[22709]: audit 2024-09-13T22:06:47.991775+0000 mon.a (mon.0) 297 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:49.330 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:48 smithi031 bash[22709]: cephadm 2024-09-13T22:06:47.994865+0000 mgr.a (mgr.14150) 85 : cephadm [INF] Reconfiguring daemon mon.b on smithi096 2024-09-13T22:06:49.330 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:48 smithi031 bash[22709]: audit 2024-09-13T22:06:48.136329+0000 mon.a (mon.0) 298 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:49.330 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:48 smithi031 bash[22709]: audit 2024-09-13T22:06:48.144668+0000 mon.a (mon.0) 299 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:49.330 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:48 smithi031 bash[22709]: audit 2024-09-13T22:06:48.153655+0000 mon.a (mon.0) 300 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:49.330 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:48 smithi031 bash[22709]: audit 2024-09-13T22:06:48.851755+0000 mon.a (mon.0) 301 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-13T22:06:49.377 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:48 smithi096 bash[23620]: cluster 2024-09-13T22:06:47.792761+0000 mgr.a (mgr.14150) 83 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:49.377 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:48 smithi096 bash[23620]: cephadm 2024-09-13T22:06:47.977270+0000 mgr.a (mgr.14150) 84 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-13T22:06:49.377 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:48 smithi096 bash[23620]: audit 2024-09-13T22:06:47.985999+0000 mon.a (mon.0) 295 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-13T22:06:49.377 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:48 smithi096 bash[23620]: audit 2024-09-13T22:06:47.987870+0000 mon.a (mon.0) 296 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:06:49.377 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:48 smithi096 bash[23620]: audit 2024-09-13T22:06:47.991775+0000 mon.a (mon.0) 297 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:49.377 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:48 smithi096 bash[23620]: cephadm 2024-09-13T22:06:47.994865+0000 mgr.a (mgr.14150) 85 : cephadm [INF] Reconfiguring daemon mon.b on smithi096 2024-09-13T22:06:49.377 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:48 smithi096 bash[23620]: audit 2024-09-13T22:06:48.136329+0000 mon.a (mon.0) 298 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:49.377 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:48 smithi096 bash[23620]: audit 2024-09-13T22:06:48.144668+0000 mon.a (mon.0) 299 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:49.378 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:48 smithi096 bash[23620]: audit 2024-09-13T22:06:48.153655+0000 mon.a (mon.0) 300 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:49.378 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:48 smithi096 bash[23620]: audit 2024-09-13T22:06:48.851755+0000 mon.a (mon.0) 301 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-13T22:06:49.516 INFO:teuthology.orchestra.run.smithi138.stdout: 2024-09-13T22:06:49.517 INFO:teuthology.orchestra.run.smithi138.stdout:{"epoch":3,"fsid":"89616338-721b-11ef-bceb-c7b262605968","modified":"2024-09-13T22:06:42.860001Z","created":"2024-09-13T22:04:10.314756Z","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.31:3300","nonce":0},{"type":"v1","addr":"172.21.15.31:6789","nonce":0}]},"addr":"172.21.15.31:6789/0","public_addr":"172.21.15.31: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.96:3300","nonce":0},{"type":"v1","addr":"172.21.15.96:6789","nonce":0}]},"addr":"172.21.15.96:6789/0","public_addr":"172.21.15.96:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1,2]} 2024-09-13T22:06:49.517 INFO:teuthology.orchestra.run.smithi138.stderr:dumped monmap epoch 3 2024-09-13T22:06:50.135 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-09-13T22:06:50.135 DEBUG:teuthology.orchestra.run.smithi031:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 89616338-721b-11ef-bceb-c7b262605968 -- ceph config generate-minimal-conf 2024-09-13T22:06:50.327 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:50 smithi138 bash[23295]: audit 2024-09-13T22:06:49.516503+0000 mon.a (mon.0) 302 : audit [DBG] from='client.? 172.21.15.138:0/1543867984' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-13T22:06:50.327 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:50 smithi138 bash[23295]: audit 2024-09-13T22:06:49.768620+0000 mon.a (mon.0) 303 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:50.327 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:50 smithi138 bash[23295]: audit 2024-09-13T22:06:49.775525+0000 mon.a (mon.0) 304 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:50.327 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:50 smithi138 bash[23295]: audit 2024-09-13T22:06:49.784505+0000 mon.a (mon.0) 305 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:50.393 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:50 smithi031 bash[22709]: audit 2024-09-13T22:06:49.516503+0000 mon.a (mon.0) 302 : audit [DBG] from='client.? 172.21.15.138:0/1543867984' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-13T22:06:50.393 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:50 smithi031 bash[22709]: audit 2024-09-13T22:06:49.768620+0000 mon.a (mon.0) 303 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:50.393 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:50 smithi031 bash[22709]: audit 2024-09-13T22:06:49.775525+0000 mon.a (mon.0) 304 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:50.393 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:50 smithi031 bash[22709]: audit 2024-09-13T22:06:49.784505+0000 mon.a (mon.0) 305 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:50.439 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:50 smithi096 bash[23620]: audit 2024-09-13T22:06:49.516503+0000 mon.a (mon.0) 302 : audit [DBG] from='client.? 172.21.15.138:0/1543867984' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-13T22:06:50.439 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:50 smithi096 bash[23620]: audit 2024-09-13T22:06:49.768620+0000 mon.a (mon.0) 303 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:50.439 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:50 smithi096 bash[23620]: audit 2024-09-13T22:06:49.775525+0000 mon.a (mon.0) 304 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:50.440 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:50 smithi096 bash[23620]: audit 2024-09-13T22:06:49.784505+0000 mon.a (mon.0) 305 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:51.577 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:51 smithi138 bash[23295]: cluster 2024-09-13T22:06:49.793151+0000 mgr.a (mgr.14150) 86 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:51.577 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:51 smithi138 bash[23295]: audit 2024-09-13T22:06:50.312985+0000 mon.a (mon.0) 306 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:51.577 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:51 smithi138 bash[23295]: audit 2024-09-13T22:06:50.318995+0000 mon.a (mon.0) 307 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:51.577 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:51 smithi138 bash[23295]: cephadm 2024-09-13T22:06:50.320597+0000 mgr.a (mgr.14150) 87 : cephadm [INF] Reconfiguring mon.c (monmap changed)... 2024-09-13T22:06:51.577 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:51 smithi138 bash[23295]: audit 2024-09-13T22:06:50.321137+0000 mon.a (mon.0) 308 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-13T22:06:51.578 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:51 smithi138 bash[23295]: audit 2024-09-13T22:06:50.322564+0000 mon.a (mon.0) 309 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-13T22:06:51.578 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:51 smithi138 bash[23295]: audit 2024-09-13T22:06:50.323906+0000 mon.a (mon.0) 310 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:06:51.578 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:51 smithi138 bash[23295]: cephadm 2024-09-13T22:06:50.325148+0000 mgr.a (mgr.14150) 88 : cephadm [INF] Reconfiguring daemon mon.c on smithi138 2024-09-13T22:06:51.578 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:51 smithi138 bash[23295]: audit 2024-09-13T22:06:50.382461+0000 mon.a (mon.0) 311 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:51.578 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:51 smithi138 bash[23295]: audit 2024-09-13T22:06:50.388251+0000 mon.a (mon.0) 312 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:51.578 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:51 smithi138 bash[23295]: audit 2024-09-13T22:06:50.392514+0000 mon.a (mon.0) 313 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:51.689 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:51 smithi096 bash[23620]: cluster 2024-09-13T22:06:49.793151+0000 mgr.a (mgr.14150) 86 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:51.690 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:51 smithi096 bash[23620]: audit 2024-09-13T22:06:50.312985+0000 mon.a (mon.0) 306 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:51.690 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:51 smithi096 bash[23620]: audit 2024-09-13T22:06:50.318995+0000 mon.a (mon.0) 307 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:51.690 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:51 smithi096 bash[23620]: cephadm 2024-09-13T22:06:50.320597+0000 mgr.a (mgr.14150) 87 : cephadm [INF] Reconfiguring mon.c (monmap changed)... 2024-09-13T22:06:51.690 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:51 smithi096 bash[23620]: audit 2024-09-13T22:06:50.321137+0000 mon.a (mon.0) 308 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-13T22:06:51.690 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:51 smithi096 bash[23620]: audit 2024-09-13T22:06:50.322564+0000 mon.a (mon.0) 309 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-13T22:06:51.690 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:51 smithi096 bash[23620]: audit 2024-09-13T22:06:50.323906+0000 mon.a (mon.0) 310 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:06:51.690 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:51 smithi096 bash[23620]: cephadm 2024-09-13T22:06:50.325148+0000 mgr.a (mgr.14150) 88 : cephadm [INF] Reconfiguring daemon mon.c on smithi138 2024-09-13T22:06:51.690 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:51 smithi096 bash[23620]: audit 2024-09-13T22:06:50.382461+0000 mon.a (mon.0) 311 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:51.690 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:51 smithi096 bash[23620]: audit 2024-09-13T22:06:50.388251+0000 mon.a (mon.0) 312 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:51.690 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:51 smithi096 bash[23620]: audit 2024-09-13T22:06:50.392514+0000 mon.a (mon.0) 313 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:51.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:51 smithi031 bash[22709]: cluster 2024-09-13T22:06:49.793151+0000 mgr.a (mgr.14150) 86 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:51.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:51 smithi031 bash[22709]: audit 2024-09-13T22:06:50.312985+0000 mon.a (mon.0) 306 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:51.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:51 smithi031 bash[22709]: audit 2024-09-13T22:06:50.318995+0000 mon.a (mon.0) 307 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:51.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:51 smithi031 bash[22709]: cephadm 2024-09-13T22:06:50.320597+0000 mgr.a (mgr.14150) 87 : cephadm [INF] Reconfiguring mon.c (monmap changed)... 2024-09-13T22:06:51.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:51 smithi031 bash[22709]: audit 2024-09-13T22:06:50.321137+0000 mon.a (mon.0) 308 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-13T22:06:51.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:51 smithi031 bash[22709]: audit 2024-09-13T22:06:50.322564+0000 mon.a (mon.0) 309 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-13T22:06:51.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:51 smithi031 bash[22709]: audit 2024-09-13T22:06:50.323906+0000 mon.a (mon.0) 310 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:06:51.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:51 smithi031 bash[22709]: cephadm 2024-09-13T22:06:50.325148+0000 mgr.a (mgr.14150) 88 : cephadm [INF] Reconfiguring daemon mon.c on smithi138 2024-09-13T22:06:51.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:51 smithi031 bash[22709]: audit 2024-09-13T22:06:50.382461+0000 mon.a (mon.0) 311 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:51.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:51 smithi031 bash[22709]: audit 2024-09-13T22:06:50.388251+0000 mon.a (mon.0) 312 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:51.723 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:51 smithi031 bash[22709]: audit 2024-09-13T22:06:50.392514+0000 mon.a (mon.0) 313 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:53.690 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:53 smithi096 bash[23620]: cluster 2024-09-13T22:06:51.793634+0000 mgr.a (mgr.14150) 89 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:53.690 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:53 smithi096 bash[23620]: audit 2024-09-13T22:06:52.417662+0000 mon.a (mon.0) 314 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:53.690 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:53 smithi096 bash[23620]: audit 2024-09-13T22:06:52.424873+0000 mon.a (mon.0) 315 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:53.690 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:53 smithi096 bash[23620]: audit 2024-09-13T22:06:52.427294+0000 mon.a (mon.0) 316 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:06:53.690 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:53 smithi096 bash[23620]: audit 2024-09-13T22:06:52.432050+0000 mon.a (mon.0) 317 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:06:53.690 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:53 smithi096 bash[23620]: audit 2024-09-13T22:06:52.433841+0000 mon.a (mon.0) 318 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:06:53.690 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:53 smithi096 bash[23620]: cephadm 2024-09-13T22:06:52.436336+0000 mgr.a (mgr.14150) 90 : cephadm [INF] Updating smithi031:/etc/ceph/ceph.conf 2024-09-13T22:06:53.690 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:53 smithi096 bash[23620]: cephadm 2024-09-13T22:06:52.436817+0000 mgr.a (mgr.14150) 91 : cephadm [INF] Updating smithi096:/etc/ceph/ceph.conf 2024-09-13T22:06:53.691 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:53 smithi096 bash[23620]: cephadm 2024-09-13T22:06:52.438303+0000 mgr.a (mgr.14150) 92 : cephadm [INF] Updating smithi138:/etc/ceph/ceph.conf 2024-09-13T22:06:53.691 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:53 smithi096 bash[23620]: cephadm 2024-09-13T22:06:52.688195+0000 mgr.a (mgr.14150) 93 : cephadm [INF] Updating smithi031:/var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T22:06:53.691 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:53 smithi096 bash[23620]: cephadm 2024-09-13T22:06:52.692673+0000 mgr.a (mgr.14150) 94 : cephadm [INF] Updating smithi138:/var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T22:06:53.691 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:53 smithi096 bash[23620]: cephadm 2024-09-13T22:06:52.693449+0000 mgr.a (mgr.14150) 95 : cephadm [INF] Updating smithi096:/var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T22:06:53.691 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:53 smithi096 bash[23620]: audit 2024-09-13T22:06:52.890984+0000 mon.a (mon.0) 319 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:53.691 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:53 smithi096 bash[23620]: audit 2024-09-13T22:06:52.893886+0000 mon.a (mon.0) 320 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:53.691 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:53 smithi096 bash[23620]: audit 2024-09-13T22:06:52.896200+0000 mon.a (mon.0) 321 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:53.691 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:53 smithi096 bash[23620]: audit 2024-09-13T22:06:52.898599+0000 mon.a (mon.0) 322 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:53.691 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:53 smithi096 bash[23620]: audit 2024-09-13T22:06:52.900905+0000 mon.a (mon.0) 323 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:53.691 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:53 smithi096 bash[23620]: audit 2024-09-13T22:06:52.905538+0000 mon.a (mon.0) 324 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:53.691 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:53 smithi096 bash[23620]: audit 2024-09-13T22:06:52.912038+0000 mon.a (mon.0) 325 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:53.691 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:53 smithi096 bash[23620]: audit 2024-09-13T22:06:52.961367+0000 mon.a (mon.0) 326 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-13T22:06:53.692 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:53 smithi096 bash[23620]: audit 2024-09-13T22:06:52.962727+0000 mon.a (mon.0) 327 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-13T22:06:53.692 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:53 smithi096 bash[23620]: audit 2024-09-13T22:06:52.963887+0000 mon.a (mon.0) 328 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:06:53.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:53 smithi031 bash[22709]: cluster 2024-09-13T22:06:51.793634+0000 mgr.a (mgr.14150) 89 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:53.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:53 smithi031 bash[22709]: audit 2024-09-13T22:06:52.417662+0000 mon.a (mon.0) 314 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:53.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:53 smithi031 bash[22709]: audit 2024-09-13T22:06:52.424873+0000 mon.a (mon.0) 315 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:53.723 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:53 smithi031 bash[22709]: audit 2024-09-13T22:06:52.427294+0000 mon.a (mon.0) 316 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:06:53.723 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:53 smithi031 bash[22709]: audit 2024-09-13T22:06:52.432050+0000 mon.a (mon.0) 317 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:06:53.723 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:53 smithi031 bash[22709]: audit 2024-09-13T22:06:52.433841+0000 mon.a (mon.0) 318 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:06:53.723 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:53 smithi031 bash[22709]: cephadm 2024-09-13T22:06:52.436336+0000 mgr.a (mgr.14150) 90 : cephadm [INF] Updating smithi031:/etc/ceph/ceph.conf 2024-09-13T22:06:53.723 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:53 smithi031 bash[22709]: cephadm 2024-09-13T22:06:52.436817+0000 mgr.a (mgr.14150) 91 : cephadm [INF] Updating smithi096:/etc/ceph/ceph.conf 2024-09-13T22:06:53.723 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:53 smithi031 bash[22709]: cephadm 2024-09-13T22:06:52.438303+0000 mgr.a (mgr.14150) 92 : cephadm [INF] Updating smithi138:/etc/ceph/ceph.conf 2024-09-13T22:06:53.723 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:53 smithi031 bash[22709]: cephadm 2024-09-13T22:06:52.688195+0000 mgr.a (mgr.14150) 93 : cephadm [INF] Updating smithi031:/var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T22:06:53.723 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:53 smithi031 bash[22709]: cephadm 2024-09-13T22:06:52.692673+0000 mgr.a (mgr.14150) 94 : cephadm [INF] Updating smithi138:/var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T22:06:53.723 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:53 smithi031 bash[22709]: cephadm 2024-09-13T22:06:52.693449+0000 mgr.a (mgr.14150) 95 : cephadm [INF] Updating smithi096:/var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T22:06:53.723 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:53 smithi031 bash[22709]: audit 2024-09-13T22:06:52.890984+0000 mon.a (mon.0) 319 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:53.723 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:53 smithi031 bash[22709]: audit 2024-09-13T22:06:52.893886+0000 mon.a (mon.0) 320 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:53.723 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:53 smithi031 bash[22709]: audit 2024-09-13T22:06:52.896200+0000 mon.a (mon.0) 321 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:53.723 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:53 smithi031 bash[22709]: audit 2024-09-13T22:06:52.898599+0000 mon.a (mon.0) 322 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:53.724 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:53 smithi031 bash[22709]: audit 2024-09-13T22:06:52.900905+0000 mon.a (mon.0) 323 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:53.724 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:53 smithi031 bash[22709]: audit 2024-09-13T22:06:52.905538+0000 mon.a (mon.0) 324 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:53.724 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:53 smithi031 bash[22709]: audit 2024-09-13T22:06:52.912038+0000 mon.a (mon.0) 325 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:53.724 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:53 smithi031 bash[22709]: audit 2024-09-13T22:06:52.961367+0000 mon.a (mon.0) 326 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-13T22:06:53.724 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:53 smithi031 bash[22709]: audit 2024-09-13T22:06:52.962727+0000 mon.a (mon.0) 327 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-13T22:06:53.724 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:53 smithi031 bash[22709]: audit 2024-09-13T22:06:52.963887+0000 mon.a (mon.0) 328 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:06:53.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:53 smithi138 bash[23295]: cluster 2024-09-13T22:06:51.793634+0000 mgr.a (mgr.14150) 89 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:53.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:53 smithi138 bash[23295]: audit 2024-09-13T22:06:52.417662+0000 mon.a (mon.0) 314 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:53.828 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:53 smithi138 bash[23295]: audit 2024-09-13T22:06:52.424873+0000 mon.a (mon.0) 315 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:53.828 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:53 smithi138 bash[23295]: audit 2024-09-13T22:06:52.427294+0000 mon.a (mon.0) 316 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:06:53.828 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:53 smithi138 bash[23295]: audit 2024-09-13T22:06:52.432050+0000 mon.a (mon.0) 317 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:06:53.828 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:53 smithi138 bash[23295]: audit 2024-09-13T22:06:52.433841+0000 mon.a (mon.0) 318 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:06:53.828 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:53 smithi138 bash[23295]: cephadm 2024-09-13T22:06:52.436336+0000 mgr.a (mgr.14150) 90 : cephadm [INF] Updating smithi031:/etc/ceph/ceph.conf 2024-09-13T22:06:53.828 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:53 smithi138 bash[23295]: cephadm 2024-09-13T22:06:52.436817+0000 mgr.a (mgr.14150) 91 : cephadm [INF] Updating smithi096:/etc/ceph/ceph.conf 2024-09-13T22:06:53.828 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:53 smithi138 bash[23295]: cephadm 2024-09-13T22:06:52.438303+0000 mgr.a (mgr.14150) 92 : cephadm [INF] Updating smithi138:/etc/ceph/ceph.conf 2024-09-13T22:06:53.828 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:53 smithi138 bash[23295]: cephadm 2024-09-13T22:06:52.688195+0000 mgr.a (mgr.14150) 93 : cephadm [INF] Updating smithi031:/var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T22:06:53.828 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:53 smithi138 bash[23295]: cephadm 2024-09-13T22:06:52.692673+0000 mgr.a (mgr.14150) 94 : cephadm [INF] Updating smithi138:/var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T22:06:53.828 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:53 smithi138 bash[23295]: cephadm 2024-09-13T22:06:52.693449+0000 mgr.a (mgr.14150) 95 : cephadm [INF] Updating smithi096:/var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T22:06:53.828 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:53 smithi138 bash[23295]: audit 2024-09-13T22:06:52.890984+0000 mon.a (mon.0) 319 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:53.828 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:53 smithi138 bash[23295]: audit 2024-09-13T22:06:52.893886+0000 mon.a (mon.0) 320 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:53.829 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:53 smithi138 bash[23295]: audit 2024-09-13T22:06:52.896200+0000 mon.a (mon.0) 321 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:53.829 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:53 smithi138 bash[23295]: audit 2024-09-13T22:06:52.898599+0000 mon.a (mon.0) 322 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:53.829 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:53 smithi138 bash[23295]: audit 2024-09-13T22:06:52.900905+0000 mon.a (mon.0) 323 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:53.829 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:53 smithi138 bash[23295]: audit 2024-09-13T22:06:52.905538+0000 mon.a (mon.0) 324 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:53.829 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:53 smithi138 bash[23295]: audit 2024-09-13T22:06:52.912038+0000 mon.a (mon.0) 325 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:53.829 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:53 smithi138 bash[23295]: audit 2024-09-13T22:06:52.961367+0000 mon.a (mon.0) 326 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-13T22:06:53.829 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:53 smithi138 bash[23295]: audit 2024-09-13T22:06:52.962727+0000 mon.a (mon.0) 327 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-13T22:06:53.829 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:53 smithi138 bash[23295]: audit 2024-09-13T22:06:52.963887+0000 mon.a (mon.0) 328 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:06:54.689 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:54 smithi096 bash[23620]: cephadm 2024-09-13T22:06:52.960737+0000 mgr.a (mgr.14150) 96 : cephadm [INF] Reconfiguring mon.a (monmap changed)... 2024-09-13T22:06:54.689 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:54 smithi096 bash[23620]: cephadm 2024-09-13T22:06:52.965190+0000 mgr.a (mgr.14150) 97 : cephadm [INF] Reconfiguring daemon mon.a on smithi031 2024-09-13T22:06:54.721 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:54 smithi031 bash[22709]: cephadm 2024-09-13T22:06:52.960737+0000 mgr.a (mgr.14150) 96 : cephadm [INF] Reconfiguring mon.a (monmap changed)... 2024-09-13T22:06:54.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:54 smithi031 bash[22709]: cephadm 2024-09-13T22:06:52.965190+0000 mgr.a (mgr.14150) 97 : cephadm [INF] Reconfiguring daemon mon.a on smithi031 2024-09-13T22:06:54.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:54 smithi138 bash[23295]: cephadm 2024-09-13T22:06:52.960737+0000 mgr.a (mgr.14150) 96 : cephadm [INF] Reconfiguring mon.a (monmap changed)... 2024-09-13T22:06:54.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:54 smithi138 bash[23295]: cephadm 2024-09-13T22:06:52.965190+0000 mgr.a (mgr.14150) 97 : cephadm [INF] Reconfiguring daemon mon.a on smithi031 2024-09-13T22:06:54.878 INFO:teuthology.orchestra.run.smithi031.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T22:06:55.689 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:55 smithi096 bash[23620]: cluster 2024-09-13T22:06:53.794088+0000 mgr.a (mgr.14150) 98 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:55.689 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:55 smithi096 bash[23620]: audit 2024-09-13T22:06:55.418712+0000 mon.a (mon.0) 329 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:55.721 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:55 smithi031 bash[22709]: cluster 2024-09-13T22:06:53.794088+0000 mgr.a (mgr.14150) 98 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:55.721 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:55 smithi031 bash[22709]: audit 2024-09-13T22:06:55.418712+0000 mon.a (mon.0) 329 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:55.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:55 smithi138 bash[23295]: cluster 2024-09-13T22:06:53.794088+0000 mgr.a (mgr.14150) 98 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:55.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:55 smithi138 bash[23295]: audit 2024-09-13T22:06:55.418712+0000 mon.a (mon.0) 329 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:56.347 INFO:teuthology.orchestra.run.smithi031.stdout:# minimal ceph.conf for 89616338-721b-11ef-bceb-c7b262605968 2024-09-13T22:06:56.347 INFO:teuthology.orchestra.run.smithi031.stdout:[global] 2024-09-13T22:06:56.347 INFO:teuthology.orchestra.run.smithi031.stdout: fsid = 89616338-721b-11ef-bceb-c7b262605968 2024-09-13T22:06:56.348 INFO:teuthology.orchestra.run.smithi031.stdout: mon_host = [v2:172.21.15.31:3300/0,v1:172.21.15.31:6789/0] [v2:172.21.15.96:3300/0,v1:172.21.15.96:6789/0] [v2:172.21.15.138:3300/0,v1:172.21.15.138:6789/0] 2024-09-13T22:06:56.689 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:56 smithi096 bash[23620]: audit 2024-09-13T22:06:55.424719+0000 mon.a (mon.0) 330 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:56.689 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:56 smithi096 bash[23620]: audit 2024-09-13T22:06:56.347586+0000 mon.a (mon.0) 331 : audit [DBG] from='client.? 172.21.15.31:0/2087162156' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:06:56.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:56 smithi031 bash[22709]: audit 2024-09-13T22:06:55.424719+0000 mon.a (mon.0) 330 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:56.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:56 smithi031 bash[22709]: audit 2024-09-13T22:06:56.347586+0000 mon.a (mon.0) 331 : audit [DBG] from='client.? 172.21.15.31:0/2087162156' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:06:56.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:56 smithi138 bash[23295]: audit 2024-09-13T22:06:55.424719+0000 mon.a (mon.0) 330 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:06:56.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:56 smithi138 bash[23295]: audit 2024-09-13T22:06:56.347586+0000 mon.a (mon.0) 331 : audit [DBG] from='client.? 172.21.15.31:0/2087162156' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:06:56.994 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-09-13T22:06:56.995 DEBUG:teuthology.orchestra.run.smithi031:> set -ex 2024-09-13T22:06:56.995 DEBUG:teuthology.orchestra.run.smithi031:> sudo dd of=/etc/ceph/ceph.conf 2024-09-13T22:06:57.009 DEBUG:teuthology.orchestra.run.smithi031:> set -ex 2024-09-13T22:06:57.009 DEBUG:teuthology.orchestra.run.smithi031:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-13T22:06:57.066 DEBUG:teuthology.orchestra.run.smithi096:> set -ex 2024-09-13T22:06:57.066 DEBUG:teuthology.orchestra.run.smithi096:> sudo dd of=/etc/ceph/ceph.conf 2024-09-13T22:06:57.080 DEBUG:teuthology.orchestra.run.smithi096:> set -ex 2024-09-13T22:06:57.080 DEBUG:teuthology.orchestra.run.smithi096:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-13T22:06:57.133 DEBUG:teuthology.orchestra.run.smithi138:> set -ex 2024-09-13T22:06:57.134 DEBUG:teuthology.orchestra.run.smithi138:> sudo dd of=/etc/ceph/ceph.conf 2024-09-13T22:06:57.148 DEBUG:teuthology.orchestra.run.smithi138:> set -ex 2024-09-13T22:06:57.148 DEBUG:teuthology.orchestra.run.smithi138:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-13T22:06:57.204 INFO:tasks.cephadm:Adding mgr.a on smithi031 2024-09-13T22:06:57.204 INFO:tasks.cephadm:Adding mgr.b on smithi096 2024-09-13T22:06:57.205 DEBUG:teuthology.orchestra.run.smithi138:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 89616338-721b-11ef-bceb-c7b262605968 -- ceph orch apply mgr '2;smithi031=a;smithi096=b' 2024-09-13T22:06:57.689 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:57 smithi096 bash[23620]: cluster 2024-09-13T22:06:55.794508+0000 mgr.a (mgr.14150) 99 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:57.721 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:57 smithi031 bash[22709]: cluster 2024-09-13T22:06:55.794508+0000 mgr.a (mgr.14150) 99 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:57.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:57 smithi138 bash[23295]: cluster 2024-09-13T22:06:55.794508+0000 mgr.a (mgr.14150) 99 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:59.721 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:06:59 smithi031 bash[22709]: cluster 2024-09-13T22:06:57.794906+0000 mgr.a (mgr.14150) 100 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:59.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:06:59 smithi138 bash[23295]: cluster 2024-09-13T22:06:57.794906+0000 mgr.a (mgr.14150) 100 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:06:59.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:06:59 smithi096 bash[23620]: cluster 2024-09-13T22:06:57.794906+0000 mgr.a (mgr.14150) 100 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:00.965 INFO:teuthology.orchestra.run.smithi138.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.c/config 2024-09-13T22:07:01.721 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:01 smithi031 bash[22709]: cluster 2024-09-13T22:06:59.795290+0000 mgr.a (mgr.14150) 101 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:01.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:01 smithi138 bash[23295]: cluster 2024-09-13T22:06:59.795290+0000 mgr.a (mgr.14150) 101 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:01.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:01 smithi096 bash[23620]: cluster 2024-09-13T22:06:59.795290+0000 mgr.a (mgr.14150) 101 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:02.748 INFO:teuthology.orchestra.run.smithi138.stdout:Scheduled mgr update... 2024-09-13T22:07:03.603 DEBUG:teuthology.orchestra.run.smithi096:mgr.b> sudo journalctl -f -n 0 -u ceph-89616338-721b-11ef-bceb-c7b262605968@mgr.b.service 2024-09-13T22:07:03.605 INFO:tasks.cephadm:Deploying OSDs... 2024-09-13T22:07:03.606 DEBUG:teuthology.orchestra.run.smithi031:> set -ex 2024-09-13T22:07:03.606 DEBUG:teuthology.orchestra.run.smithi031:> dd if=/scratch_devs of=/dev/stdout 2024-09-13T22:07:03.611 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-09-13T22:07:03.611 DEBUG:teuthology.orchestra.run.smithi031:> stat /dev/vg_nvme/lv_1 2024-09-13T22:07:03.663 INFO:teuthology.orchestra.run.smithi031.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-13T22:07:03.663 INFO:teuthology.orchestra.run.smithi031.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-13T22:07:03.663 INFO:teuthology.orchestra.run.smithi031.stdout:Device: 5h/5d Inode: 886 Links: 1 2024-09-13T22:07:03.663 INFO:teuthology.orchestra.run.smithi031.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-13T22:07:03.663 INFO:teuthology.orchestra.run.smithi031.stdout:Access: 2024-09-13 21:54:32.064060678 +0000 2024-09-13T22:07:03.663 INFO:teuthology.orchestra.run.smithi031.stdout:Modify: 2024-09-13 21:54:31.812062929 +0000 2024-09-13T22:07:03.663 INFO:teuthology.orchestra.run.smithi031.stdout:Change: 2024-09-13 21:54:31.812062929 +0000 2024-09-13T22:07:03.664 INFO:teuthology.orchestra.run.smithi031.stdout: Birth: - 2024-09-13T22:07:03.664 DEBUG:teuthology.orchestra.run.smithi031:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-13T22:07:03.714 INFO:teuthology.orchestra.run.smithi031.stderr:1+0 records in 2024-09-13T22:07:03.714 INFO:teuthology.orchestra.run.smithi031.stderr:1+0 records out 2024-09-13T22:07:03.714 INFO:teuthology.orchestra.run.smithi031.stderr:512 bytes copied, 0.000292038 s, 1.8 MB/s 2024-09-13T22:07:03.715 DEBUG:teuthology.orchestra.run.smithi031:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-13T22:07:03.763 DEBUG:teuthology.orchestra.run.smithi031:> stat /dev/vg_nvme/lv_2 2024-09-13T22:07:03.814 INFO:teuthology.orchestra.run.smithi031.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-13T22:07:03.814 INFO:teuthology.orchestra.run.smithi031.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-13T22:07:03.815 INFO:teuthology.orchestra.run.smithi031.stdout:Device: 5h/5d Inode: 908 Links: 1 2024-09-13T22:07:03.815 INFO:teuthology.orchestra.run.smithi031.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-13T22:07:03.815 INFO:teuthology.orchestra.run.smithi031.stdout:Access: 2024-09-13 21:54:32.580056069 +0000 2024-09-13T22:07:03.815 INFO:teuthology.orchestra.run.smithi031.stdout:Modify: 2024-09-13 21:54:32.332058284 +0000 2024-09-13T22:07:03.815 INFO:teuthology.orchestra.run.smithi031.stdout:Change: 2024-09-13 21:54:32.332058284 +0000 2024-09-13T22:07:03.815 INFO:teuthology.orchestra.run.smithi031.stdout: Birth: - 2024-09-13T22:07:03.816 DEBUG:teuthology.orchestra.run.smithi031:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-13T22:07:03.867 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:03 smithi031 bash[22709]: cluster 2024-09-13T22:07:01.795702+0000 mgr.a (mgr.14150) 102 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:03.867 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:03 smithi031 bash[22709]: audit 2024-09-13T22:07:02.736845+0000 mgr.a (mgr.14150) 103 : audit [DBG] from='client.24106 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi031=a;smithi096=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:07:03.867 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:03 smithi031 bash[22709]: cephadm 2024-09-13T22:07:02.740085+0000 mgr.a (mgr.14150) 104 : cephadm [INF] Saving service mgr spec with placement smithi031=a;smithi096=b;count:2 2024-09-13T22:07:03.867 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:03 smithi031 bash[22709]: audit 2024-09-13T22:07:02.747645+0000 mon.a (mon.0) 332 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:03.867 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:03 smithi031 bash[22709]: audit 2024-09-13T22:07:02.749517+0000 mon.a (mon.0) 333 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:07:03.868 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:03 smithi031 bash[22709]: audit 2024-09-13T22:07:02.754495+0000 mon.a (mon.0) 334 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:07:03.868 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:03 smithi031 bash[22709]: audit 2024-09-13T22:07:02.756409+0000 mon.a (mon.0) 335 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:07:03.868 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:03 smithi031 bash[22709]: audit 2024-09-13T22:07:02.765624+0000 mon.a (mon.0) 336 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:03.868 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:03 smithi031 bash[22709]: audit 2024-09-13T22:07:02.769804+0000 mon.a (mon.0) 337 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-13T22:07:03.868 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:03 smithi031 bash[22709]: audit 2024-09-13T22:07:02.772598+0000 mon.a (mon.0) 338 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-13T22:07:03.868 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:03 smithi031 bash[22709]: audit 2024-09-13T22:07:02.777610+0000 mon.a (mon.0) 339 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-13T22:07:03.869 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:03 smithi031 bash[22709]: audit 2024-09-13T22:07:02.779554+0000 mon.a (mon.0) 340 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:07:03.869 INFO:teuthology.orchestra.run.smithi031.stderr:1+0 records in 2024-09-13T22:07:03.869 INFO:teuthology.orchestra.run.smithi031.stderr:1+0 records out 2024-09-13T22:07:03.870 INFO:teuthology.orchestra.run.smithi031.stderr:512 bytes copied, 0.000366074 s, 1.4 MB/s 2024-09-13T22:07:03.871 DEBUG:teuthology.orchestra.run.smithi031:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-13T22:07:03.919 DEBUG:teuthology.orchestra.run.smithi031:> stat /dev/vg_nvme/lv_3 2024-09-13T22:07:03.940 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:03 smithi096 bash[23620]: cluster 2024-09-13T22:07:01.795702+0000 mgr.a (mgr.14150) 102 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:03.940 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:03 smithi096 bash[23620]: audit 2024-09-13T22:07:02.736845+0000 mgr.a (mgr.14150) 103 : audit [DBG] from='client.24106 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi031=a;smithi096=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:07:03.941 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:03 smithi096 bash[23620]: cephadm 2024-09-13T22:07:02.740085+0000 mgr.a (mgr.14150) 104 : cephadm [INF] Saving service mgr spec with placement smithi031=a;smithi096=b;count:2 2024-09-13T22:07:03.941 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:03 smithi096 bash[23620]: audit 2024-09-13T22:07:02.747645+0000 mon.a (mon.0) 332 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:03.941 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:03 smithi096 bash[23620]: audit 2024-09-13T22:07:02.749517+0000 mon.a (mon.0) 333 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:07:03.941 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:03 smithi096 bash[23620]: audit 2024-09-13T22:07:02.754495+0000 mon.a (mon.0) 334 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:07:03.941 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:03 smithi096 bash[23620]: audit 2024-09-13T22:07:02.756409+0000 mon.a (mon.0) 335 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:07:03.942 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:03 smithi096 bash[23620]: audit 2024-09-13T22:07:02.765624+0000 mon.a (mon.0) 336 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:03.942 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:03 smithi096 bash[23620]: audit 2024-09-13T22:07:02.769804+0000 mon.a (mon.0) 337 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-13T22:07:03.942 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:03 smithi096 bash[23620]: audit 2024-09-13T22:07:02.772598+0000 mon.a (mon.0) 338 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-13T22:07:03.942 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:03 smithi096 bash[23620]: audit 2024-09-13T22:07:02.777610+0000 mon.a (mon.0) 339 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-13T22:07:03.942 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:03 smithi096 bash[23620]: audit 2024-09-13T22:07:02.779554+0000 mon.a (mon.0) 340 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:07:03.966 INFO:teuthology.orchestra.run.smithi031.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-13T22:07:03.966 INFO:teuthology.orchestra.run.smithi031.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-13T22:07:03.967 INFO:teuthology.orchestra.run.smithi031.stdout:Device: 5h/5d Inode: 927 Links: 1 2024-09-13T22:07:03.967 INFO:teuthology.orchestra.run.smithi031.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-13T22:07:03.967 INFO:teuthology.orchestra.run.smithi031.stdout:Access: 2024-09-13 21:54:33.080051603 +0000 2024-09-13T22:07:03.967 INFO:teuthology.orchestra.run.smithi031.stdout:Modify: 2024-09-13 21:54:32.808054032 +0000 2024-09-13T22:07:03.967 INFO:teuthology.orchestra.run.smithi031.stdout:Change: 2024-09-13 21:54:32.808054032 +0000 2024-09-13T22:07:03.967 INFO:teuthology.orchestra.run.smithi031.stdout: Birth: - 2024-09-13T22:07:03.968 DEBUG:teuthology.orchestra.run.smithi031:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-13T22:07:04.020 INFO:teuthology.orchestra.run.smithi031.stderr:1+0 records in 2024-09-13T22:07:04.020 INFO:teuthology.orchestra.run.smithi031.stderr:1+0 records out 2024-09-13T22:07:04.020 INFO:teuthology.orchestra.run.smithi031.stderr:512 bytes copied, 0.000401221 s, 1.3 MB/s 2024-09-13T22:07:04.021 DEBUG:teuthology.orchestra.run.smithi031:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-13T22:07:04.071 DEBUG:teuthology.orchestra.run.smithi031:> stat /dev/vg_nvme/lv_4 2024-09-13T22:07:04.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:03 smithi138 bash[23295]: cluster 2024-09-13T22:07:01.795702+0000 mgr.a (mgr.14150) 102 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:04.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:03 smithi138 bash[23295]: audit 2024-09-13T22:07:02.736845+0000 mgr.a (mgr.14150) 103 : audit [DBG] from='client.24106 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi031=a;smithi096=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:07:04.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:03 smithi138 bash[23295]: cephadm 2024-09-13T22:07:02.740085+0000 mgr.a (mgr.14150) 104 : cephadm [INF] Saving service mgr spec with placement smithi031=a;smithi096=b;count:2 2024-09-13T22:07:04.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:03 smithi138 bash[23295]: audit 2024-09-13T22:07:02.747645+0000 mon.a (mon.0) 332 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:04.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:03 smithi138 bash[23295]: audit 2024-09-13T22:07:02.749517+0000 mon.a (mon.0) 333 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:07:04.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:03 smithi138 bash[23295]: audit 2024-09-13T22:07:02.754495+0000 mon.a (mon.0) 334 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:07:04.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:03 smithi138 bash[23295]: audit 2024-09-13T22:07:02.756409+0000 mon.a (mon.0) 335 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:07:04.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:03 smithi138 bash[23295]: audit 2024-09-13T22:07:02.765624+0000 mon.a (mon.0) 336 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:04.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:03 smithi138 bash[23295]: audit 2024-09-13T22:07:02.769804+0000 mon.a (mon.0) 337 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-13T22:07:04.078 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:03 smithi138 bash[23295]: audit 2024-09-13T22:07:02.772598+0000 mon.a (mon.0) 338 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-13T22:07:04.078 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:03 smithi138 bash[23295]: audit 2024-09-13T22:07:02.777610+0000 mon.a (mon.0) 339 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-13T22:07:04.078 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:03 smithi138 bash[23295]: audit 2024-09-13T22:07:02.779554+0000 mon.a (mon.0) 340 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:07:04.118 INFO:teuthology.orchestra.run.smithi031.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-13T22:07:04.118 INFO:teuthology.orchestra.run.smithi031.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-13T22:07:04.118 INFO:teuthology.orchestra.run.smithi031.stdout:Device: 5h/5d Inode: 936 Links: 1 2024-09-13T22:07:04.118 INFO:teuthology.orchestra.run.smithi031.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-13T22:07:04.118 INFO:teuthology.orchestra.run.smithi031.stdout:Access: 2024-09-13 21:54:33.332049352 +0000 2024-09-13T22:07:04.118 INFO:teuthology.orchestra.run.smithi031.stdout:Modify: 2024-09-13 21:54:33.328049388 +0000 2024-09-13T22:07:04.118 INFO:teuthology.orchestra.run.smithi031.stdout:Change: 2024-09-13 21:54:33.328049388 +0000 2024-09-13T22:07:04.118 INFO:teuthology.orchestra.run.smithi031.stdout: Birth: - 2024-09-13T22:07:04.119 DEBUG:teuthology.orchestra.run.smithi031:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-13T22:07:04.173 INFO:teuthology.orchestra.run.smithi031.stderr:1+0 records in 2024-09-13T22:07:04.173 INFO:teuthology.orchestra.run.smithi031.stderr:1+0 records out 2024-09-13T22:07:04.173 INFO:teuthology.orchestra.run.smithi031.stderr:512 bytes copied, 0.000378514 s, 1.4 MB/s 2024-09-13T22:07:04.174 DEBUG:teuthology.orchestra.run.smithi031:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-13T22:07:04.224 DEBUG:teuthology.orchestra.run.smithi096:> set -ex 2024-09-13T22:07:04.224 DEBUG:teuthology.orchestra.run.smithi096:> dd if=/scratch_devs of=/dev/stdout 2024-09-13T22:07:04.230 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-09-13T22:07:04.230 DEBUG:teuthology.orchestra.run.smithi096:> stat /dev/vg_nvme/lv_1 2024-09-13T22:07:04.278 INFO:teuthology.orchestra.run.smithi096.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-13T22:07:04.279 INFO:teuthology.orchestra.run.smithi096.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-13T22:07:04.279 INFO:teuthology.orchestra.run.smithi096.stdout:Device: 5h/5d Inode: 877 Links: 1 2024-09-13T22:07:04.279 INFO:teuthology.orchestra.run.smithi096.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-13T22:07:04.279 INFO:teuthology.orchestra.run.smithi096.stdout:Access: 2024-09-13 21:54:29.741043967 +0000 2024-09-13T22:07:04.279 INFO:teuthology.orchestra.run.smithi096.stdout:Modify: 2024-09-13 21:54:29.501046111 +0000 2024-09-13T22:07:04.279 INFO:teuthology.orchestra.run.smithi096.stdout:Change: 2024-09-13 21:54:29.501046111 +0000 2024-09-13T22:07:04.279 INFO:teuthology.orchestra.run.smithi096.stdout: Birth: - 2024-09-13T22:07:04.279 DEBUG:teuthology.orchestra.run.smithi096:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-13T22:07:04.333 INFO:teuthology.orchestra.run.smithi096.stderr:1+0 records in 2024-09-13T22:07:04.333 INFO:teuthology.orchestra.run.smithi096.stderr:1+0 records out 2024-09-13T22:07:04.334 INFO:teuthology.orchestra.run.smithi096.stderr:512 bytes copied, 0.000459186 s, 1.1 MB/s 2024-09-13T22:07:04.335 DEBUG:teuthology.orchestra.run.smithi096:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-13T22:07:04.383 DEBUG:teuthology.orchestra.run.smithi096:> stat /dev/vg_nvme/lv_2 2024-09-13T22:07:04.430 INFO:teuthology.orchestra.run.smithi096.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-13T22:07:04.430 INFO:teuthology.orchestra.run.smithi096.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-13T22:07:04.430 INFO:teuthology.orchestra.run.smithi096.stdout:Device: 5h/5d Inode: 888 Links: 1 2024-09-13T22:07:04.430 INFO:teuthology.orchestra.run.smithi096.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-13T22:07:04.430 INFO:teuthology.orchestra.run.smithi096.stdout:Access: 2024-09-13 21:54:30.265039287 +0000 2024-09-13T22:07:04.430 INFO:teuthology.orchestra.run.smithi096.stdout:Modify: 2024-09-13 21:54:29.985041788 +0000 2024-09-13T22:07:04.430 INFO:teuthology.orchestra.run.smithi096.stdout:Change: 2024-09-13 21:54:29.985041788 +0000 2024-09-13T22:07:04.430 INFO:teuthology.orchestra.run.smithi096.stdout: Birth: - 2024-09-13T22:07:04.431 DEBUG:teuthology.orchestra.run.smithi096:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-13T22:07:04.482 INFO:teuthology.orchestra.run.smithi096.stderr:1+0 records in 2024-09-13T22:07:04.482 INFO:teuthology.orchestra.run.smithi096.stderr:1+0 records out 2024-09-13T22:07:04.482 INFO:teuthology.orchestra.run.smithi096.stderr:512 bytes copied, 0.000293473 s, 1.7 MB/s 2024-09-13T22:07:04.483 DEBUG:teuthology.orchestra.run.smithi096:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-13T22:07:04.530 DEBUG:teuthology.orchestra.run.smithi096:> stat /dev/vg_nvme/lv_3 2024-09-13T22:07:04.577 INFO:teuthology.orchestra.run.smithi096.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-13T22:07:04.577 INFO:teuthology.orchestra.run.smithi096.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-13T22:07:04.577 INFO:teuthology.orchestra.run.smithi096.stdout:Device: 5h/5d Inode: 909 Links: 1 2024-09-13T22:07:04.577 INFO:teuthology.orchestra.run.smithi096.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-13T22:07:04.577 INFO:teuthology.orchestra.run.smithi096.stdout:Access: 2024-09-13 21:54:30.497037215 +0000 2024-09-13T22:07:04.578 INFO:teuthology.orchestra.run.smithi096.stdout:Modify: 2024-09-13 21:54:30.493037249 +0000 2024-09-13T22:07:04.578 INFO:teuthology.orchestra.run.smithi096.stdout:Change: 2024-09-13 21:54:30.493037249 +0000 2024-09-13T22:07:04.578 INFO:teuthology.orchestra.run.smithi096.stdout: Birth: - 2024-09-13T22:07:04.578 DEBUG:teuthology.orchestra.run.smithi096:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-13T22:07:04.635 INFO:teuthology.orchestra.run.smithi096.stderr:1+0 records in 2024-09-13T22:07:04.635 INFO:teuthology.orchestra.run.smithi096.stderr:1+0 records out 2024-09-13T22:07:04.635 INFO:teuthology.orchestra.run.smithi096.stderr:512 bytes copied, 0.000454492 s, 1.1 MB/s 2024-09-13T22:07:04.636 DEBUG:teuthology.orchestra.run.smithi096:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-13T22:07:04.683 DEBUG:teuthology.orchestra.run.smithi096:> stat /dev/vg_nvme/lv_4 2024-09-13T22:07:04.734 INFO:teuthology.orchestra.run.smithi096.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-13T22:07:04.734 INFO:teuthology.orchestra.run.smithi096.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-13T22:07:04.734 INFO:teuthology.orchestra.run.smithi096.stdout:Device: 5h/5d Inode: 925 Links: 1 2024-09-13T22:07:04.734 INFO:teuthology.orchestra.run.smithi096.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-13T22:07:04.734 INFO:teuthology.orchestra.run.smithi096.stdout:Access: 2024-09-13 21:54:31.193030997 +0000 2024-09-13T22:07:04.734 INFO:teuthology.orchestra.run.smithi096.stdout:Modify: 2024-09-13 21:54:30.949033176 +0000 2024-09-13T22:07:04.734 INFO:teuthology.orchestra.run.smithi096.stdout:Change: 2024-09-13 21:54:30.949033176 +0000 2024-09-13T22:07:04.735 INFO:teuthology.orchestra.run.smithi096.stdout: Birth: - 2024-09-13T22:07:04.735 DEBUG:teuthology.orchestra.run.smithi096:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-13T22:07:04.789 INFO:teuthology.orchestra.run.smithi096.stderr:1+0 records in 2024-09-13T22:07:04.789 INFO:teuthology.orchestra.run.smithi096.stderr:1+0 records out 2024-09-13T22:07:04.789 INFO:teuthology.orchestra.run.smithi096.stderr:512 bytes copied, 0.000412737 s, 1.2 MB/s 2024-09-13T22:07:04.790 DEBUG:teuthology.orchestra.run.smithi096:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-13T22:07:04.840 DEBUG:teuthology.orchestra.run.smithi138:> set -ex 2024-09-13T22:07:04.840 DEBUG:teuthology.orchestra.run.smithi138:> dd if=/scratch_devs of=/dev/stdout 2024-09-13T22:07:04.845 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-09-13T22:07:04.845 DEBUG:teuthology.orchestra.run.smithi138:> stat /dev/vg_nvme/lv_1 2024-09-13T22:07:04.893 INFO:teuthology.orchestra.run.smithi138.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-13T22:07:04.893 INFO:teuthology.orchestra.run.smithi138.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-13T22:07:04.893 INFO:teuthology.orchestra.run.smithi138.stdout:Device: 5h/5d Inode: 872 Links: 1 2024-09-13T22:07:04.893 INFO:teuthology.orchestra.run.smithi138.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-13T22:07:04.893 INFO:teuthology.orchestra.run.smithi138.stdout:Access: 2024-09-13 21:54:29.811997275 +0000 2024-09-13T22:07:04.893 INFO:teuthology.orchestra.run.smithi138.stdout:Modify: 2024-09-13 21:54:29.571999419 +0000 2024-09-13T22:07:04.893 INFO:teuthology.orchestra.run.smithi138.stdout:Change: 2024-09-13 21:54:29.571999419 +0000 2024-09-13T22:07:04.893 INFO:teuthology.orchestra.run.smithi138.stdout: Birth: - 2024-09-13T22:07:04.893 DEBUG:teuthology.orchestra.run.smithi138:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-13T22:07:04.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:04 smithi096 bash[23620]: cephadm 2024-09-13T22:07:02.781479+0000 mgr.a (mgr.14150) 105 : cephadm [INF] Deploying daemon mgr.b on smithi096 2024-09-13T22:07:04.945 INFO:teuthology.orchestra.run.smithi138.stderr:1+0 records in 2024-09-13T22:07:04.945 INFO:teuthology.orchestra.run.smithi138.stderr:1+0 records out 2024-09-13T22:07:04.945 INFO:teuthology.orchestra.run.smithi138.stderr:512 bytes copied, 0.000304995 s, 1.7 MB/s 2024-09-13T22:07:04.946 DEBUG:teuthology.orchestra.run.smithi138:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-13T22:07:04.995 DEBUG:teuthology.orchestra.run.smithi138:> stat /dev/vg_nvme/lv_2 2024-09-13T22:07:05.042 INFO:teuthology.orchestra.run.smithi138.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-13T22:07:05.042 INFO:teuthology.orchestra.run.smithi138.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-13T22:07:05.042 INFO:teuthology.orchestra.run.smithi138.stdout:Device: 5h/5d Inode: 887 Links: 1 2024-09-13T22:07:05.042 INFO:teuthology.orchestra.run.smithi138.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-13T22:07:05.042 INFO:teuthology.orchestra.run.smithi138.stdout:Access: 2024-09-13 21:54:30.315992773 +0000 2024-09-13T22:07:05.042 INFO:teuthology.orchestra.run.smithi138.stdout:Modify: 2024-09-13 21:54:30.063995023 +0000 2024-09-13T22:07:05.043 INFO:teuthology.orchestra.run.smithi138.stdout:Change: 2024-09-13 21:54:30.063995023 +0000 2024-09-13T22:07:05.043 INFO:teuthology.orchestra.run.smithi138.stdout: Birth: - 2024-09-13T22:07:05.043 DEBUG:teuthology.orchestra.run.smithi138:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-13T22:07:05.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:04 smithi138 bash[23295]: cephadm 2024-09-13T22:07:02.781479+0000 mgr.a (mgr.14150) 105 : cephadm [INF] Deploying daemon mgr.b on smithi096 2024-09-13T22:07:05.088 INFO:teuthology.orchestra.run.smithi138.stderr:1+0 records in 2024-09-13T22:07:05.088 INFO:teuthology.orchestra.run.smithi138.stderr:1+0 records out 2024-09-13T22:07:05.088 INFO:teuthology.orchestra.run.smithi138.stderr:512 bytes copied, 0.000366476 s, 1.4 MB/s 2024-09-13T22:07:05.089 DEBUG:teuthology.orchestra.run.smithi138:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-13T22:07:05.138 DEBUG:teuthology.orchestra.run.smithi138:> stat /dev/vg_nvme/lv_3 2024-09-13T22:07:05.185 INFO:teuthology.orchestra.run.smithi138.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-13T22:07:05.185 INFO:teuthology.orchestra.run.smithi138.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-13T22:07:05.185 INFO:teuthology.orchestra.run.smithi138.stdout:Device: 5h/5d Inode: 905 Links: 1 2024-09-13T22:07:05.185 INFO:teuthology.orchestra.run.smithi138.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-13T22:07:05.185 INFO:teuthology.orchestra.run.smithi138.stdout:Access: 2024-09-13 21:54:30.831988164 +0000 2024-09-13T22:07:05.185 INFO:teuthology.orchestra.run.smithi138.stdout:Modify: 2024-09-13 21:54:30.539990772 +0000 2024-09-13T22:07:05.185 INFO:teuthology.orchestra.run.smithi138.stdout:Change: 2024-09-13 21:54:30.539990772 +0000 2024-09-13T22:07:05.185 INFO:teuthology.orchestra.run.smithi138.stdout: Birth: - 2024-09-13T22:07:05.186 DEBUG:teuthology.orchestra.run.smithi138:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-13T22:07:05.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:04 smithi031 bash[22709]: cephadm 2024-09-13T22:07:02.781479+0000 mgr.a (mgr.14150) 105 : cephadm [INF] Deploying daemon mgr.b on smithi096 2024-09-13T22:07:05.239 INFO:teuthology.orchestra.run.smithi138.stderr:1+0 records in 2024-09-13T22:07:05.239 INFO:teuthology.orchestra.run.smithi138.stderr:1+0 records out 2024-09-13T22:07:05.240 INFO:teuthology.orchestra.run.smithi138.stderr:512 bytes copied, 0.000341835 s, 1.5 MB/s 2024-09-13T22:07:05.241 DEBUG:teuthology.orchestra.run.smithi138:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-13T22:07:05.290 DEBUG:teuthology.orchestra.run.smithi138:> stat /dev/vg_nvme/lv_4 2024-09-13T22:07:05.336 INFO:teuthology.orchestra.run.smithi138.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-13T22:07:05.337 INFO:teuthology.orchestra.run.smithi138.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-13T22:07:05.337 INFO:teuthology.orchestra.run.smithi138.stdout:Device: 5h/5d Inode: 920 Links: 1 2024-09-13T22:07:05.337 INFO:teuthology.orchestra.run.smithi138.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-13T22:07:05.337 INFO:teuthology.orchestra.run.smithi138.stdout:Access: 2024-09-13 21:54:31.359983447 +0000 2024-09-13T22:07:05.337 INFO:teuthology.orchestra.run.smithi138.stdout:Modify: 2024-09-13 21:54:31.075985985 +0000 2024-09-13T22:07:05.337 INFO:teuthology.orchestra.run.smithi138.stdout:Change: 2024-09-13 21:54:31.075985985 +0000 2024-09-13T22:07:05.337 INFO:teuthology.orchestra.run.smithi138.stdout: Birth: - 2024-09-13T22:07:05.337 DEBUG:teuthology.orchestra.run.smithi138:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-13T22:07:05.392 INFO:teuthology.orchestra.run.smithi138.stderr:1+0 records in 2024-09-13T22:07:05.392 INFO:teuthology.orchestra.run.smithi138.stderr:1+0 records out 2024-09-13T22:07:05.392 INFO:teuthology.orchestra.run.smithi138.stderr:512 bytes copied, 0.000417755 s, 1.2 MB/s 2024-09-13T22:07:05.393 DEBUG:teuthology.orchestra.run.smithi138:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-13T22:07:05.446 INFO:tasks.cephadm:Deploying osd.0 on smithi031 with /dev/vg_nvme/lv_4... 2024-09-13T22:07:05.446 DEBUG:teuthology.orchestra.run.smithi031:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 89616338-721b-11ef-bceb-c7b262605968 -- lvm zap /dev/vg_nvme/lv_4 2024-09-13T22:07:05.831 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:05 smithi096 bash[23620]: cluster 2024-09-13T22:07:03.796109+0000 mgr.a (mgr.14150) 106 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:06.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:05 smithi138 bash[23295]: cluster 2024-09-13T22:07:03.796109+0000 mgr.a (mgr.14150) 106 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:06.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:05 smithi031 bash[22709]: cluster 2024-09-13T22:07:03.796109+0000 mgr.a (mgr.14150) 106 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:06.689 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:06 smithi096 systemd[1]: /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-13T22:07:07.189 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:06 smithi096 systemd[1]: /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-13T22:07:07.189 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 13 22:07:06 smithi096 systemd[1]: /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-13T22:07:07.189 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 13 22:07:06 smithi096 systemd[1]: /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-13T22:07:07.190 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 13 22:07:06 smithi096 systemd[1]: /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-13T22:07:07.190 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 13 22:07:06 smithi096 systemd[1]: /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-13T22:07:07.190 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 13 22:07:06 smithi096 systemd[1]: Started Ceph mgr.b for 89616338-721b-11ef-bceb-c7b262605968. 2024-09-13T22:07:07.689 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:07 smithi096 bash[23620]: cluster 2024-09-13T22:07:05.796506+0000 mgr.a (mgr.14150) 107 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:07.689 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:07 smithi096 bash[23620]: audit 2024-09-13T22:07:06.357615+0000 mon.a (mon.0) 341 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:07.689 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:07 smithi096 bash[23620]: audit 2024-09-13T22:07:06.364679+0000 mon.a (mon.0) 342 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:07.689 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:07 smithi096 bash[23620]: audit 2024-09-13T22:07:06.373470+0000 mon.a (mon.0) 343 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:07.689 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:07 smithi096 bash[23620]: audit 2024-09-13T22:07:07.011217+0000 mon.a (mon.0) 344 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:07.689 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:07 smithi096 bash[23620]: audit 2024-09-13T22:07:07.018346+0000 mon.a (mon.0) 345 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:07.689 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:07 smithi096 bash[23620]: audit 2024-09-13T22:07:07.025499+0000 mon.a (mon.0) 346 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:07.690 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:07 smithi096 bash[23620]: audit 2024-09-13T22:07:07.031945+0000 mon.a (mon.0) 347 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:07.690 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:07 smithi096 bash[23620]: audit 2024-09-13T22:07:07.098343+0000 mon.a (mon.0) 348 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:07:07.690 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:07 smithi096 bash[23620]: audit 2024-09-13T22:07:07.102176+0000 mon.a (mon.0) 349 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:07:07.690 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:07 smithi096 bash[23620]: audit 2024-09-13T22:07:07.103388+0000 mon.a (mon.0) 350 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:07:07.690 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:07 smithi096 bash[23620]: audit 2024-09-13T22:07:07.111704+0000 mon.a (mon.0) 351 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:07.690 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:07 smithi096 bash[23620]: audit 2024-09-13T22:07:07.177555+0000 mon.a (mon.0) 352 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-13T22:07:07.690 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:07 smithi096 bash[23620]: audit 2024-09-13T22:07:07.178823+0000 mon.a (mon.0) 353 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-13T22:07:07.690 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:07 smithi096 bash[23620]: audit 2024-09-13T22:07:07.179806+0000 mon.a (mon.0) 354 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:07:07.721 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:07 smithi031 bash[22709]: cluster 2024-09-13T22:07:05.796506+0000 mgr.a (mgr.14150) 107 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:07.721 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:07 smithi031 bash[22709]: audit 2024-09-13T22:07:06.357615+0000 mon.a (mon.0) 341 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:07.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:07 smithi031 bash[22709]: audit 2024-09-13T22:07:06.364679+0000 mon.a (mon.0) 342 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:07.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:07 smithi031 bash[22709]: audit 2024-09-13T22:07:06.373470+0000 mon.a (mon.0) 343 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:07.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:07 smithi031 bash[22709]: audit 2024-09-13T22:07:07.011217+0000 mon.a (mon.0) 344 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:07.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:07 smithi031 bash[22709]: audit 2024-09-13T22:07:07.018346+0000 mon.a (mon.0) 345 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:07.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:07 smithi031 bash[22709]: audit 2024-09-13T22:07:07.025499+0000 mon.a (mon.0) 346 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:07.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:07 smithi031 bash[22709]: audit 2024-09-13T22:07:07.031945+0000 mon.a (mon.0) 347 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:07.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:07 smithi031 bash[22709]: audit 2024-09-13T22:07:07.098343+0000 mon.a (mon.0) 348 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:07:07.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:07 smithi031 bash[22709]: audit 2024-09-13T22:07:07.102176+0000 mon.a (mon.0) 349 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:07:07.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:07 smithi031 bash[22709]: audit 2024-09-13T22:07:07.103388+0000 mon.a (mon.0) 350 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:07:07.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:07 smithi031 bash[22709]: audit 2024-09-13T22:07:07.111704+0000 mon.a (mon.0) 351 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:07.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:07 smithi031 bash[22709]: audit 2024-09-13T22:07:07.177555+0000 mon.a (mon.0) 352 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-13T22:07:07.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:07 smithi031 bash[22709]: audit 2024-09-13T22:07:07.178823+0000 mon.a (mon.0) 353 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-13T22:07:07.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:07 smithi031 bash[22709]: audit 2024-09-13T22:07:07.179806+0000 mon.a (mon.0) 354 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:07:07.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:07 smithi138 bash[23295]: cluster 2024-09-13T22:07:05.796506+0000 mgr.a (mgr.14150) 107 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:07.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:07 smithi138 bash[23295]: audit 2024-09-13T22:07:06.357615+0000 mon.a (mon.0) 341 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:07.828 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:07 smithi138 bash[23295]: audit 2024-09-13T22:07:06.364679+0000 mon.a (mon.0) 342 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:07.828 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:07 smithi138 bash[23295]: audit 2024-09-13T22:07:06.373470+0000 mon.a (mon.0) 343 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:07.828 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:07 smithi138 bash[23295]: audit 2024-09-13T22:07:07.011217+0000 mon.a (mon.0) 344 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:07.828 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:07 smithi138 bash[23295]: audit 2024-09-13T22:07:07.018346+0000 mon.a (mon.0) 345 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:07.828 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:07 smithi138 bash[23295]: audit 2024-09-13T22:07:07.025499+0000 mon.a (mon.0) 346 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:07.828 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:07 smithi138 bash[23295]: audit 2024-09-13T22:07:07.031945+0000 mon.a (mon.0) 347 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:07.828 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:07 smithi138 bash[23295]: audit 2024-09-13T22:07:07.098343+0000 mon.a (mon.0) 348 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:07:07.828 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:07 smithi138 bash[23295]: audit 2024-09-13T22:07:07.102176+0000 mon.a (mon.0) 349 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:07:07.828 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:07 smithi138 bash[23295]: audit 2024-09-13T22:07:07.103388+0000 mon.a (mon.0) 350 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:07:07.828 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:07 smithi138 bash[23295]: audit 2024-09-13T22:07:07.111704+0000 mon.a (mon.0) 351 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:07.828 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:07 smithi138 bash[23295]: audit 2024-09-13T22:07:07.177555+0000 mon.a (mon.0) 352 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-13T22:07:07.828 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:07 smithi138 bash[23295]: audit 2024-09-13T22:07:07.178823+0000 mon.a (mon.0) 353 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-13T22:07:07.828 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:07 smithi138 bash[23295]: audit 2024-09-13T22:07:07.179806+0000 mon.a (mon.0) 354 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:07:08.621 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:08 smithi096 bash[23620]: cephadm 2024-09-13T22:07:07.112407+0000 mgr.a (mgr.14150) 108 : cephadm [INF] Metadata not up to date on all hosts. Skipping non agent specs 2024-09-13T22:07:08.621 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:08 smithi096 bash[23620]: cephadm 2024-09-13T22:07:07.176967+0000 mgr.a (mgr.14150) 109 : cephadm [INF] Reconfiguring mgr.a (unknown last config time)... 2024-09-13T22:07:08.621 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:08 smithi096 bash[23620]: cephadm 2024-09-13T22:07:07.180858+0000 mgr.a (mgr.14150) 110 : cephadm [INF] Reconfiguring daemon mgr.a on smithi031 2024-09-13T22:07:08.621 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:08 smithi096 bash[23620]: audit 2024-09-13T22:07:07.959297+0000 mon.a (mon.0) 355 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:08.721 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:08 smithi031 bash[22709]: cephadm 2024-09-13T22:07:07.112407+0000 mgr.a (mgr.14150) 108 : cephadm [INF] Metadata not up to date on all hosts. Skipping non agent specs 2024-09-13T22:07:08.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:08 smithi031 bash[22709]: cephadm 2024-09-13T22:07:07.176967+0000 mgr.a (mgr.14150) 109 : cephadm [INF] Reconfiguring mgr.a (unknown last config time)... 2024-09-13T22:07:08.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:08 smithi031 bash[22709]: cephadm 2024-09-13T22:07:07.180858+0000 mgr.a (mgr.14150) 110 : cephadm [INF] Reconfiguring daemon mgr.a on smithi031 2024-09-13T22:07:08.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:08 smithi031 bash[22709]: audit 2024-09-13T22:07:07.959297+0000 mon.a (mon.0) 355 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:08.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:08 smithi138 bash[23295]: cephadm 2024-09-13T22:07:07.112407+0000 mgr.a (mgr.14150) 108 : cephadm [INF] Metadata not up to date on all hosts. Skipping non agent specs 2024-09-13T22:07:08.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:08 smithi138 bash[23295]: cephadm 2024-09-13T22:07:07.176967+0000 mgr.a (mgr.14150) 109 : cephadm [INF] Reconfiguring mgr.a (unknown last config time)... 2024-09-13T22:07:08.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:08 smithi138 bash[23295]: cephadm 2024-09-13T22:07:07.180858+0000 mgr.a (mgr.14150) 110 : cephadm [INF] Reconfiguring daemon mgr.a on smithi031 2024-09-13T22:07:08.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:08 smithi138 bash[23295]: audit 2024-09-13T22:07:07.959297+0000 mon.a (mon.0) 355 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:08.895 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 13 22:07:08 smithi096 bash[24486]: debug 2024-09-13T22:07:08.725+0000 7f4d9c5d7640 1 -- 172.21.15.96:0/1991617445 <== mon.2 v2:172.21.15.96:3300/0 4 ==== auth_reply(proto 2 0 (0) Success) ==== 194+0+0 (secure 0 0 0) 0x55a15ba390e0 con 0x55a15ba3a800 2024-09-13T22:07:08.895 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 13 22:07:08 smithi096 bash[24486]: debug 2024-09-13T22:07:08.841+0000 7f4d9ee41040 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-09-13T22:07:09.468 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:09 smithi096 bash[23620]: cluster 2024-09-13T22:07:07.796929+0000 mgr.a (mgr.14150) 111 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:09.468 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:09 smithi096 bash[23620]: audit 2024-09-13T22:07:08.912848+0000 mon.a (mon.0) 356 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:09.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:09 smithi031 bash[22709]: cluster 2024-09-13T22:07:07.796929+0000 mgr.a (mgr.14150) 111 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:09.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:09 smithi031 bash[22709]: audit 2024-09-13T22:07:08.912848+0000 mon.a (mon.0) 356 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:09.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:09 smithi138 bash[23295]: cluster 2024-09-13T22:07:07.796929+0000 mgr.a (mgr.14150) 111 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:09.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:09 smithi138 bash[23295]: audit 2024-09-13T22:07:08.912848+0000 mon.a (mon.0) 356 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:10.180 INFO:teuthology.orchestra.run.smithi031.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T22:07:10.439 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 13 22:07:10 smithi096 bash[24486]: debug 2024-09-13T22:07:10.089+0000 7f4d9ee41040 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-09-13T22:07:10.439 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 13 22:07:10 smithi096 bash[24486]: debug 2024-09-13T22:07:10.153+0000 7f4d9ee41040 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-09-13T22:07:10.439 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 13 22:07:10 smithi096 bash[24486]: debug 2024-09-13T22:07:10.305+0000 7f4d9ee41040 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-09-13T22:07:10.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:10 smithi138 bash[23295]: audit 2024-09-13T22:07:09.554544+0000 mon.a (mon.0) 357 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:10.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:10 smithi138 bash[23295]: audit 2024-09-13T22:07:09.561845+0000 mon.a (mon.0) 358 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:10.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:10 smithi138 bash[23295]: audit 2024-09-13T22:07:09.564711+0000 mon.a (mon.0) 359 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:07:10.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:10 smithi138 bash[23295]: audit 2024-09-13T22:07:09.568921+0000 mon.a (mon.0) 360 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:07:10.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:10 smithi138 bash[23295]: audit 2024-09-13T22:07:09.570629+0000 mon.a (mon.0) 361 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:07:10.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:10 smithi138 bash[23295]: audit 2024-09-13T22:07:09.580689+0000 mon.a (mon.0) 362 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:10.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:10 smithi138 bash[23295]: cephadm 2024-09-13T22:07:09.581573+0000 mgr.a (mgr.14150) 112 : cephadm [INF] Metadata not up to date on all hosts. Skipping non agent specs 2024-09-13T22:07:10.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:10 smithi096 bash[23620]: audit 2024-09-13T22:07:09.554544+0000 mon.a (mon.0) 357 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:10.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:10 smithi096 bash[23620]: audit 2024-09-13T22:07:09.561845+0000 mon.a (mon.0) 358 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:10.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:10 smithi096 bash[23620]: audit 2024-09-13T22:07:09.564711+0000 mon.a (mon.0) 359 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:07:10.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:10 smithi096 bash[23620]: audit 2024-09-13T22:07:09.568921+0000 mon.a (mon.0) 360 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:07:10.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:10 smithi096 bash[23620]: audit 2024-09-13T22:07:09.570629+0000 mon.a (mon.0) 361 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:07:10.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:10 smithi096 bash[23620]: audit 2024-09-13T22:07:09.580689+0000 mon.a (mon.0) 362 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:10.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:10 smithi096 bash[23620]: cephadm 2024-09-13T22:07:09.581573+0000 mgr.a (mgr.14150) 112 : cephadm [INF] Metadata not up to date on all hosts. Skipping non agent specs 2024-09-13T22:07:10.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:10 smithi031 bash[22709]: audit 2024-09-13T22:07:09.554544+0000 mon.a (mon.0) 357 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:10.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:10 smithi031 bash[22709]: audit 2024-09-13T22:07:09.561845+0000 mon.a (mon.0) 358 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:10.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:10 smithi031 bash[22709]: audit 2024-09-13T22:07:09.564711+0000 mon.a (mon.0) 359 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:07:10.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:10 smithi031 bash[22709]: audit 2024-09-13T22:07:09.568921+0000 mon.a (mon.0) 360 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:07:10.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:10 smithi031 bash[22709]: audit 2024-09-13T22:07:09.570629+0000 mon.a (mon.0) 361 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:07:10.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:10 smithi031 bash[22709]: audit 2024-09-13T22:07:09.580689+0000 mon.a (mon.0) 362 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:10.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:10 smithi031 bash[22709]: cephadm 2024-09-13T22:07:09.581573+0000 mgr.a (mgr.14150) 112 : cephadm [INF] Metadata not up to date on all hosts. Skipping non agent specs 2024-09-13T22:07:11.297 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 13 22:07:10 smithi096 bash[24486]: debug 2024-09-13T22:07:10.961+0000 7f4d9ee41040 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-09-13T22:07:11.298 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 13 22:07:11 smithi096 bash[24486]: debug 2024-09-13T22:07:11.029+0000 7f4d9ee41040 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-09-13T22:07:11.298 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 13 22:07:11 smithi096 bash[24486]: debug 2024-09-13T22:07:11.105+0000 7f4d9ee41040 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-09-13T22:07:11.586 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 13 22:07:11 smithi096 bash[24486]: debug 2024-09-13T22:07:11.293+0000 7f4d9ee41040 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-09-13T22:07:11.586 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 13 22:07:11 smithi096 bash[24486]: debug 2024-09-13T22:07:11.373+0000 7f4d9ee41040 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-09-13T22:07:11.586 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 13 22:07:11 smithi096 bash[24486]: debug 2024-09-13T22:07:11.441+0000 7f4d9ee41040 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-09-13T22:07:11.849 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 13 22:07:11 smithi096 bash[24486]: debug 2024-09-13T22:07:11.701+0000 7f4d9ee41040 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-09-13T22:07:11.849 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 13 22:07:11 smithi096 bash[24486]: debug 2024-09-13T22:07:11.773+0000 7f4d9ee41040 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-09-13T22:07:11.849 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:11 smithi096 bash[23620]: cluster 2024-09-13T22:07:09.797361+0000 mgr.a (mgr.14150) 113 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:11.849 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:11 smithi096 bash[23620]: audit 2024-09-13T22:07:10.587984+0000 mon.a (mon.0) 363 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:11.849 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:11 smithi096 bash[23620]: audit 2024-09-13T22:07:10.591875+0000 mon.a (mon.0) 364 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:11.849 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:11 smithi096 bash[23620]: audit 2024-09-13T22:07:10.598800+0000 mon.a (mon.0) 365 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:11.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:11 smithi031 bash[22709]: cluster 2024-09-13T22:07:09.797361+0000 mgr.a (mgr.14150) 113 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:11.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:11 smithi031 bash[22709]: audit 2024-09-13T22:07:10.587984+0000 mon.a (mon.0) 363 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:11.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:11 smithi031 bash[22709]: audit 2024-09-13T22:07:10.591875+0000 mon.a (mon.0) 364 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:11.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:11 smithi031 bash[22709]: audit 2024-09-13T22:07:10.598800+0000 mon.a (mon.0) 365 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:12.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:11 smithi138 bash[23295]: cluster 2024-09-13T22:07:09.797361+0000 mgr.a (mgr.14150) 113 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:12.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:11 smithi138 bash[23295]: audit 2024-09-13T22:07:10.587984+0000 mon.a (mon.0) 363 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:12.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:11 smithi138 bash[23295]: audit 2024-09-13T22:07:10.591875+0000 mon.a (mon.0) 364 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:12.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:11 smithi138 bash[23295]: audit 2024-09-13T22:07:10.598800+0000 mon.a (mon.0) 365 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:12.189 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 13 22:07:11 smithi096 bash[24486]: debug 2024-09-13T22:07:11.969+0000 7f4d9ee41040 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-09-13T22:07:12.189 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 13 22:07:12 smithi096 bash[24486]: debug 2024-09-13T22:07:12.045+0000 7f4d9ee41040 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-09-13T22:07:12.641 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 13 22:07:12 smithi096 bash[24486]: debug 2024-09-13T22:07:12.297+0000 7f4d9ee41040 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-09-13T22:07:12.641 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 13 22:07:12 smithi096 bash[24486]: debug 2024-09-13T22:07:12.473+0000 7f4d9ee41040 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-09-13T22:07:12.906 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 13 22:07:12 smithi096 bash[24486]: debug 2024-09-13T22:07:12.637+0000 7f4d9ee41040 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-09-13T22:07:12.907 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 13 22:07:12 smithi096 bash[24486]: debug 2024-09-13T22:07:12.717+0000 7f4d9ee41040 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-09-13T22:07:13.189 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 13 22:07:12 smithi096 bash[24486]: debug 2024-09-13T22:07:12.905+0000 7f4d9ee41040 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-09-13T22:07:13.689 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:13 smithi096 bash[23620]: cluster 2024-09-13T22:07:11.797826+0000 mgr.a (mgr.14150) 114 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:13.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:13 smithi031 bash[22709]: cluster 2024-09-13T22:07:11.797826+0000 mgr.a (mgr.14150) 114 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:14.062 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 13 22:07:13 smithi096 bash[24486]: debug 2024-09-13T22:07:13.753+0000 7f4d9ee41040 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-09-13T22:07:14.062 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 13 22:07:13 smithi096 bash[24486]: debug 2024-09-13T22:07:13.829+0000 7f4d9ee41040 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-09-13T22:07:14.076 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:13 smithi138 bash[23295]: cluster 2024-09-13T22:07:11.797826+0000 mgr.a (mgr.14150) 114 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:14.172 INFO:teuthology.orchestra.run.smithi031.stdout: 2024-09-13T22:07:14.224 DEBUG:teuthology.orchestra.run.smithi031:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 89616338-721b-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi031:vg_nvme/lv_4 2024-09-13T22:07:14.439 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 13 22:07:14 smithi096 bash[24486]: debug 2024-09-13T22:07:14.061+0000 7f4d9ee41040 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-09-13T22:07:14.439 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 13 22:07:14 smithi096 bash[24486]: debug 2024-09-13T22:07:14.137+0000 7f4d9ee41040 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-09-13T22:07:14.796 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 13 22:07:14 smithi096 bash[24486]: debug 2024-09-13T22:07:14.533+0000 7f4d9ee41040 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-09-13T22:07:14.797 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 13 22:07:14 smithi096 bash[24486]: debug 2024-09-13T22:07:14.621+0000 7f4d9ee41040 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-09-13T22:07:15.439 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:15 smithi096 bash[23620]: cluster 2024-09-13T22:07:13.798264+0000 mgr.a (mgr.14150) 115 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:15.439 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:15 smithi096 bash[23620]: audit 2024-09-13T22:07:14.155975+0000 mon.a (mon.0) 366 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:15.439 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:15 smithi096 bash[23620]: cluster 2024-09-13T22:07:14.645230+0000 mon.a (mon.0) 367 : cluster [DBG] Standby manager daemon b started 2024-09-13T22:07:15.439 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:15 smithi096 bash[23620]: audit 2024-09-13T22:07:14.646325+0000 mon.b (mon.2) 2 : audit [DBG] from='mgr.? 172.21.15.96:0/4046705386' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-09-13T22:07:15.439 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:15 smithi096 bash[23620]: audit 2024-09-13T22:07:14.646777+0000 mon.b (mon.2) 3 : audit [DBG] from='mgr.? 172.21.15.96:0/4046705386' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-09-13T22:07:15.439 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:15 smithi096 bash[23620]: audit 2024-09-13T22:07:14.647606+0000 mon.b (mon.2) 4 : audit [DBG] from='mgr.? 172.21.15.96:0/4046705386' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-09-13T22:07:15.440 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:15 smithi096 bash[23620]: audit 2024-09-13T22:07:14.647941+0000 mon.b (mon.2) 5 : audit [DBG] from='mgr.? 172.21.15.96:0/4046705386' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-09-13T22:07:15.440 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:15 smithi096 bash[23620]: audit 2024-09-13T22:07:14.795693+0000 mon.a (mon.0) 368 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:15.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:15 smithi031 bash[22709]: cluster 2024-09-13T22:07:13.798264+0000 mgr.a (mgr.14150) 115 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:15.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:15 smithi031 bash[22709]: audit 2024-09-13T22:07:14.155975+0000 mon.a (mon.0) 366 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:15.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:15 smithi031 bash[22709]: cluster 2024-09-13T22:07:14.645230+0000 mon.a (mon.0) 367 : cluster [DBG] Standby manager daemon b started 2024-09-13T22:07:15.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:15 smithi031 bash[22709]: audit 2024-09-13T22:07:14.646325+0000 mon.b (mon.2) 2 : audit [DBG] from='mgr.? 172.21.15.96:0/4046705386' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-09-13T22:07:15.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:15 smithi031 bash[22709]: audit 2024-09-13T22:07:14.646777+0000 mon.b (mon.2) 3 : audit [DBG] from='mgr.? 172.21.15.96:0/4046705386' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-09-13T22:07:15.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:15 smithi031 bash[22709]: audit 2024-09-13T22:07:14.647606+0000 mon.b (mon.2) 4 : audit [DBG] from='mgr.? 172.21.15.96:0/4046705386' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-09-13T22:07:15.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:15 smithi031 bash[22709]: audit 2024-09-13T22:07:14.647941+0000 mon.b (mon.2) 5 : audit [DBG] from='mgr.? 172.21.15.96:0/4046705386' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-09-13T22:07:15.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:15 smithi031 bash[22709]: audit 2024-09-13T22:07:14.795693+0000 mon.a (mon.0) 368 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:15.577 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:15 smithi138 bash[23295]: cluster 2024-09-13T22:07:13.798264+0000 mgr.a (mgr.14150) 115 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:15.577 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:15 smithi138 bash[23295]: audit 2024-09-13T22:07:14.155975+0000 mon.a (mon.0) 366 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:15.577 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:15 smithi138 bash[23295]: cluster 2024-09-13T22:07:14.645230+0000 mon.a (mon.0) 367 : cluster [DBG] Standby manager daemon b started 2024-09-13T22:07:15.577 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:15 smithi138 bash[23295]: audit 2024-09-13T22:07:14.646325+0000 mon.b (mon.2) 2 : audit [DBG] from='mgr.? 172.21.15.96:0/4046705386' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-09-13T22:07:15.577 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:15 smithi138 bash[23295]: audit 2024-09-13T22:07:14.646777+0000 mon.b (mon.2) 3 : audit [DBG] from='mgr.? 172.21.15.96:0/4046705386' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-09-13T22:07:15.577 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:15 smithi138 bash[23295]: audit 2024-09-13T22:07:14.647606+0000 mon.b (mon.2) 4 : audit [DBG] from='mgr.? 172.21.15.96:0/4046705386' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-09-13T22:07:15.577 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:15 smithi138 bash[23295]: audit 2024-09-13T22:07:14.647941+0000 mon.b (mon.2) 5 : audit [DBG] from='mgr.? 172.21.15.96:0/4046705386' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-09-13T22:07:15.577 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:15 smithi138 bash[23295]: audit 2024-09-13T22:07:14.795693+0000 mon.a (mon.0) 368 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:16.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:16 smithi096 bash[23620]: cluster 2024-09-13T22:07:15.607646+0000 mon.a (mon.0) 369 : cluster [DBG] mgrmap e14: a(active, since 119s), standbys: b 2024-09-13T22:07:16.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:16 smithi096 bash[23620]: audit 2024-09-13T22:07:15.607889+0000 mon.a (mon.0) 370 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-09-13T22:07:16.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:16 smithi031 bash[22709]: cluster 2024-09-13T22:07:15.607646+0000 mon.a (mon.0) 369 : cluster [DBG] mgrmap e14: a(active, since 119s), standbys: b 2024-09-13T22:07:16.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:16 smithi031 bash[22709]: audit 2024-09-13T22:07:15.607889+0000 mon.a (mon.0) 370 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-09-13T22:07:17.076 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:16 smithi138 bash[23295]: cluster 2024-09-13T22:07:15.607646+0000 mon.a (mon.0) 369 : cluster [DBG] mgrmap e14: a(active, since 119s), standbys: b 2024-09-13T22:07:17.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:16 smithi138 bash[23295]: audit 2024-09-13T22:07:15.607889+0000 mon.a (mon.0) 370 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-09-13T22:07:17.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:17 smithi096 bash[23620]: cluster 2024-09-13T22:07:15.798651+0000 mgr.a (mgr.14150) 116 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:17.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:17 smithi096 bash[23620]: audit 2024-09-13T22:07:17.352095+0000 mon.a (mon.0) 371 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:17.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:17 smithi096 bash[23620]: audit 2024-09-13T22:07:17.359662+0000 mon.a (mon.0) 372 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:17.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:17 smithi096 bash[23620]: audit 2024-09-13T22:07:17.364662+0000 mon.a (mon.0) 373 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:07:17.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:17 smithi096 bash[23620]: audit 2024-09-13T22:07:17.369763+0000 mon.a (mon.0) 374 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:17.940 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:17 smithi096 bash[23620]: audit 2024-09-13T22:07:17.370367+0000 mon.a (mon.0) 375 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:07:17.940 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:17 smithi096 bash[23620]: audit 2024-09-13T22:07:17.372700+0000 mon.a (mon.0) 376 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:07:17.940 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:17 smithi096 bash[23620]: audit 2024-09-13T22:07:17.382505+0000 mon.a (mon.0) 377 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:17.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:17 smithi031 bash[22709]: cluster 2024-09-13T22:07:15.798651+0000 mgr.a (mgr.14150) 116 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:17.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:17 smithi031 bash[22709]: audit 2024-09-13T22:07:17.352095+0000 mon.a (mon.0) 371 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:17.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:17 smithi031 bash[22709]: audit 2024-09-13T22:07:17.359662+0000 mon.a (mon.0) 372 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:17.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:17 smithi031 bash[22709]: audit 2024-09-13T22:07:17.364662+0000 mon.a (mon.0) 373 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:07:17.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:17 smithi031 bash[22709]: audit 2024-09-13T22:07:17.369763+0000 mon.a (mon.0) 374 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:17.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:17 smithi031 bash[22709]: audit 2024-09-13T22:07:17.370367+0000 mon.a (mon.0) 375 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:07:17.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:17 smithi031 bash[22709]: audit 2024-09-13T22:07:17.372700+0000 mon.a (mon.0) 376 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:07:17.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:17 smithi031 bash[22709]: audit 2024-09-13T22:07:17.382505+0000 mon.a (mon.0) 377 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:18.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:17 smithi138 bash[23295]: cluster 2024-09-13T22:07:15.798651+0000 mgr.a (mgr.14150) 116 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:18.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:17 smithi138 bash[23295]: audit 2024-09-13T22:07:17.352095+0000 mon.a (mon.0) 371 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:18.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:17 smithi138 bash[23295]: audit 2024-09-13T22:07:17.359662+0000 mon.a (mon.0) 372 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:18.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:17 smithi138 bash[23295]: audit 2024-09-13T22:07:17.364662+0000 mon.a (mon.0) 373 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:07:18.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:17 smithi138 bash[23295]: audit 2024-09-13T22:07:17.369763+0000 mon.a (mon.0) 374 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:18.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:17 smithi138 bash[23295]: audit 2024-09-13T22:07:17.370367+0000 mon.a (mon.0) 375 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:07:18.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:17 smithi138 bash[23295]: audit 2024-09-13T22:07:17.372700+0000 mon.a (mon.0) 376 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:07:18.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:17 smithi138 bash[23295]: audit 2024-09-13T22:07:17.382505+0000 mon.a (mon.0) 377 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:18.957 INFO:teuthology.orchestra.run.smithi031.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T22:07:19.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:19 smithi096 bash[23620]: cluster 2024-09-13T22:07:17.799057+0000 mgr.a (mgr.14150) 117 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:19.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:19 smithi031 bash[22709]: cluster 2024-09-13T22:07:17.799057+0000 mgr.a (mgr.14150) 117 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:20.076 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:19 smithi138 bash[23295]: cluster 2024-09-13T22:07:17.799057+0000 mgr.a (mgr.14150) 117 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:20.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:20 smithi096 bash[23620]: audit 2024-09-13T22:07:20.340084+0000 mon.a (mon.0) 378 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-13T22:07:20.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:20 smithi096 bash[23620]: audit 2024-09-13T22:07:20.344287+0000 mon.a (mon.0) 379 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-13T22:07:20.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:20 smithi096 bash[23620]: audit 2024-09-13T22:07:20.345718+0000 mon.a (mon.0) 380 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:07:20.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:20 smithi031 bash[22709]: audit 2024-09-13T22:07:20.340084+0000 mon.a (mon.0) 378 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-13T22:07:20.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:20 smithi031 bash[22709]: audit 2024-09-13T22:07:20.344287+0000 mon.a (mon.0) 379 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-13T22:07:20.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:20 smithi031 bash[22709]: audit 2024-09-13T22:07:20.345718+0000 mon.a (mon.0) 380 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:07:21.076 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:20 smithi138 bash[23295]: audit 2024-09-13T22:07:20.340084+0000 mon.a (mon.0) 378 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-13T22:07:21.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:20 smithi138 bash[23295]: audit 2024-09-13T22:07:20.344287+0000 mon.a (mon.0) 379 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-13T22:07:21.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:20 smithi138 bash[23295]: audit 2024-09-13T22:07:20.345718+0000 mon.a (mon.0) 380 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:07:21.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:21 smithi138 bash[23295]: cluster 2024-09-13T22:07:19.799465+0000 mgr.a (mgr.14150) 118 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:21.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:21 smithi138 bash[23295]: audit 2024-09-13T22:07:20.333187+0000 mgr.a (mgr.14150) 119 : audit [DBG] from='client.14205 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi031:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:07:21.938 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:21 smithi096 bash[23620]: cluster 2024-09-13T22:07:19.799465+0000 mgr.a (mgr.14150) 118 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:21.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:21 smithi096 bash[23620]: audit 2024-09-13T22:07:20.333187+0000 mgr.a (mgr.14150) 119 : audit [DBG] from='client.14205 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi031:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:07:21.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:21 smithi031 bash[22709]: cluster 2024-09-13T22:07:19.799465+0000 mgr.a (mgr.14150) 118 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:21.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:21 smithi031 bash[22709]: audit 2024-09-13T22:07:20.333187+0000 mgr.a (mgr.14150) 119 : audit [DBG] from='client.14205 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi031:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:07:23.881 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:23 smithi138 bash[23295]: cluster 2024-09-13T22:07:21.799924+0000 mgr.a (mgr.14150) 120 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:23.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:23 smithi096 bash[23620]: cluster 2024-09-13T22:07:21.799924+0000 mgr.a (mgr.14150) 120 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:23.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:23 smithi031 bash[22709]: cluster 2024-09-13T22:07:21.799924+0000 mgr.a (mgr.14150) 120 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:25.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:25 smithi096 bash[23620]: cluster 2024-09-13T22:07:23.800446+0000 mgr.a (mgr.14150) 121 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:25.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:25 smithi031 bash[22709]: cluster 2024-09-13T22:07:23.800446+0000 mgr.a (mgr.14150) 121 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:26.076 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:25 smithi138 bash[23295]: cluster 2024-09-13T22:07:23.800446+0000 mgr.a (mgr.14150) 121 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:27.721 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:27 smithi031 bash[22709]: cluster 2024-09-13T22:07:25.800888+0000 mgr.a (mgr.14150) 122 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:27.721 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:27 smithi031 bash[22709]: audit 2024-09-13T22:07:26.576980+0000 mon.a (mon.0) 381 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:27.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:27 smithi031 bash[22709]: audit 2024-09-13T22:07:26.585589+0000 mon.a (mon.0) 382 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:27.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:27 smithi031 bash[22709]: audit 2024-09-13T22:07:26.596133+0000 mon.a (mon.0) 383 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:27.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:27 smithi138 bash[23295]: cluster 2024-09-13T22:07:25.800888+0000 mgr.a (mgr.14150) 122 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:27.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:27 smithi138 bash[23295]: audit 2024-09-13T22:07:26.576980+0000 mon.a (mon.0) 381 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:27.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:27 smithi138 bash[23295]: audit 2024-09-13T22:07:26.585589+0000 mon.a (mon.0) 382 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:27.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:27 smithi138 bash[23295]: audit 2024-09-13T22:07:26.596133+0000 mon.a (mon.0) 383 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:27.940 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:27 smithi096 bash[23620]: cluster 2024-09-13T22:07:25.800888+0000 mgr.a (mgr.14150) 122 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:27.940 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:27 smithi096 bash[23620]: audit 2024-09-13T22:07:26.576980+0000 mon.a (mon.0) 381 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:27.940 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:27 smithi096 bash[23620]: audit 2024-09-13T22:07:26.585589+0000 mon.a (mon.0) 382 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:27.941 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:27 smithi096 bash[23620]: audit 2024-09-13T22:07:26.596133+0000 mon.a (mon.0) 383 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:29.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:29 smithi096 bash[23620]: cluster 2024-09-13T22:07:27.801245+0000 mgr.a (mgr.14150) 123 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:29.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:29 smithi096 bash[23620]: audit 2024-09-13T22:07:29.101754+0000 mon.a (mon.0) 384 : audit [INF] from='client.? 172.21.15.31:0/2994709181' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "49a6c717-a095-4433-904b-3adf4b60aa21"}]: dispatch 2024-09-13T22:07:29.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:29 smithi096 bash[23620]: audit 2024-09-13T22:07:29.104162+0000 mon.a (mon.0) 385 : audit [INF] from='client.? 172.21.15.31:0/2994709181' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "49a6c717-a095-4433-904b-3adf4b60aa21"}]': finished 2024-09-13T22:07:29.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:29 smithi096 bash[23620]: cluster 2024-09-13T22:07:29.107585+0000 mon.a (mon.0) 386 : cluster [DBG] osdmap e5: 1 total, 0 up, 1 in 2024-09-13T22:07:29.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:29 smithi096 bash[23620]: audit 2024-09-13T22:07:29.107958+0000 mon.a (mon.0) 387 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-13T22:07:29.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:29 smithi031 bash[22709]: cluster 2024-09-13T22:07:27.801245+0000 mgr.a (mgr.14150) 123 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:29.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:29 smithi031 bash[22709]: audit 2024-09-13T22:07:29.101754+0000 mon.a (mon.0) 384 : audit [INF] from='client.? 172.21.15.31:0/2994709181' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "49a6c717-a095-4433-904b-3adf4b60aa21"}]: dispatch 2024-09-13T22:07:29.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:29 smithi031 bash[22709]: audit 2024-09-13T22:07:29.104162+0000 mon.a (mon.0) 385 : audit [INF] from='client.? 172.21.15.31:0/2994709181' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "49a6c717-a095-4433-904b-3adf4b60aa21"}]': finished 2024-09-13T22:07:29.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:29 smithi031 bash[22709]: cluster 2024-09-13T22:07:29.107585+0000 mon.a (mon.0) 386 : cluster [DBG] osdmap e5: 1 total, 0 up, 1 in 2024-09-13T22:07:29.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:29 smithi031 bash[22709]: audit 2024-09-13T22:07:29.107958+0000 mon.a (mon.0) 387 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-13T22:07:30.076 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:29 smithi138 bash[23295]: cluster 2024-09-13T22:07:27.801245+0000 mgr.a (mgr.14150) 123 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:30.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:29 smithi138 bash[23295]: audit 2024-09-13T22:07:29.101754+0000 mon.a (mon.0) 384 : audit [INF] from='client.? 172.21.15.31:0/2994709181' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "49a6c717-a095-4433-904b-3adf4b60aa21"}]: dispatch 2024-09-13T22:07:30.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:29 smithi138 bash[23295]: audit 2024-09-13T22:07:29.104162+0000 mon.a (mon.0) 385 : audit [INF] from='client.? 172.21.15.31:0/2994709181' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "49a6c717-a095-4433-904b-3adf4b60aa21"}]': finished 2024-09-13T22:07:30.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:29 smithi138 bash[23295]: cluster 2024-09-13T22:07:29.107585+0000 mon.a (mon.0) 386 : cluster [DBG] osdmap e5: 1 total, 0 up, 1 in 2024-09-13T22:07:30.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:29 smithi138 bash[23295]: audit 2024-09-13T22:07:29.107958+0000 mon.a (mon.0) 387 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-13T22:07:30.933 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:30 smithi096 bash[23620]: audit 2024-09-13T22:07:29.714982+0000 mon.a (mon.0) 388 : audit [DBG] from='client.? 172.21.15.31:0/1754790483' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-13T22:07:30.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:30 smithi031 bash[22709]: audit 2024-09-13T22:07:29.714982+0000 mon.a (mon.0) 388 : audit [DBG] from='client.? 172.21.15.31:0/1754790483' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-13T22:07:31.076 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:30 smithi138 bash[23295]: audit 2024-09-13T22:07:29.714982+0000 mon.a (mon.0) 388 : audit [DBG] from='client.? 172.21.15.31:0/1754790483' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-13T22:07:31.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:31 smithi096 bash[23620]: cluster 2024-09-13T22:07:29.801569+0000 mgr.a (mgr.14150) 124 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:31.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:31 smithi096 bash[23620]: audit 2024-09-13T22:07:30.795543+0000 mon.a (mon.0) 389 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:31.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:31 smithi096 bash[23620]: audit 2024-09-13T22:07:30.800582+0000 mon.a (mon.0) 390 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:31.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:31 smithi096 bash[23620]: audit 2024-09-13T22:07:30.808652+0000 mon.a (mon.0) 391 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:31.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:31 smithi031 bash[22709]: cluster 2024-09-13T22:07:29.801569+0000 mgr.a (mgr.14150) 124 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:31.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:31 smithi031 bash[22709]: audit 2024-09-13T22:07:30.795543+0000 mon.a (mon.0) 389 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:31.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:31 smithi031 bash[22709]: audit 2024-09-13T22:07:30.800582+0000 mon.a (mon.0) 390 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:31.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:31 smithi031 bash[22709]: audit 2024-09-13T22:07:30.808652+0000 mon.a (mon.0) 391 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:32.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:31 smithi138 bash[23295]: cluster 2024-09-13T22:07:29.801569+0000 mgr.a (mgr.14150) 124 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:32.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:31 smithi138 bash[23295]: audit 2024-09-13T22:07:30.795543+0000 mon.a (mon.0) 389 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:32.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:31 smithi138 bash[23295]: audit 2024-09-13T22:07:30.800582+0000 mon.a (mon.0) 390 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:32.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:31 smithi138 bash[23295]: audit 2024-09-13T22:07:30.808652+0000 mon.a (mon.0) 391 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:33.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:33 smithi096 bash[23620]: cluster 2024-09-13T22:07:31.801882+0000 mgr.a (mgr.14150) 125 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:33.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:33 smithi031 bash[22709]: cluster 2024-09-13T22:07:31.801882+0000 mgr.a (mgr.14150) 125 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:34.076 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:33 smithi138 bash[23295]: cluster 2024-09-13T22:07:31.801882+0000 mgr.a (mgr.14150) 125 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:35.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:35 smithi096 bash[23620]: cluster 2024-09-13T22:07:33.802412+0000 mgr.a (mgr.14150) 126 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:35.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:35 smithi031 bash[22709]: cluster 2024-09-13T22:07:33.802412+0000 mgr.a (mgr.14150) 126 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:36.076 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:35 smithi138 bash[23295]: cluster 2024-09-13T22:07:33.802412+0000 mgr.a (mgr.14150) 126 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:37.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:37 smithi096 bash[23620]: cluster 2024-09-13T22:07:35.802766+0000 mgr.a (mgr.14150) 127 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:37.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:37 smithi096 bash[23620]: audit 2024-09-13T22:07:37.548457+0000 mon.a (mon.0) 392 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:37.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:37 smithi096 bash[23620]: audit 2024-09-13T22:07:37.556509+0000 mon.a (mon.0) 393 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:37.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:37 smithi096 bash[23620]: audit 2024-09-13T22:07:37.566179+0000 mon.a (mon.0) 394 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:37.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:37 smithi031 bash[22709]: cluster 2024-09-13T22:07:35.802766+0000 mgr.a (mgr.14150) 127 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:37.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:37 smithi031 bash[22709]: audit 2024-09-13T22:07:37.548457+0000 mon.a (mon.0) 392 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:37.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:37 smithi031 bash[22709]: audit 2024-09-13T22:07:37.556509+0000 mon.a (mon.0) 393 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:37.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:37 smithi031 bash[22709]: audit 2024-09-13T22:07:37.566179+0000 mon.a (mon.0) 394 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:38.076 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:37 smithi138 bash[23295]: cluster 2024-09-13T22:07:35.802766+0000 mgr.a (mgr.14150) 127 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:38.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:37 smithi138 bash[23295]: audit 2024-09-13T22:07:37.548457+0000 mon.a (mon.0) 392 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:38.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:37 smithi138 bash[23295]: audit 2024-09-13T22:07:37.556509+0000 mon.a (mon.0) 393 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:38.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:37 smithi138 bash[23295]: audit 2024-09-13T22:07:37.566179+0000 mon.a (mon.0) 394 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:39.877 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:39 smithi031 bash[22709]: cluster 2024-09-13T22:07:37.803140+0000 mgr.a (mgr.14150) 128 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:39.938 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:39 smithi096 bash[23620]: cluster 2024-09-13T22:07:37.803140+0000 mgr.a (mgr.14150) 128 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:40.076 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:39 smithi138 bash[23295]: cluster 2024-09-13T22:07:37.803140+0000 mgr.a (mgr.14150) 128 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:41.869 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:41 smithi031 bash[22709]: cluster 2024-09-13T22:07:39.803575+0000 mgr.a (mgr.14150) 129 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:41.938 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:41 smithi096 bash[23620]: cluster 2024-09-13T22:07:39.803575+0000 mgr.a (mgr.14150) 129 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:42.076 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:41 smithi138 bash[23295]: cluster 2024-09-13T22:07:39.803575+0000 mgr.a (mgr.14150) 129 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:43.938 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:43 smithi096 bash[23620]: cluster 2024-09-13T22:07:41.803984+0000 mgr.a (mgr.14150) 130 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:43.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:43 smithi096 bash[23620]: audit 2024-09-13T22:07:43.213947+0000 mon.a (mon.0) 395 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-13T22:07:43.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:43 smithi096 bash[23620]: audit 2024-09-13T22:07:43.215569+0000 mon.a (mon.0) 396 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:07:43.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:43 smithi031 bash[22709]: cluster 2024-09-13T22:07:41.803984+0000 mgr.a (mgr.14150) 130 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:43.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:43 smithi031 bash[22709]: audit 2024-09-13T22:07:43.213947+0000 mon.a (mon.0) 395 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-13T22:07:43.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:43 smithi031 bash[22709]: audit 2024-09-13T22:07:43.215569+0000 mon.a (mon.0) 396 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:07:44.076 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:43 smithi138 bash[23295]: cluster 2024-09-13T22:07:41.803984+0000 mgr.a (mgr.14150) 130 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:44.076 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:43 smithi138 bash[23295]: audit 2024-09-13T22:07:43.213947+0000 mon.a (mon.0) 395 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-13T22:07:44.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:43 smithi138 bash[23295]: audit 2024-09-13T22:07:43.215569+0000 mon.a (mon.0) 396 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:07:44.721 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:44 smithi031 bash[22709]: cephadm 2024-09-13T22:07:43.217123+0000 mgr.a (mgr.14150) 131 : cephadm [INF] Deploying daemon osd.0 on smithi031 2024-09-13T22:07:44.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:44 smithi138 bash[23295]: cephadm 2024-09-13T22:07:43.217123+0000 mgr.a (mgr.14150) 131 : cephadm [INF] Deploying daemon osd.0 on smithi031 2024-09-13T22:07:44.938 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:44 smithi096 bash[23620]: cephadm 2024-09-13T22:07:43.217123+0000 mgr.a (mgr.14150) 131 : cephadm [INF] Deploying daemon osd.0 on smithi031 2024-09-13T22:07:45.938 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:45 smithi096 bash[23620]: cluster 2024-09-13T22:07:43.804359+0000 mgr.a (mgr.14150) 132 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:45.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:45 smithi031 bash[22709]: cluster 2024-09-13T22:07:43.804359+0000 mgr.a (mgr.14150) 132 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:46.076 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:45 smithi138 bash[23295]: cluster 2024-09-13T22:07:43.804359+0000 mgr.a (mgr.14150) 132 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:47.938 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:47 smithi096 bash[23620]: cluster 2024-09-13T22:07:45.804715+0000 mgr.a (mgr.14150) 133 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:47.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:47 smithi096 bash[23620]: audit 2024-09-13T22:07:46.783370+0000 mon.a (mon.0) 397 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:47.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:47 smithi096 bash[23620]: audit 2024-09-13T22:07:46.788181+0000 mon.a (mon.0) 398 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:47.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:47 smithi096 bash[23620]: audit 2024-09-13T22:07:46.794622+0000 mon.a (mon.0) 399 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:47.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:47 smithi031 bash[22709]: cluster 2024-09-13T22:07:45.804715+0000 mgr.a (mgr.14150) 133 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:47.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:47 smithi031 bash[22709]: audit 2024-09-13T22:07:46.783370+0000 mon.a (mon.0) 397 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:47.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:47 smithi031 bash[22709]: audit 2024-09-13T22:07:46.788181+0000 mon.a (mon.0) 398 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:47.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:47 smithi031 bash[22709]: audit 2024-09-13T22:07:46.794622+0000 mon.a (mon.0) 399 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:48.076 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:47 smithi138 bash[23295]: cluster 2024-09-13T22:07:45.804715+0000 mgr.a (mgr.14150) 133 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:48.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:47 smithi138 bash[23295]: audit 2024-09-13T22:07:46.783370+0000 mon.a (mon.0) 397 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:48.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:47 smithi138 bash[23295]: audit 2024-09-13T22:07:46.788181+0000 mon.a (mon.0) 398 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:48.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:47 smithi138 bash[23295]: audit 2024-09-13T22:07:46.794622+0000 mon.a (mon.0) 399 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:49.830 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:07:49 smithi031 systemd[1]: /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-13T22:07:49.830 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:49 smithi031 bash[22709]: cluster 2024-09-13T22:07:47.805096+0000 mgr.a (mgr.14150) 134 : cluster [DBG] pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:49.831 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:49 smithi031 systemd[1]: /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-13T22:07:49.917 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:49 smithi096 bash[23620]: cluster 2024-09-13T22:07:47.805096+0000 mgr.a (mgr.14150) 134 : cluster [DBG] pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:50.076 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:49 smithi138 bash[23295]: cluster 2024-09-13T22:07:47.805096+0000 mgr.a (mgr.14150) 134 : cluster [DBG] pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:50.161 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:07:49 smithi031 systemd[1]: /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-13T22:07:50.161 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:49 smithi031 systemd[1]: /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-13T22:07:50.906 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:50 smithi096 bash[23620]: audit 2024-09-13T22:07:50.090650+0000 mon.a (mon.0) 400 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:07:50.906 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:50 smithi096 bash[23620]: audit 2024-09-13T22:07:50.094945+0000 mon.a (mon.0) 401 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:50.906 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:50 smithi096 bash[23620]: audit 2024-09-13T22:07:50.095254+0000 mon.a (mon.0) 402 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:07:50.906 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:50 smithi096 bash[23620]: audit 2024-09-13T22:07:50.096485+0000 mon.a (mon.0) 403 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:07:50.907 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:50 smithi096 bash[23620]: audit 2024-09-13T22:07:50.099802+0000 mon.a (mon.0) 404 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:50.907 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:50 smithi096 bash[23620]: audit 2024-09-13T22:07:50.107166+0000 mon.a (mon.0) 405 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:50.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:50 smithi031 bash[22709]: audit 2024-09-13T22:07:50.090650+0000 mon.a (mon.0) 400 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:07:50.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:50 smithi031 bash[22709]: audit 2024-09-13T22:07:50.094945+0000 mon.a (mon.0) 401 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:50.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:50 smithi031 bash[22709]: audit 2024-09-13T22:07:50.095254+0000 mon.a (mon.0) 402 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:07:50.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:50 smithi031 bash[22709]: audit 2024-09-13T22:07:50.096485+0000 mon.a (mon.0) 403 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:07:50.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:50 smithi031 bash[22709]: audit 2024-09-13T22:07:50.099802+0000 mon.a (mon.0) 404 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:50.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:50 smithi031 bash[22709]: audit 2024-09-13T22:07:50.107166+0000 mon.a (mon.0) 405 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:51.076 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:50 smithi138 bash[23295]: audit 2024-09-13T22:07:50.090650+0000 mon.a (mon.0) 400 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:07:51.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:50 smithi138 bash[23295]: audit 2024-09-13T22:07:50.094945+0000 mon.a (mon.0) 401 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:51.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:50 smithi138 bash[23295]: audit 2024-09-13T22:07:50.095254+0000 mon.a (mon.0) 402 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:07:51.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:50 smithi138 bash[23295]: audit 2024-09-13T22:07:50.096485+0000 mon.a (mon.0) 403 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:07:51.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:50 smithi138 bash[23295]: audit 2024-09-13T22:07:50.099802+0000 mon.a (mon.0) 404 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:51.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:50 smithi138 bash[23295]: audit 2024-09-13T22:07:50.107166+0000 mon.a (mon.0) 405 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:51.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:51 smithi096 bash[23620]: cluster 2024-09-13T22:07:49.805396+0000 mgr.a (mgr.14150) 135 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:51.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:51 smithi096 bash[23620]: audit 2024-09-13T22:07:50.966333+0000 mon.a (mon.0) 406 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:51.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:51 smithi096 bash[23620]: audit 2024-09-13T22:07:50.973549+0000 mon.a (mon.0) 407 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:51.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:51 smithi096 bash[23620]: audit 2024-09-13T22:07:50.976208+0000 mon.a (mon.0) 408 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:07:51.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:51 smithi096 bash[23620]: audit 2024-09-13T22:07:50.979049+0000 mon.a (mon.0) 409 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:51.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:51 smithi096 bash[23620]: audit 2024-09-13T22:07:50.979885+0000 mon.a (mon.0) 410 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:07:51.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:51 smithi096 bash[23620]: audit 2024-09-13T22:07:50.981303+0000 mon.a (mon.0) 411 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:07:51.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:51 smithi096 bash[23620]: audit 2024-09-13T22:07:50.989427+0000 mon.a (mon.0) 412 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:51.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:51 smithi031 bash[22709]: cluster 2024-09-13T22:07:49.805396+0000 mgr.a (mgr.14150) 135 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:51.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:51 smithi031 bash[22709]: audit 2024-09-13T22:07:50.966333+0000 mon.a (mon.0) 406 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:51.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:51 smithi031 bash[22709]: audit 2024-09-13T22:07:50.973549+0000 mon.a (mon.0) 407 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:51.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:51 smithi031 bash[22709]: audit 2024-09-13T22:07:50.976208+0000 mon.a (mon.0) 408 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:07:51.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:51 smithi031 bash[22709]: audit 2024-09-13T22:07:50.979049+0000 mon.a (mon.0) 409 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:51.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:51 smithi031 bash[22709]: audit 2024-09-13T22:07:50.979885+0000 mon.a (mon.0) 410 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:07:51.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:51 smithi031 bash[22709]: audit 2024-09-13T22:07:50.981303+0000 mon.a (mon.0) 411 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:07:51.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:51 smithi031 bash[22709]: audit 2024-09-13T22:07:50.989427+0000 mon.a (mon.0) 412 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:52.076 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:51 smithi138 bash[23295]: cluster 2024-09-13T22:07:49.805396+0000 mgr.a (mgr.14150) 135 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:52.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:51 smithi138 bash[23295]: audit 2024-09-13T22:07:50.966333+0000 mon.a (mon.0) 406 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:52.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:51 smithi138 bash[23295]: audit 2024-09-13T22:07:50.973549+0000 mon.a (mon.0) 407 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:52.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:51 smithi138 bash[23295]: audit 2024-09-13T22:07:50.976208+0000 mon.a (mon.0) 408 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:07:52.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:51 smithi138 bash[23295]: audit 2024-09-13T22:07:50.979049+0000 mon.a (mon.0) 409 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:52.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:51 smithi138 bash[23295]: audit 2024-09-13T22:07:50.979885+0000 mon.a (mon.0) 410 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:07:52.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:51 smithi138 bash[23295]: audit 2024-09-13T22:07:50.981303+0000 mon.a (mon.0) 411 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:07:52.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:51 smithi138 bash[23295]: audit 2024-09-13T22:07:50.989427+0000 mon.a (mon.0) 412 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:52.938 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:52 smithi096 bash[23620]: cephadm 2024-09-13T22:07:50.975180+0000 mgr.a (mgr.14150) 136 : cephadm [INF] Detected new or changed devices on smithi031 2024-09-13T22:07:52.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:52 smithi031 bash[22709]: cephadm 2024-09-13T22:07:50.975180+0000 mgr.a (mgr.14150) 136 : cephadm [INF] Detected new or changed devices on smithi031 2024-09-13T22:07:53.076 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:52 smithi138 bash[23295]: cephadm 2024-09-13T22:07:50.975180+0000 mgr.a (mgr.14150) 136 : cephadm [INF] Detected new or changed devices on smithi031 2024-09-13T22:07:53.938 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:53 smithi096 bash[23620]: cluster 2024-09-13T22:07:51.805786+0000 mgr.a (mgr.14150) 137 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:53.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:53 smithi031 bash[22709]: cluster 2024-09-13T22:07:51.805786+0000 mgr.a (mgr.14150) 137 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:54.076 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:53 smithi138 bash[23295]: cluster 2024-09-13T22:07:51.805786+0000 mgr.a (mgr.14150) 137 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:55.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:55 smithi096 bash[23620]: cluster 2024-09-13T22:07:53.806090+0000 mgr.a (mgr.14150) 138 : cluster [DBG] pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:55.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:55 smithi031 bash[22709]: cluster 2024-09-13T22:07:53.806090+0000 mgr.a (mgr.14150) 138 : cluster [DBG] pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:56.076 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:55 smithi138 bash[23295]: cluster 2024-09-13T22:07:53.806090+0000 mgr.a (mgr.14150) 138 : cluster [DBG] pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:57.721 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:57 smithi031 bash[22709]: cluster 2024-09-13T22:07:55.806499+0000 mgr.a (mgr.14150) 139 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:57.721 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:57 smithi031 bash[22709]: audit 2024-09-13T22:07:56.769708+0000 mon.a (mon.0) 413 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:57.721 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:57 smithi031 bash[22709]: audit 2024-09-13T22:07:56.775600+0000 mon.a (mon.0) 414 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:57.721 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:57 smithi031 bash[22709]: audit 2024-09-13T22:07:56.777451+0000 mon.a (mon.0) 415 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:07:57.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:57 smithi031 bash[22709]: audit 2024-09-13T22:07:56.779267+0000 mon.a (mon.0) 416 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:07:57.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:57 smithi031 bash[22709]: audit 2024-09-13T22:07:56.779924+0000 mon.a (mon.0) 417 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:07:57.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:57 smithi031 bash[22709]: audit 2024-09-13T22:07:56.782427+0000 mon.a (mon.0) 418 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:57.722 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:57 smithi031 bash[22709]: audit 2024-09-13T22:07:56.787458+0000 mon.a (mon.0) 419 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:57.938 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:57 smithi096 bash[23620]: cluster 2024-09-13T22:07:55.806499+0000 mgr.a (mgr.14150) 139 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:57.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:57 smithi096 bash[23620]: audit 2024-09-13T22:07:56.769708+0000 mon.a (mon.0) 413 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:57.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:57 smithi096 bash[23620]: audit 2024-09-13T22:07:56.775600+0000 mon.a (mon.0) 414 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:57.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:57 smithi096 bash[23620]: audit 2024-09-13T22:07:56.777451+0000 mon.a (mon.0) 415 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:07:57.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:57 smithi096 bash[23620]: audit 2024-09-13T22:07:56.779267+0000 mon.a (mon.0) 416 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:07:57.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:57 smithi096 bash[23620]: audit 2024-09-13T22:07:56.779924+0000 mon.a (mon.0) 417 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:07:57.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:57 smithi096 bash[23620]: audit 2024-09-13T22:07:56.782427+0000 mon.a (mon.0) 418 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:57.939 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:57 smithi096 bash[23620]: audit 2024-09-13T22:07:56.787458+0000 mon.a (mon.0) 419 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:58.076 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:57 smithi138 bash[23295]: cluster 2024-09-13T22:07:55.806499+0000 mgr.a (mgr.14150) 139 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:07:58.076 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:57 smithi138 bash[23295]: audit 2024-09-13T22:07:56.769708+0000 mon.a (mon.0) 413 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:58.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:57 smithi138 bash[23295]: audit 2024-09-13T22:07:56.775600+0000 mon.a (mon.0) 414 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:58.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:57 smithi138 bash[23295]: audit 2024-09-13T22:07:56.777451+0000 mon.a (mon.0) 415 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:07:58.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:57 smithi138 bash[23295]: audit 2024-09-13T22:07:56.779267+0000 mon.a (mon.0) 416 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:07:58.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:57 smithi138 bash[23295]: audit 2024-09-13T22:07:56.779924+0000 mon.a (mon.0) 417 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:07:58.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:57 smithi138 bash[23295]: audit 2024-09-13T22:07:56.782427+0000 mon.a (mon.0) 418 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:58.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:57 smithi138 bash[23295]: audit 2024-09-13T22:07:56.787458+0000 mon.a (mon.0) 419 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:59.076 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:58 smithi138 bash[23295]: audit 2024-09-13T22:07:57.745357+0000 mon.a (mon.0) 420 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:59.076 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:58 smithi138 bash[23295]: audit 2024-09-13T22:07:57.753367+0000 mon.a (mon.0) 421 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:59.076 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:58 smithi138 bash[23295]: audit 2024-09-13T22:07:57.763871+0000 mon.a (mon.0) 422 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:59.093 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:58 smithi031 bash[22709]: audit 2024-09-13T22:07:57.745357+0000 mon.a (mon.0) 420 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:59.093 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:58 smithi031 bash[22709]: audit 2024-09-13T22:07:57.753367+0000 mon.a (mon.0) 421 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:59.093 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:58 smithi031 bash[22709]: audit 2024-09-13T22:07:57.763871+0000 mon.a (mon.0) 422 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:59.188 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:58 smithi096 bash[23620]: audit 2024-09-13T22:07:57.745357+0000 mon.a (mon.0) 420 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:59.188 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:58 smithi096 bash[23620]: audit 2024-09-13T22:07:57.753367+0000 mon.a (mon.0) 421 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:07:59.188 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:58 smithi096 bash[23620]: audit 2024-09-13T22:07:57.763871+0000 mon.a (mon.0) 422 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:00.076 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:07:59 smithi138 bash[23295]: cluster 2024-09-13T22:07:57.806865+0000 mgr.a (mgr.14150) 140 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:08:00.108 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:07:59 smithi031 bash[22709]: cluster 2024-09-13T22:07:57.806865+0000 mgr.a (mgr.14150) 140 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:08:00.188 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:07:59 smithi096 bash[23620]: cluster 2024-09-13T22:07:57.806865+0000 mgr.a (mgr.14150) 140 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:08:01.076 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:00 smithi138 bash[23295]: audit 2024-09-13T22:08:00.112681+0000 mon.a (mon.0) 423 : audit [INF] from='osd.0 [v2:172.21.15.31:6802/3485172371,v1:172.21.15.31:6803/3485172371]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-13T22:08:01.125 INFO:teuthology.orchestra.run.smithi031.stdout:Created osd(s) 0 on host 'smithi031' 2024-09-13T22:08:01.141 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:00 smithi031 bash[22709]: audit 2024-09-13T22:08:00.112681+0000 mon.a (mon.0) 423 : audit [INF] from='osd.0 [v2:172.21.15.31:6802/3485172371,v1:172.21.15.31:6803/3485172371]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-13T22:08:01.188 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:00 smithi096 bash[23620]: audit 2024-09-13T22:08:00.112681+0000 mon.a (mon.0) 423 : audit [INF] from='osd.0 [v2:172.21.15.31:6802/3485172371,v1:172.21.15.31:6803/3485172371]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-13T22:08:01.756 DEBUG:teuthology.orchestra.run.smithi031:osd.0> sudo journalctl -f -n 0 -u ceph-89616338-721b-11ef-bceb-c7b262605968@osd.0.service 2024-09-13T22:08:01.759 INFO:tasks.cephadm:Deploying osd.1 on smithi031 with /dev/vg_nvme/lv_3... 2024-09-13T22:08:01.759 DEBUG:teuthology.orchestra.run.smithi031:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 89616338-721b-11ef-bceb-c7b262605968 -- lvm zap /dev/vg_nvme/lv_3 2024-09-13T22:08:02.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:01 smithi138 bash[23295]: cluster 2024-09-13T22:07:59.807197+0000 mgr.a (mgr.14150) 141 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:08:02.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:01 smithi138 bash[23295]: audit 2024-09-13T22:08:00.754636+0000 mon.a (mon.0) 424 : audit [INF] from='osd.0 [v2:172.21.15.31:6802/3485172371,v1:172.21.15.31:6803/3485172371]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-13T22:08:02.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:01 smithi138 bash[23295]: cluster 2024-09-13T22:08:00.759056+0000 mon.a (mon.0) 425 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-13T22:08:02.078 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:01 smithi138 bash[23295]: audit 2024-09-13T22:08:00.759538+0000 mon.a (mon.0) 426 : audit [INF] from='osd.0 [v2:172.21.15.31:6802/3485172371,v1:172.21.15.31:6803/3485172371]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi031", "root=default"]}]: dispatch 2024-09-13T22:08:02.078 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:01 smithi138 bash[23295]: audit 2024-09-13T22:08:00.760037+0000 mon.a (mon.0) 427 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-13T22:08:02.078 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:01 smithi138 bash[23295]: audit 2024-09-13T22:08:01.114380+0000 mon.a (mon.0) 428 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:08:02.078 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:01 smithi138 bash[23295]: audit 2024-09-13T22:08:01.118701+0000 mon.a (mon.0) 429 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:02.078 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:01 smithi138 bash[23295]: audit 2024-09-13T22:08:01.120025+0000 mon.a (mon.0) 430 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-13T22:08:02.078 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:01 smithi138 bash[23295]: audit 2024-09-13T22:08:01.124862+0000 mon.a (mon.0) 431 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:02.078 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:01 smithi138 bash[23295]: audit 2024-09-13T22:08:01.132374+0000 mon.a (mon.0) 432 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:02.078 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:01 smithi138 bash[23295]: audit 2024-09-13T22:08:01.135825+0000 mon.a (mon.0) 433 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:08:02.079 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:01 smithi138 bash[23295]: audit 2024-09-13T22:08:01.137043+0000 mon.a (mon.0) 434 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:08:02.079 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:01 smithi138 bash[23295]: audit 2024-09-13T22:08:01.144633+0000 mon.a (mon.0) 435 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:02.189 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:01 smithi096 bash[23620]: cluster 2024-09-13T22:07:59.807197+0000 mgr.a (mgr.14150) 141 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:08:02.189 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:01 smithi096 bash[23620]: audit 2024-09-13T22:08:00.754636+0000 mon.a (mon.0) 424 : audit [INF] from='osd.0 [v2:172.21.15.31:6802/3485172371,v1:172.21.15.31:6803/3485172371]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-13T22:08:02.189 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:01 smithi096 bash[23620]: cluster 2024-09-13T22:08:00.759056+0000 mon.a (mon.0) 425 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-13T22:08:02.189 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:01 smithi096 bash[23620]: audit 2024-09-13T22:08:00.759538+0000 mon.a (mon.0) 426 : audit [INF] from='osd.0 [v2:172.21.15.31:6802/3485172371,v1:172.21.15.31:6803/3485172371]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi031", "root=default"]}]: dispatch 2024-09-13T22:08:02.189 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:01 smithi096 bash[23620]: audit 2024-09-13T22:08:00.760037+0000 mon.a (mon.0) 427 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-13T22:08:02.189 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:01 smithi096 bash[23620]: audit 2024-09-13T22:08:01.114380+0000 mon.a (mon.0) 428 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:08:02.189 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:01 smithi096 bash[23620]: audit 2024-09-13T22:08:01.118701+0000 mon.a (mon.0) 429 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:02.189 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:01 smithi096 bash[23620]: audit 2024-09-13T22:08:01.120025+0000 mon.a (mon.0) 430 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-13T22:08:02.189 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:01 smithi096 bash[23620]: audit 2024-09-13T22:08:01.124862+0000 mon.a (mon.0) 431 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:02.189 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:01 smithi096 bash[23620]: audit 2024-09-13T22:08:01.132374+0000 mon.a (mon.0) 432 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:02.189 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:01 smithi096 bash[23620]: audit 2024-09-13T22:08:01.135825+0000 mon.a (mon.0) 433 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:08:02.190 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:01 smithi096 bash[23620]: audit 2024-09-13T22:08:01.137043+0000 mon.a (mon.0) 434 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:08:02.190 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:01 smithi096 bash[23620]: audit 2024-09-13T22:08:01.144633+0000 mon.a (mon.0) 435 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:02.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:01 smithi031 bash[22709]: cluster 2024-09-13T22:07:59.807197+0000 mgr.a (mgr.14150) 141 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:08:02.222 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:01 smithi031 bash[22709]: audit 2024-09-13T22:08:00.754636+0000 mon.a (mon.0) 424 : audit [INF] from='osd.0 [v2:172.21.15.31:6802/3485172371,v1:172.21.15.31:6803/3485172371]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-13T22:08:02.222 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:01 smithi031 bash[22709]: cluster 2024-09-13T22:08:00.759056+0000 mon.a (mon.0) 425 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-13T22:08:02.222 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:01 smithi031 bash[22709]: audit 2024-09-13T22:08:00.759538+0000 mon.a (mon.0) 426 : audit [INF] from='osd.0 [v2:172.21.15.31:6802/3485172371,v1:172.21.15.31:6803/3485172371]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi031", "root=default"]}]: dispatch 2024-09-13T22:08:02.222 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:01 smithi031 bash[22709]: audit 2024-09-13T22:08:00.760037+0000 mon.a (mon.0) 427 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-13T22:08:02.222 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:01 smithi031 bash[22709]: audit 2024-09-13T22:08:01.114380+0000 mon.a (mon.0) 428 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:08:02.222 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:01 smithi031 bash[22709]: audit 2024-09-13T22:08:01.118701+0000 mon.a (mon.0) 429 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:02.222 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:01 smithi031 bash[22709]: audit 2024-09-13T22:08:01.120025+0000 mon.a (mon.0) 430 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-13T22:08:02.222 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:01 smithi031 bash[22709]: audit 2024-09-13T22:08:01.124862+0000 mon.a (mon.0) 431 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:02.222 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:01 smithi031 bash[22709]: audit 2024-09-13T22:08:01.132374+0000 mon.a (mon.0) 432 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:02.222 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:01 smithi031 bash[22709]: audit 2024-09-13T22:08:01.135825+0000 mon.a (mon.0) 433 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:08:02.222 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:01 smithi031 bash[22709]: audit 2024-09-13T22:08:01.137043+0000 mon.a (mon.0) 434 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:08:02.223 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:01 smithi031 bash[22709]: audit 2024-09-13T22:08:01.144633+0000 mon.a (mon.0) 435 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:02.642 INFO:journalctl@ceph.osd.0.smithi031.stdout:Sep 13 22:08:02 smithi031 bash[32014]: debug 2024-09-13T22:08:02.255+0000 7f8cdb600640 -1 osd.0 0 waiting for initial osdmap 2024-09-13T22:08:02.643 INFO:journalctl@ceph.osd.0.smithi031.stdout:Sep 13 22:08:02 smithi031 bash[32014]: debug 2024-09-13T22:08:02.287+0000 7f8cd3420640 -1 osd.0 7 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-13T22:08:03.076 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:02 smithi138 bash[23295]: cephadm 2024-09-13T22:08:01.122131+0000 mgr.a (mgr.14150) 142 : cephadm [INF] Adjusting osd_memory_target on smithi031 to 16245M 2024-09-13T22:08:03.076 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:02 smithi138 bash[23295]: audit 2024-09-13T22:08:01.756776+0000 mon.a (mon.0) 436 : audit [INF] from='osd.0 [v2:172.21.15.31:6802/3485172371,v1:172.21.15.31:6803/3485172371]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi031", "root=default"]}]': finished 2024-09-13T22:08:03.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:02 smithi138 bash[23295]: cluster 2024-09-13T22:08:01.761371+0000 mon.a (mon.0) 437 : cluster [DBG] osdmap e7: 1 total, 0 up, 1 in 2024-09-13T22:08:03.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:02 smithi138 bash[23295]: audit 2024-09-13T22:08:01.771249+0000 mon.a (mon.0) 438 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-13T22:08:03.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:02 smithi138 bash[23295]: audit 2024-09-13T22:08:01.776896+0000 mon.a (mon.0) 439 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-13T22:08:03.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:02 smithi138 bash[23295]: cluster 2024-09-13T22:08:01.807528+0000 mgr.a (mgr.14150) 143 : cluster [DBG] pgmap v80: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:08:03.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:02 smithi138 bash[23295]: audit 2024-09-13T22:08:02.265075+0000 mon.a (mon.0) 440 : audit [INF] from='osd.0 [v2:172.21.15.31:6802/3485172371,v1:172.21.15.31:6803/3485172371]' entity='osd.0' 2024-09-13T22:08:03.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:02 smithi138 bash[23295]: audit 2024-09-13T22:08:02.776362+0000 mon.a (mon.0) 441 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-13T22:08:03.085 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:02 smithi031 bash[22709]: cephadm 2024-09-13T22:08:01.122131+0000 mgr.a (mgr.14150) 142 : cephadm [INF] Adjusting osd_memory_target on smithi031 to 16245M 2024-09-13T22:08:03.085 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:02 smithi031 bash[22709]: audit 2024-09-13T22:08:01.756776+0000 mon.a (mon.0) 436 : audit [INF] from='osd.0 [v2:172.21.15.31:6802/3485172371,v1:172.21.15.31:6803/3485172371]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi031", "root=default"]}]': finished 2024-09-13T22:08:03.085 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:02 smithi031 bash[22709]: cluster 2024-09-13T22:08:01.761371+0000 mon.a (mon.0) 437 : cluster [DBG] osdmap e7: 1 total, 0 up, 1 in 2024-09-13T22:08:03.085 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:02 smithi031 bash[22709]: audit 2024-09-13T22:08:01.771249+0000 mon.a (mon.0) 438 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-13T22:08:03.086 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:02 smithi031 bash[22709]: audit 2024-09-13T22:08:01.776896+0000 mon.a (mon.0) 439 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-13T22:08:03.086 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:02 smithi031 bash[22709]: cluster 2024-09-13T22:08:01.807528+0000 mgr.a (mgr.14150) 143 : cluster [DBG] pgmap v80: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:08:03.086 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:02 smithi031 bash[22709]: audit 2024-09-13T22:08:02.265075+0000 mon.a (mon.0) 440 : audit [INF] from='osd.0 [v2:172.21.15.31:6802/3485172371,v1:172.21.15.31:6803/3485172371]' entity='osd.0' 2024-09-13T22:08:03.086 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:02 smithi031 bash[22709]: audit 2024-09-13T22:08:02.776362+0000 mon.a (mon.0) 441 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-13T22:08:03.188 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:02 smithi096 bash[23620]: cephadm 2024-09-13T22:08:01.122131+0000 mgr.a (mgr.14150) 142 : cephadm [INF] Adjusting osd_memory_target on smithi031 to 16245M 2024-09-13T22:08:03.188 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:02 smithi096 bash[23620]: audit 2024-09-13T22:08:01.756776+0000 mon.a (mon.0) 436 : audit [INF] from='osd.0 [v2:172.21.15.31:6802/3485172371,v1:172.21.15.31:6803/3485172371]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi031", "root=default"]}]': finished 2024-09-13T22:08:03.188 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:02 smithi096 bash[23620]: cluster 2024-09-13T22:08:01.761371+0000 mon.a (mon.0) 437 : cluster [DBG] osdmap e7: 1 total, 0 up, 1 in 2024-09-13T22:08:03.189 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:02 smithi096 bash[23620]: audit 2024-09-13T22:08:01.771249+0000 mon.a (mon.0) 438 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-13T22:08:03.189 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:02 smithi096 bash[23620]: audit 2024-09-13T22:08:01.776896+0000 mon.a (mon.0) 439 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-13T22:08:03.189 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:02 smithi096 bash[23620]: cluster 2024-09-13T22:08:01.807528+0000 mgr.a (mgr.14150) 143 : cluster [DBG] pgmap v80: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T22:08:03.189 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:02 smithi096 bash[23620]: audit 2024-09-13T22:08:02.265075+0000 mon.a (mon.0) 440 : audit [INF] from='osd.0 [v2:172.21.15.31:6802/3485172371,v1:172.21.15.31:6803/3485172371]' entity='osd.0' 2024-09-13T22:08:03.189 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:02 smithi096 bash[23620]: audit 2024-09-13T22:08:02.776362+0000 mon.a (mon.0) 441 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-13T22:08:03.969 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:03 smithi138 bash[23295]: cluster 2024-09-13T22:08:01.098199+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-13T22:08:03.969 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:03 smithi138 bash[23295]: cluster 2024-09-13T22:08:01.098329+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-13T22:08:03.969 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:03 smithi138 bash[23295]: cluster 2024-09-13T22:08:03.270733+0000 mon.a (mon.0) 442 : cluster [INF] osd.0 [v2:172.21.15.31:6802/3485172371,v1:172.21.15.31:6803/3485172371] boot 2024-09-13T22:08:03.969 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:03 smithi138 bash[23295]: cluster 2024-09-13T22:08:03.270811+0000 mon.a (mon.0) 443 : cluster [DBG] osdmap e8: 1 total, 1 up, 1 in 2024-09-13T22:08:03.969 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:03 smithi138 bash[23295]: audit 2024-09-13T22:08:03.271421+0000 mon.a (mon.0) 444 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-13T22:08:04.188 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:03 smithi096 bash[23620]: cluster 2024-09-13T22:08:01.098199+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-13T22:08:04.188 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:03 smithi096 bash[23620]: cluster 2024-09-13T22:08:01.098329+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-13T22:08:04.188 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:03 smithi096 bash[23620]: cluster 2024-09-13T22:08:03.270733+0000 mon.a (mon.0) 442 : cluster [INF] osd.0 [v2:172.21.15.31:6802/3485172371,v1:172.21.15.31:6803/3485172371] boot 2024-09-13T22:08:04.189 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:03 smithi096 bash[23620]: cluster 2024-09-13T22:08:03.270811+0000 mon.a (mon.0) 443 : cluster [DBG] osdmap e8: 1 total, 1 up, 1 in 2024-09-13T22:08:04.189 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:03 smithi096 bash[23620]: audit 2024-09-13T22:08:03.271421+0000 mon.a (mon.0) 444 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-13T22:08:04.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:03 smithi031 bash[22709]: cluster 2024-09-13T22:08:01.098199+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-13T22:08:04.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:03 smithi031 bash[22709]: cluster 2024-09-13T22:08:01.098329+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-13T22:08:04.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:03 smithi031 bash[22709]: cluster 2024-09-13T22:08:03.270733+0000 mon.a (mon.0) 442 : cluster [INF] osd.0 [v2:172.21.15.31:6802/3485172371,v1:172.21.15.31:6803/3485172371] boot 2024-09-13T22:08:04.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:03 smithi031 bash[22709]: cluster 2024-09-13T22:08:03.270811+0000 mon.a (mon.0) 443 : cluster [DBG] osdmap e8: 1 total, 1 up, 1 in 2024-09-13T22:08:04.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:03 smithi031 bash[22709]: audit 2024-09-13T22:08:03.271421+0000 mon.a (mon.0) 444 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-13T22:08:04.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:04 smithi031 bash[22709]: cluster 2024-09-13T22:08:03.808000+0000 mgr.a (mgr.14150) 144 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:05.076 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:04 smithi138 bash[23295]: cluster 2024-09-13T22:08:03.808000+0000 mgr.a (mgr.14150) 144 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:05.188 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:04 smithi096 bash[23620]: cluster 2024-09-13T22:08:03.808000+0000 mgr.a (mgr.14150) 144 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:06.076 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:05 smithi138 bash[23295]: cluster 2024-09-13T22:08:04.816552+0000 mon.a (mon.0) 445 : cluster [DBG] osdmap e9: 1 total, 1 up, 1 in 2024-09-13T22:08:06.188 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:05 smithi096 bash[23620]: cluster 2024-09-13T22:08:04.816552+0000 mon.a (mon.0) 445 : cluster [DBG] osdmap e9: 1 total, 1 up, 1 in 2024-09-13T22:08:06.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:05 smithi031 bash[22709]: cluster 2024-09-13T22:08:04.816552+0000 mon.a (mon.0) 445 : cluster [DBG] osdmap e9: 1 total, 1 up, 1 in 2024-09-13T22:08:06.530 INFO:teuthology.orchestra.run.smithi031.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T22:08:06.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:06 smithi031 bash[22709]: cluster 2024-09-13T22:08:05.808431+0000 mgr.a (mgr.14150) 145 : cluster [DBG] pgmap v84: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:07.076 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:06 smithi138 bash[23295]: cluster 2024-09-13T22:08:05.808431+0000 mgr.a (mgr.14150) 145 : cluster [DBG] pgmap v84: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:07.188 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:06 smithi096 bash[23620]: cluster 2024-09-13T22:08:05.808431+0000 mgr.a (mgr.14150) 145 : cluster [DBG] pgmap v84: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:08.204 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:07 smithi138 bash[23295]: audit 2024-09-13T22:08:06.942922+0000 mon.a (mon.0) 446 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:08.204 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:07 smithi138 bash[23295]: audit 2024-09-13T22:08:06.950422+0000 mon.a (mon.0) 447 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:08.204 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:07 smithi138 bash[23295]: audit 2024-09-13T22:08:06.959727+0000 mon.a (mon.0) 448 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:08.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:07 smithi031 bash[22709]: audit 2024-09-13T22:08:06.942922+0000 mon.a (mon.0) 446 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:08.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:07 smithi031 bash[22709]: audit 2024-09-13T22:08:06.950422+0000 mon.a (mon.0) 447 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:08.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:07 smithi031 bash[22709]: audit 2024-09-13T22:08:06.959727+0000 mon.a (mon.0) 448 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:08.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:07 smithi096 bash[23620]: audit 2024-09-13T22:08:06.942922+0000 mon.a (mon.0) 446 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:08.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:07 smithi096 bash[23620]: audit 2024-09-13T22:08:06.950422+0000 mon.a (mon.0) 447 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:08.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:07 smithi096 bash[23620]: audit 2024-09-13T22:08:06.959727+0000 mon.a (mon.0) 448 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:09.212 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:08 smithi031 bash[22709]: cluster 2024-09-13T22:08:07.808907+0000 mgr.a (mgr.14150) 146 : cluster [DBG] pgmap v85: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:09.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:08 smithi138 bash[23295]: cluster 2024-09-13T22:08:07.808907+0000 mgr.a (mgr.14150) 146 : cluster [DBG] pgmap v85: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:09.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:08 smithi096 bash[23620]: cluster 2024-09-13T22:08:07.808907+0000 mgr.a (mgr.14150) 146 : cluster [DBG] pgmap v85: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:10.334 INFO:teuthology.orchestra.run.smithi031.stdout: 2024-09-13T22:08:10.375 DEBUG:teuthology.orchestra.run.smithi031:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 89616338-721b-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi031:vg_nvme/lv_3 2024-09-13T22:08:11.188 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:10 smithi096 bash[23620]: cluster 2024-09-13T22:08:09.809265+0000 mgr.a (mgr.14150) 147 : cluster [DBG] pgmap v86: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:11.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:10 smithi031 bash[22709]: cluster 2024-09-13T22:08:09.809265+0000 mgr.a (mgr.14150) 147 : cluster [DBG] pgmap v86: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:11.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:10 smithi138 bash[23295]: cluster 2024-09-13T22:08:09.809265+0000 mgr.a (mgr.14150) 147 : cluster [DBG] pgmap v86: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:13.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:12 smithi031 bash[22709]: cluster 2024-09-13T22:08:11.809689+0000 mgr.a (mgr.14150) 148 : cluster [DBG] pgmap v87: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:13.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:12 smithi138 bash[23295]: cluster 2024-09-13T22:08:11.809689+0000 mgr.a (mgr.14150) 148 : cluster [DBG] pgmap v87: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:13.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:12 smithi096 bash[23620]: cluster 2024-09-13T22:08:11.809689+0000 mgr.a (mgr.14150) 148 : cluster [DBG] pgmap v87: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:15.118 INFO:teuthology.orchestra.run.smithi031.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T22:08:15.303 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:14 smithi031 bash[22709]: cluster 2024-09-13T22:08:13.810149+0000 mgr.a (mgr.14150) 149 : cluster [DBG] pgmap v88: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:15.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:14 smithi138 bash[23295]: cluster 2024-09-13T22:08:13.810149+0000 mgr.a (mgr.14150) 149 : cluster [DBG] pgmap v88: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:15.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:14 smithi096 bash[23620]: cluster 2024-09-13T22:08:13.810149+0000 mgr.a (mgr.14150) 149 : cluster [DBG] pgmap v88: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:16.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:16 smithi031 bash[22709]: audit 2024-09-13T22:08:15.289228+0000 mon.a (mon.0) 449 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:16.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:16 smithi031 bash[22709]: audit 2024-09-13T22:08:15.295120+0000 mon.a (mon.0) 450 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:16.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:16 smithi031 bash[22709]: audit 2024-09-13T22:08:15.302854+0000 mon.a (mon.0) 451 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:16.576 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:16 smithi138 bash[23295]: audit 2024-09-13T22:08:15.289228+0000 mon.a (mon.0) 449 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:16.576 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:16 smithi138 bash[23295]: audit 2024-09-13T22:08:15.295120+0000 mon.a (mon.0) 450 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:16.576 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:16 smithi138 bash[23295]: audit 2024-09-13T22:08:15.302854+0000 mon.a (mon.0) 451 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:16.688 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:16 smithi096 bash[23620]: audit 2024-09-13T22:08:15.289228+0000 mon.a (mon.0) 449 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:16.688 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:16 smithi096 bash[23620]: audit 2024-09-13T22:08:15.295120+0000 mon.a (mon.0) 450 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:16.688 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:16 smithi096 bash[23620]: audit 2024-09-13T22:08:15.302854+0000 mon.a (mon.0) 451 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:17.576 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:17 smithi138 bash[23295]: cluster 2024-09-13T22:08:15.810573+0000 mgr.a (mgr.14150) 150 : cluster [DBG] pgmap v89: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:17.576 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:17 smithi138 bash[23295]: audit 2024-09-13T22:08:16.531062+0000 mgr.a (mgr.14150) 151 : audit [DBG] from='client.14232 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi031:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:08:17.576 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:17 smithi138 bash[23295]: audit 2024-09-13T22:08:16.536869+0000 mon.a (mon.0) 452 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-13T22:08:17.576 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:17 smithi138 bash[23295]: audit 2024-09-13T22:08:16.542605+0000 mon.a (mon.0) 453 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-13T22:08:17.577 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:17 smithi138 bash[23295]: audit 2024-09-13T22:08:16.544119+0000 mon.a (mon.0) 454 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:08:17.688 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:17 smithi096 bash[23620]: cluster 2024-09-13T22:08:15.810573+0000 mgr.a (mgr.14150) 150 : cluster [DBG] pgmap v89: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:17.688 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:17 smithi096 bash[23620]: audit 2024-09-13T22:08:16.531062+0000 mgr.a (mgr.14150) 151 : audit [DBG] from='client.14232 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi031:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:08:17.688 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:17 smithi096 bash[23620]: audit 2024-09-13T22:08:16.536869+0000 mon.a (mon.0) 452 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-13T22:08:17.688 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:17 smithi096 bash[23620]: audit 2024-09-13T22:08:16.542605+0000 mon.a (mon.0) 453 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-13T22:08:17.688 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:17 smithi096 bash[23620]: audit 2024-09-13T22:08:16.544119+0000 mon.a (mon.0) 454 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:08:17.721 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:17 smithi031 bash[22709]: cluster 2024-09-13T22:08:15.810573+0000 mgr.a (mgr.14150) 150 : cluster [DBG] pgmap v89: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:17.721 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:17 smithi031 bash[22709]: audit 2024-09-13T22:08:16.531062+0000 mgr.a (mgr.14150) 151 : audit [DBG] from='client.14232 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi031:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:08:17.721 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:17 smithi031 bash[22709]: audit 2024-09-13T22:08:16.536869+0000 mon.a (mon.0) 452 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-13T22:08:17.721 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:17 smithi031 bash[22709]: audit 2024-09-13T22:08:16.542605+0000 mon.a (mon.0) 453 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-13T22:08:17.721 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:17 smithi031 bash[22709]: audit 2024-09-13T22:08:16.544119+0000 mon.a (mon.0) 454 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:08:19.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:18 smithi031 bash[22709]: cluster 2024-09-13T22:08:17.811018+0000 mgr.a (mgr.14150) 152 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:19.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:18 smithi031 bash[22709]: audit 2024-09-13T22:08:17.947366+0000 mon.a (mon.0) 455 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:19.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:18 smithi031 bash[22709]: audit 2024-09-13T22:08:17.955539+0000 mon.a (mon.0) 456 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:19.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:18 smithi031 bash[22709]: audit 2024-09-13T22:08:17.965159+0000 mon.a (mon.0) 457 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:19.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:18 smithi138 bash[23295]: cluster 2024-09-13T22:08:17.811018+0000 mgr.a (mgr.14150) 152 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:19.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:18 smithi138 bash[23295]: audit 2024-09-13T22:08:17.947366+0000 mon.a (mon.0) 455 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:19.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:18 smithi138 bash[23295]: audit 2024-09-13T22:08:17.955539+0000 mon.a (mon.0) 456 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:19.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:18 smithi138 bash[23295]: audit 2024-09-13T22:08:17.965159+0000 mon.a (mon.0) 457 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:19.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:18 smithi096 bash[23620]: cluster 2024-09-13T22:08:17.811018+0000 mgr.a (mgr.14150) 152 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:19.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:18 smithi096 bash[23620]: audit 2024-09-13T22:08:17.947366+0000 mon.a (mon.0) 455 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:19.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:18 smithi096 bash[23620]: audit 2024-09-13T22:08:17.955539+0000 mon.a (mon.0) 456 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:19.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:18 smithi096 bash[23620]: audit 2024-09-13T22:08:17.965159+0000 mon.a (mon.0) 457 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:21.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:20 smithi031 bash[22709]: cluster 2024-09-13T22:08:19.811507+0000 mgr.a (mgr.14150) 153 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:21.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:20 smithi138 bash[23295]: cluster 2024-09-13T22:08:19.811507+0000 mgr.a (mgr.14150) 153 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:21.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:20 smithi096 bash[23620]: cluster 2024-09-13T22:08:19.811507+0000 mgr.a (mgr.14150) 153 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:23.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:22 smithi031 bash[22709]: cluster 2024-09-13T22:08:21.811956+0000 mgr.a (mgr.14150) 154 : cluster [DBG] pgmap v92: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:23.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:22 smithi138 bash[23295]: cluster 2024-09-13T22:08:21.811956+0000 mgr.a (mgr.14150) 154 : cluster [DBG] pgmap v92: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:23.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:22 smithi096 bash[23620]: cluster 2024-09-13T22:08:21.811956+0000 mgr.a (mgr.14150) 154 : cluster [DBG] pgmap v92: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:25.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:24 smithi031 bash[22709]: cluster 2024-09-13T22:08:23.812403+0000 mgr.a (mgr.14150) 155 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:25.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:24 smithi138 bash[23295]: cluster 2024-09-13T22:08:23.812403+0000 mgr.a (mgr.14150) 155 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:25.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:24 smithi096 bash[23620]: cluster 2024-09-13T22:08:23.812403+0000 mgr.a (mgr.14150) 155 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:26.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:25 smithi031 bash[22709]: audit 2024-09-13T22:08:25.865677+0000 mon.a (mon.0) 458 : audit [INF] from='client.? 172.21.15.31:0/1797960854' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "24a85b1e-3285-497c-875f-c10b45ddae30"}]: dispatch 2024-09-13T22:08:26.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:25 smithi031 bash[22709]: audit 2024-09-13T22:08:25.868600+0000 mon.a (mon.0) 459 : audit [INF] from='client.? 172.21.15.31:0/1797960854' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "24a85b1e-3285-497c-875f-c10b45ddae30"}]': finished 2024-09-13T22:08:26.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:25 smithi031 bash[22709]: cluster 2024-09-13T22:08:25.873693+0000 mon.a (mon.0) 460 : cluster [DBG] osdmap e10: 2 total, 1 up, 2 in 2024-09-13T22:08:26.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:25 smithi031 bash[22709]: audit 2024-09-13T22:08:25.873991+0000 mon.a (mon.0) 461 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-13T22:08:26.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:25 smithi138 bash[23295]: audit 2024-09-13T22:08:25.865677+0000 mon.a (mon.0) 458 : audit [INF] from='client.? 172.21.15.31:0/1797960854' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "24a85b1e-3285-497c-875f-c10b45ddae30"}]: dispatch 2024-09-13T22:08:26.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:25 smithi138 bash[23295]: audit 2024-09-13T22:08:25.868600+0000 mon.a (mon.0) 459 : audit [INF] from='client.? 172.21.15.31:0/1797960854' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "24a85b1e-3285-497c-875f-c10b45ddae30"}]': finished 2024-09-13T22:08:26.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:25 smithi138 bash[23295]: cluster 2024-09-13T22:08:25.873693+0000 mon.a (mon.0) 460 : cluster [DBG] osdmap e10: 2 total, 1 up, 2 in 2024-09-13T22:08:26.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:25 smithi138 bash[23295]: audit 2024-09-13T22:08:25.873991+0000 mon.a (mon.0) 461 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-13T22:08:26.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:25 smithi096 bash[23620]: audit 2024-09-13T22:08:25.865677+0000 mon.a (mon.0) 458 : audit [INF] from='client.? 172.21.15.31:0/1797960854' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "24a85b1e-3285-497c-875f-c10b45ddae30"}]: dispatch 2024-09-13T22:08:26.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:25 smithi096 bash[23620]: audit 2024-09-13T22:08:25.868600+0000 mon.a (mon.0) 459 : audit [INF] from='client.? 172.21.15.31:0/1797960854' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "24a85b1e-3285-497c-875f-c10b45ddae30"}]': finished 2024-09-13T22:08:26.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:25 smithi096 bash[23620]: cluster 2024-09-13T22:08:25.873693+0000 mon.a (mon.0) 460 : cluster [DBG] osdmap e10: 2 total, 1 up, 2 in 2024-09-13T22:08:26.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:25 smithi096 bash[23620]: audit 2024-09-13T22:08:25.873991+0000 mon.a (mon.0) 461 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-13T22:08:27.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:26 smithi031 bash[22709]: cluster 2024-09-13T22:08:25.812818+0000 mgr.a (mgr.14150) 156 : cluster [DBG] pgmap v94: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:27.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:26 smithi031 bash[22709]: audit 2024-09-13T22:08:26.506897+0000 mon.a (mon.0) 462 : audit [DBG] from='client.? 172.21.15.31:0/2354754423' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-13T22:08:27.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:26 smithi138 bash[23295]: cluster 2024-09-13T22:08:25.812818+0000 mgr.a (mgr.14150) 156 : cluster [DBG] pgmap v94: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:27.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:26 smithi138 bash[23295]: audit 2024-09-13T22:08:26.506897+0000 mon.a (mon.0) 462 : audit [DBG] from='client.? 172.21.15.31:0/2354754423' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-13T22:08:27.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:26 smithi096 bash[23620]: cluster 2024-09-13T22:08:25.812818+0000 mgr.a (mgr.14150) 156 : cluster [DBG] pgmap v94: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:27.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:26 smithi096 bash[23620]: audit 2024-09-13T22:08:26.506897+0000 mon.a (mon.0) 462 : audit [DBG] from='client.? 172.21.15.31:0/2354754423' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-13T22:08:28.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:28 smithi096 bash[23620]: audit 2024-09-13T22:08:27.131501+0000 mon.a (mon.0) 463 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:28.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:28 smithi096 bash[23620]: audit 2024-09-13T22:08:27.138860+0000 mon.a (mon.0) 464 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:28.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:28 smithi096 bash[23620]: audit 2024-09-13T22:08:27.148201+0000 mon.a (mon.0) 465 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:28.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:28 smithi031 bash[22709]: audit 2024-09-13T22:08:27.131501+0000 mon.a (mon.0) 463 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:28.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:28 smithi031 bash[22709]: audit 2024-09-13T22:08:27.138860+0000 mon.a (mon.0) 464 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:28.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:28 smithi031 bash[22709]: audit 2024-09-13T22:08:27.148201+0000 mon.a (mon.0) 465 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:28.576 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:28 smithi138 bash[23295]: audit 2024-09-13T22:08:27.131501+0000 mon.a (mon.0) 463 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:28.576 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:28 smithi138 bash[23295]: audit 2024-09-13T22:08:27.138860+0000 mon.a (mon.0) 464 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:28.576 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:28 smithi138 bash[23295]: audit 2024-09-13T22:08:27.148201+0000 mon.a (mon.0) 465 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:29.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:29 smithi096 bash[23620]: cluster 2024-09-13T22:08:27.813286+0000 mgr.a (mgr.14150) 157 : cluster [DBG] pgmap v96: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:29.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:29 smithi031 bash[22709]: cluster 2024-09-13T22:08:27.813286+0000 mgr.a (mgr.14150) 157 : cluster [DBG] pgmap v96: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:29.576 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:29 smithi138 bash[23295]: cluster 2024-09-13T22:08:27.813286+0000 mgr.a (mgr.14150) 157 : cluster [DBG] pgmap v96: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:31.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:31 smithi031 bash[22709]: cluster 2024-09-13T22:08:29.813768+0000 mgr.a (mgr.14150) 158 : cluster [DBG] pgmap v97: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:31.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:31 smithi096 bash[23620]: cluster 2024-09-13T22:08:29.813768+0000 mgr.a (mgr.14150) 158 : cluster [DBG] pgmap v97: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:31.576 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:31 smithi138 bash[23295]: cluster 2024-09-13T22:08:29.813768+0000 mgr.a (mgr.14150) 158 : cluster [DBG] pgmap v97: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:33.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:33 smithi096 bash[23620]: cluster 2024-09-13T22:08:31.814117+0000 mgr.a (mgr.14150) 159 : cluster [DBG] pgmap v98: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:33.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:33 smithi031 bash[22709]: cluster 2024-09-13T22:08:31.814117+0000 mgr.a (mgr.14150) 159 : cluster [DBG] pgmap v98: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:33.576 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:33 smithi138 bash[23295]: cluster 2024-09-13T22:08:31.814117+0000 mgr.a (mgr.14150) 159 : cluster [DBG] pgmap v98: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:35.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:35 smithi096 bash[23620]: cluster 2024-09-13T22:08:33.814453+0000 mgr.a (mgr.14150) 160 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:35.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:35 smithi031 bash[22709]: cluster 2024-09-13T22:08:33.814453+0000 mgr.a (mgr.14150) 160 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:35.576 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:35 smithi138 bash[23295]: cluster 2024-09-13T22:08:33.814453+0000 mgr.a (mgr.14150) 160 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:36.749 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:36 smithi031 bash[22709]: audit 2024-09-13T22:08:35.499019+0000 mon.a (mon.0) 466 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:36.750 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:36 smithi031 bash[22709]: audit 2024-09-13T22:08:35.507055+0000 mon.a (mon.0) 467 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:36.750 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:36 smithi031 bash[22709]: cephadm 2024-09-13T22:08:35.517056+0000 mgr.a (mgr.14150) 161 : cephadm [INF] Detected new or changed devices on smithi031 2024-09-13T22:08:36.750 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:36 smithi031 bash[22709]: audit 2024-09-13T22:08:35.523943+0000 mon.a (mon.0) 468 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:36.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:36 smithi138 bash[23295]: audit 2024-09-13T22:08:35.499019+0000 mon.a (mon.0) 466 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:36.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:36 smithi138 bash[23295]: audit 2024-09-13T22:08:35.507055+0000 mon.a (mon.0) 467 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:36.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:36 smithi138 bash[23295]: cephadm 2024-09-13T22:08:35.517056+0000 mgr.a (mgr.14150) 161 : cephadm [INF] Detected new or changed devices on smithi031 2024-09-13T22:08:36.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:36 smithi138 bash[23295]: audit 2024-09-13T22:08:35.523943+0000 mon.a (mon.0) 468 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:36.938 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:36 smithi096 bash[23620]: audit 2024-09-13T22:08:35.499019+0000 mon.a (mon.0) 466 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:36.938 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:36 smithi096 bash[23620]: audit 2024-09-13T22:08:35.507055+0000 mon.a (mon.0) 467 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:36.938 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:36 smithi096 bash[23620]: cephadm 2024-09-13T22:08:35.517056+0000 mgr.a (mgr.14150) 161 : cephadm [INF] Detected new or changed devices on smithi031 2024-09-13T22:08:36.938 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:36 smithi096 bash[23620]: audit 2024-09-13T22:08:35.523943+0000 mon.a (mon.0) 468 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:37.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:37 smithi138 bash[23295]: cluster 2024-09-13T22:08:35.814721+0000 mgr.a (mgr.14150) 162 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:37.938 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:37 smithi096 bash[23620]: cluster 2024-09-13T22:08:35.814721+0000 mgr.a (mgr.14150) 162 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:37.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:37 smithi031 bash[22709]: cluster 2024-09-13T22:08:35.814721+0000 mgr.a (mgr.14150) 162 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:39.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:39 smithi096 bash[23620]: cluster 2024-09-13T22:08:37.815156+0000 mgr.a (mgr.14150) 163 : cluster [DBG] pgmap v101: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:39.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:39 smithi096 bash[23620]: audit 2024-09-13T22:08:38.136055+0000 mon.a (mon.0) 469 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:39.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:39 smithi096 bash[23620]: audit 2024-09-13T22:08:38.143404+0000 mon.a (mon.0) 470 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:39.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:39 smithi096 bash[23620]: audit 2024-09-13T22:08:38.152999+0000 mon.a (mon.0) 471 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:39.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:39 smithi031 bash[22709]: cluster 2024-09-13T22:08:37.815156+0000 mgr.a (mgr.14150) 163 : cluster [DBG] pgmap v101: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:39.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:39 smithi031 bash[22709]: audit 2024-09-13T22:08:38.136055+0000 mon.a (mon.0) 469 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:39.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:39 smithi031 bash[22709]: audit 2024-09-13T22:08:38.143404+0000 mon.a (mon.0) 470 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:39.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:39 smithi031 bash[22709]: audit 2024-09-13T22:08:38.152999+0000 mon.a (mon.0) 471 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:39.576 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:39 smithi138 bash[23295]: cluster 2024-09-13T22:08:37.815156+0000 mgr.a (mgr.14150) 163 : cluster [DBG] pgmap v101: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:39.576 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:39 smithi138 bash[23295]: audit 2024-09-13T22:08:38.136055+0000 mon.a (mon.0) 469 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:39.576 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:39 smithi138 bash[23295]: audit 2024-09-13T22:08:38.143404+0000 mon.a (mon.0) 470 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:39.576 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:39 smithi138 bash[23295]: audit 2024-09-13T22:08:38.152999+0000 mon.a (mon.0) 471 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:40.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:40 smithi096 bash[23620]: audit 2024-09-13T22:08:39.354411+0000 mon.a (mon.0) 472 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-13T22:08:40.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:40 smithi096 bash[23620]: audit 2024-09-13T22:08:39.356320+0000 mon.a (mon.0) 473 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:08:40.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:40 smithi096 bash[23620]: cephadm 2024-09-13T22:08:39.357763+0000 mgr.a (mgr.14150) 164 : cephadm [INF] Deploying daemon osd.1 on smithi031 2024-09-13T22:08:40.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:40 smithi031 bash[22709]: audit 2024-09-13T22:08:39.354411+0000 mon.a (mon.0) 472 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-13T22:08:40.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:40 smithi031 bash[22709]: audit 2024-09-13T22:08:39.356320+0000 mon.a (mon.0) 473 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:08:40.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:40 smithi031 bash[22709]: cephadm 2024-09-13T22:08:39.357763+0000 mgr.a (mgr.14150) 164 : cephadm [INF] Deploying daemon osd.1 on smithi031 2024-09-13T22:08:40.576 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:40 smithi138 bash[23295]: audit 2024-09-13T22:08:39.354411+0000 mon.a (mon.0) 472 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-13T22:08:40.576 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:40 smithi138 bash[23295]: audit 2024-09-13T22:08:39.356320+0000 mon.a (mon.0) 473 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:08:40.576 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:40 smithi138 bash[23295]: cephadm 2024-09-13T22:08:39.357763+0000 mgr.a (mgr.14150) 164 : cephadm [INF] Deploying daemon osd.1 on smithi031 2024-09-13T22:08:41.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:41 smithi031 bash[22709]: cluster 2024-09-13T22:08:39.815602+0000 mgr.a (mgr.14150) 165 : cluster [DBG] pgmap v102: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:41.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:41 smithi096 bash[23620]: cluster 2024-09-13T22:08:39.815602+0000 mgr.a (mgr.14150) 165 : cluster [DBG] pgmap v102: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:41.576 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:41 smithi138 bash[23295]: cluster 2024-09-13T22:08:39.815602+0000 mgr.a (mgr.14150) 165 : cluster [DBG] pgmap v102: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:43.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:43 smithi096 bash[23620]: cluster 2024-09-13T22:08:41.816085+0000 mgr.a (mgr.14150) 166 : cluster [DBG] pgmap v103: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:43.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:43 smithi031 bash[22709]: cluster 2024-09-13T22:08:41.816085+0000 mgr.a (mgr.14150) 166 : cluster [DBG] pgmap v103: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:43.576 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:43 smithi138 bash[23295]: cluster 2024-09-13T22:08:41.816085+0000 mgr.a (mgr.14150) 166 : cluster [DBG] pgmap v103: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:43.765 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:08:43 smithi031 systemd[1]: /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-13T22:08:43.765 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:43 smithi031 systemd[1]: /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-13T22:08:43.766 INFO:journalctl@ceph.osd.0.smithi031.stdout:Sep 13 22:08:43 smithi031 systemd[1]: /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-13T22:08:44.101 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:43 smithi031 systemd[1]: /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-13T22:08:44.101 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:08:43 smithi031 systemd[1]: /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-13T22:08:44.101 INFO:journalctl@ceph.osd.0.smithi031.stdout:Sep 13 22:08:43 smithi031 systemd[1]: /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-13T22:08:44.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:44 smithi096 bash[23620]: audit 2024-09-13T22:08:44.035958+0000 mon.a (mon.0) 474 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:08:44.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:44 smithi096 bash[23620]: audit 2024-09-13T22:08:44.040258+0000 mon.a (mon.0) 475 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:44.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:44 smithi096 bash[23620]: audit 2024-09-13T22:08:44.040585+0000 mon.a (mon.0) 476 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:08:44.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:44 smithi096 bash[23620]: audit 2024-09-13T22:08:44.041804+0000 mon.a (mon.0) 477 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:08:44.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:44 smithi096 bash[23620]: audit 2024-09-13T22:08:44.044709+0000 mon.a (mon.0) 478 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:44.439 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:44 smithi096 bash[23620]: audit 2024-09-13T22:08:44.049227+0000 mon.a (mon.0) 479 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:44.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:44 smithi031 bash[22709]: audit 2024-09-13T22:08:44.035958+0000 mon.a (mon.0) 474 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:08:44.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:44 smithi031 bash[22709]: audit 2024-09-13T22:08:44.040258+0000 mon.a (mon.0) 475 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:44.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:44 smithi031 bash[22709]: audit 2024-09-13T22:08:44.040585+0000 mon.a (mon.0) 476 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:08:44.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:44 smithi031 bash[22709]: audit 2024-09-13T22:08:44.041804+0000 mon.a (mon.0) 477 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:08:44.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:44 smithi031 bash[22709]: audit 2024-09-13T22:08:44.044709+0000 mon.a (mon.0) 478 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:44.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:44 smithi031 bash[22709]: audit 2024-09-13T22:08:44.049227+0000 mon.a (mon.0) 479 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:44.576 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:44 smithi138 bash[23295]: audit 2024-09-13T22:08:44.035958+0000 mon.a (mon.0) 474 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:08:44.576 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:44 smithi138 bash[23295]: audit 2024-09-13T22:08:44.040258+0000 mon.a (mon.0) 475 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:44.576 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:44 smithi138 bash[23295]: audit 2024-09-13T22:08:44.040585+0000 mon.a (mon.0) 476 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:08:44.576 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:44 smithi138 bash[23295]: audit 2024-09-13T22:08:44.041804+0000 mon.a (mon.0) 477 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:08:44.576 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:44 smithi138 bash[23295]: audit 2024-09-13T22:08:44.044709+0000 mon.a (mon.0) 478 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:44.576 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:44 smithi138 bash[23295]: audit 2024-09-13T22:08:44.049227+0000 mon.a (mon.0) 479 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:45.428 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:45 smithi138 bash[23295]: cluster 2024-09-13T22:08:43.816530+0000 mgr.a (mgr.14150) 167 : cluster [DBG] pgmap v104: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:45.437 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:45 smithi096 bash[23620]: cluster 2024-09-13T22:08:43.816530+0000 mgr.a (mgr.14150) 167 : cluster [DBG] pgmap v104: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:45.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:45 smithi031 bash[22709]: cluster 2024-09-13T22:08:43.816530+0000 mgr.a (mgr.14150) 167 : cluster [DBG] pgmap v104: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:47.235 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:47 smithi031 bash[22709]: cluster 2024-09-13T22:08:45.816975+0000 mgr.a (mgr.14150) 168 : cluster [DBG] pgmap v105: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:47.437 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:47 smithi096 bash[23620]: cluster 2024-09-13T22:08:45.816975+0000 mgr.a (mgr.14150) 168 : cluster [DBG] pgmap v105: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:47.452 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:47 smithi138 bash[23295]: cluster 2024-09-13T22:08:45.816975+0000 mgr.a (mgr.14150) 168 : cluster [DBG] pgmap v105: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:48.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:48 smithi031 bash[22709]: audit 2024-09-13T22:08:47.293630+0000 mon.a (mon.0) 480 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:48.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:48 smithi031 bash[22709]: audit 2024-09-13T22:08:47.300833+0000 mon.a (mon.0) 481 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:48.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:48 smithi031 bash[22709]: audit 2024-09-13T22:08:47.309790+0000 mon.a (mon.0) 482 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:48.576 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:48 smithi138 bash[23295]: audit 2024-09-13T22:08:47.293630+0000 mon.a (mon.0) 480 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:48.576 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:48 smithi138 bash[23295]: audit 2024-09-13T22:08:47.300833+0000 mon.a (mon.0) 481 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:48.576 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:48 smithi138 bash[23295]: audit 2024-09-13T22:08:47.309790+0000 mon.a (mon.0) 482 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:48.688 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:48 smithi096 bash[23620]: audit 2024-09-13T22:08:47.293630+0000 mon.a (mon.0) 480 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:48.688 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:48 smithi096 bash[23620]: audit 2024-09-13T22:08:47.300833+0000 mon.a (mon.0) 481 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:48.688 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:48 smithi096 bash[23620]: audit 2024-09-13T22:08:47.309790+0000 mon.a (mon.0) 482 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:49.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:49 smithi031 bash[22709]: cluster 2024-09-13T22:08:47.817402+0000 mgr.a (mgr.14150) 169 : cluster [DBG] pgmap v106: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:49.576 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:49 smithi138 bash[23295]: cluster 2024-09-13T22:08:47.817402+0000 mgr.a (mgr.14150) 169 : cluster [DBG] pgmap v106: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:49.688 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:49 smithi096 bash[23620]: cluster 2024-09-13T22:08:47.817402+0000 mgr.a (mgr.14150) 169 : cluster [DBG] pgmap v106: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:51.552 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:51 smithi031 bash[22709]: cluster 2024-09-13T22:08:49.817759+0000 mgr.a (mgr.14150) 170 : cluster [DBG] pgmap v107: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:51.575 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:51 smithi138 bash[23295]: cluster 2024-09-13T22:08:49.817759+0000 mgr.a (mgr.14150) 170 : cluster [DBG] pgmap v107: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:51.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:51 smithi096 bash[23620]: cluster 2024-09-13T22:08:49.817759+0000 mgr.a (mgr.14150) 170 : cluster [DBG] pgmap v107: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:53.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:53 smithi031 bash[22709]: cluster 2024-09-13T22:08:51.818041+0000 mgr.a (mgr.14150) 171 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:53.576 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:53 smithi138 bash[23295]: cluster 2024-09-13T22:08:51.818041+0000 mgr.a (mgr.14150) 171 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:53.590 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:53 smithi096 bash[23620]: cluster 2024-09-13T22:08:51.818041+0000 mgr.a (mgr.14150) 171 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:55.475 INFO:teuthology.orchestra.run.smithi031.stdout:Created osd(s) 1 on host 'smithi031' 2024-09-13T22:08:55.632 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:55 smithi096 bash[23620]: cluster 2024-09-13T22:08:53.818351+0000 mgr.a (mgr.14150) 172 : cluster [DBG] pgmap v109: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:55.632 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:55 smithi096 bash[23620]: audit 2024-09-13T22:08:55.004000+0000 mon.a (mon.0) 483 : audit [INF] from='osd.1 [v2:172.21.15.31:6810/2077429465,v1:172.21.15.31:6811/2077429465]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-09-13T22:08:55.639 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:55 smithi031 bash[22709]: cluster 2024-09-13T22:08:53.818351+0000 mgr.a (mgr.14150) 172 : cluster [DBG] pgmap v109: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:55.639 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:55 smithi031 bash[22709]: audit 2024-09-13T22:08:55.004000+0000 mon.a (mon.0) 483 : audit [INF] from='osd.1 [v2:172.21.15.31:6810/2077429465,v1:172.21.15.31:6811/2077429465]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-09-13T22:08:55.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:55 smithi138 bash[23295]: cluster 2024-09-13T22:08:53.818351+0000 mgr.a (mgr.14150) 172 : cluster [DBG] pgmap v109: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:55.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:55 smithi138 bash[23295]: audit 2024-09-13T22:08:55.004000+0000 mon.a (mon.0) 483 : audit [INF] from='osd.1 [v2:172.21.15.31:6810/2077429465,v1:172.21.15.31:6811/2077429465]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-09-13T22:08:56.151 DEBUG:teuthology.orchestra.run.smithi031:osd.1> sudo journalctl -f -n 0 -u ceph-89616338-721b-11ef-bceb-c7b262605968@osd.1.service 2024-09-13T22:08:56.154 INFO:tasks.cephadm:Deploying osd.2 on smithi096 with /dev/vg_nvme/lv_4... 2024-09-13T22:08:56.154 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 89616338-721b-11ef-bceb-c7b262605968 -- lvm zap /dev/vg_nvme/lv_4 2024-09-13T22:08:56.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:56 smithi096 bash[23620]: audit 2024-09-13T22:08:55.322750+0000 mon.a (mon.0) 484 : audit [INF] from='osd.1 [v2:172.21.15.31:6810/2077429465,v1:172.21.15.31:6811/2077429465]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-13T22:08:56.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:56 smithi096 bash[23620]: cluster 2024-09-13T22:08:55.328070+0000 mon.a (mon.0) 485 : cluster [DBG] osdmap e11: 2 total, 1 up, 2 in 2024-09-13T22:08:56.439 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:56 smithi096 bash[23620]: audit 2024-09-13T22:08:55.329079+0000 mon.a (mon.0) 486 : audit [INF] from='osd.1 [v2:172.21.15.31:6810/2077429465,v1:172.21.15.31:6811/2077429465]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi031", "root=default"]}]: dispatch 2024-09-13T22:08:56.439 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:56 smithi096 bash[23620]: audit 2024-09-13T22:08:55.329706+0000 mon.a (mon.0) 487 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-13T22:08:56.439 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:56 smithi096 bash[23620]: audit 2024-09-13T22:08:55.455789+0000 mon.a (mon.0) 488 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:08:56.439 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:56 smithi096 bash[23620]: audit 2024-09-13T22:08:55.463876+0000 mon.a (mon.0) 489 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:56.439 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:56 smithi096 bash[23620]: audit 2024-09-13T22:08:55.464805+0000 mon.a (mon.0) 490 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-13T22:08:56.439 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:56 smithi096 bash[23620]: audit 2024-09-13T22:08:55.468085+0000 mon.a (mon.0) 491 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-09-13T22:08:56.439 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:56 smithi096 bash[23620]: audit 2024-09-13T22:08:55.472391+0000 mon.a (mon.0) 492 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:56.439 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:56 smithi096 bash[23620]: cephadm 2024-09-13T22:08:55.474643+0000 mgr.a (mgr.14150) 173 : cephadm [INF] Adjusting osd_memory_target on smithi031 to 8122M 2024-09-13T22:08:56.439 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:56 smithi096 bash[23620]: audit 2024-09-13T22:08:55.481878+0000 mon.a (mon.0) 493 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:56.439 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:56 smithi096 bash[23620]: audit 2024-09-13T22:08:55.485879+0000 mon.a (mon.0) 494 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:08:56.440 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:56 smithi096 bash[23620]: audit 2024-09-13T22:08:55.487507+0000 mon.a (mon.0) 495 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:08:56.440 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:56 smithi096 bash[23620]: audit 2024-09-13T22:08:55.497081+0000 mon.a (mon.0) 496 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:56.440 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:56 smithi096 bash[23620]: audit 2024-09-13T22:08:55.628347+0000 mon.a (mon.0) 497 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:56.440 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:56 smithi096 bash[23620]: audit 2024-09-13T22:08:55.635102+0000 mon.a (mon.0) 498 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:56.440 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:56 smithi096 bash[23620]: audit 2024-09-13T22:08:55.637535+0000 mon.a (mon.0) 499 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:08:56.440 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:56 smithi096 bash[23620]: audit 2024-09-13T22:08:55.640260+0000 mon.a (mon.0) 500 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:56.440 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:56 smithi096 bash[23620]: audit 2024-09-13T22:08:55.640876+0000 mon.a (mon.0) 501 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:08:56.440 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:56 smithi096 bash[23620]: audit 2024-09-13T22:08:55.641822+0000 mon.a (mon.0) 502 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:08:56.440 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:56 smithi096 bash[23620]: audit 2024-09-13T22:08:55.647131+0000 mon.a (mon.0) 503 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:56.440 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:56 smithi096 bash[23620]: audit 2024-09-13T22:08:56.325127+0000 mon.a (mon.0) 504 : audit [INF] from='osd.1 [v2:172.21.15.31:6810/2077429465,v1:172.21.15.31:6811/2077429465]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi031", "root=default"]}]': finished 2024-09-13T22:08:56.471 INFO:journalctl@ceph.osd.1.smithi031.stdout:Sep 13 22:08:56 smithi031 bash[35546]: debug 2024-09-13T22:08:56.362+0000 7f0f370c3640 -1 osd.1 0 waiting for initial osdmap 2024-09-13T22:08:56.471 INFO:journalctl@ceph.osd.1.smithi031.stdout:Sep 13 22:08:56 smithi031 bash[35546]: debug 2024-09-13T22:08:56.366+0000 7f0f32eeb640 -1 osd.1 12 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-13T22:08:56.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:56 smithi031 bash[22709]: audit 2024-09-13T22:08:55.322750+0000 mon.a (mon.0) 484 : audit [INF] from='osd.1 [v2:172.21.15.31:6810/2077429465,v1:172.21.15.31:6811/2077429465]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-13T22:08:56.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:56 smithi031 bash[22709]: cluster 2024-09-13T22:08:55.328070+0000 mon.a (mon.0) 485 : cluster [DBG] osdmap e11: 2 total, 1 up, 2 in 2024-09-13T22:08:56.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:56 smithi031 bash[22709]: audit 2024-09-13T22:08:55.329079+0000 mon.a (mon.0) 486 : audit [INF] from='osd.1 [v2:172.21.15.31:6810/2077429465,v1:172.21.15.31:6811/2077429465]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi031", "root=default"]}]: dispatch 2024-09-13T22:08:56.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:56 smithi031 bash[22709]: audit 2024-09-13T22:08:55.329706+0000 mon.a (mon.0) 487 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-13T22:08:56.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:56 smithi031 bash[22709]: audit 2024-09-13T22:08:55.455789+0000 mon.a (mon.0) 488 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:08:56.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:56 smithi031 bash[22709]: audit 2024-09-13T22:08:55.463876+0000 mon.a (mon.0) 489 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:56.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:56 smithi031 bash[22709]: audit 2024-09-13T22:08:55.464805+0000 mon.a (mon.0) 490 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-13T22:08:56.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:56 smithi031 bash[22709]: audit 2024-09-13T22:08:55.468085+0000 mon.a (mon.0) 491 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-09-13T22:08:56.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:56 smithi031 bash[22709]: audit 2024-09-13T22:08:55.472391+0000 mon.a (mon.0) 492 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:56.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:56 smithi031 bash[22709]: cephadm 2024-09-13T22:08:55.474643+0000 mgr.a (mgr.14150) 173 : cephadm [INF] Adjusting osd_memory_target on smithi031 to 8122M 2024-09-13T22:08:56.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:56 smithi031 bash[22709]: audit 2024-09-13T22:08:55.481878+0000 mon.a (mon.0) 493 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:56.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:56 smithi031 bash[22709]: audit 2024-09-13T22:08:55.485879+0000 mon.a (mon.0) 494 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:08:56.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:56 smithi031 bash[22709]: audit 2024-09-13T22:08:55.487507+0000 mon.a (mon.0) 495 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:08:56.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:56 smithi031 bash[22709]: audit 2024-09-13T22:08:55.497081+0000 mon.a (mon.0) 496 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:56.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:56 smithi031 bash[22709]: audit 2024-09-13T22:08:55.628347+0000 mon.a (mon.0) 497 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:56.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:56 smithi031 bash[22709]: audit 2024-09-13T22:08:55.635102+0000 mon.a (mon.0) 498 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:56.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:56 smithi031 bash[22709]: audit 2024-09-13T22:08:55.637535+0000 mon.a (mon.0) 499 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:08:56.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:56 smithi031 bash[22709]: audit 2024-09-13T22:08:55.640260+0000 mon.a (mon.0) 500 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:56.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:56 smithi031 bash[22709]: audit 2024-09-13T22:08:55.640876+0000 mon.a (mon.0) 501 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:08:56.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:56 smithi031 bash[22709]: audit 2024-09-13T22:08:55.641822+0000 mon.a (mon.0) 502 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:08:56.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:56 smithi031 bash[22709]: audit 2024-09-13T22:08:55.647131+0000 mon.a (mon.0) 503 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:56.473 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:56 smithi031 bash[22709]: audit 2024-09-13T22:08:56.325127+0000 mon.a (mon.0) 504 : audit [INF] from='osd.1 [v2:172.21.15.31:6810/2077429465,v1:172.21.15.31:6811/2077429465]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi031", "root=default"]}]': finished 2024-09-13T22:08:56.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:56 smithi138 bash[23295]: audit 2024-09-13T22:08:55.322750+0000 mon.a (mon.0) 484 : audit [INF] from='osd.1 [v2:172.21.15.31:6810/2077429465,v1:172.21.15.31:6811/2077429465]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-13T22:08:56.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:56 smithi138 bash[23295]: cluster 2024-09-13T22:08:55.328070+0000 mon.a (mon.0) 485 : cluster [DBG] osdmap e11: 2 total, 1 up, 2 in 2024-09-13T22:08:56.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:56 smithi138 bash[23295]: audit 2024-09-13T22:08:55.329079+0000 mon.a (mon.0) 486 : audit [INF] from='osd.1 [v2:172.21.15.31:6810/2077429465,v1:172.21.15.31:6811/2077429465]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi031", "root=default"]}]: dispatch 2024-09-13T22:08:56.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:56 smithi138 bash[23295]: audit 2024-09-13T22:08:55.329706+0000 mon.a (mon.0) 487 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-13T22:08:56.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:56 smithi138 bash[23295]: audit 2024-09-13T22:08:55.455789+0000 mon.a (mon.0) 488 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:08:56.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:56 smithi138 bash[23295]: audit 2024-09-13T22:08:55.463876+0000 mon.a (mon.0) 489 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:56.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:56 smithi138 bash[23295]: audit 2024-09-13T22:08:55.464805+0000 mon.a (mon.0) 490 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-13T22:08:56.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:56 smithi138 bash[23295]: audit 2024-09-13T22:08:55.468085+0000 mon.a (mon.0) 491 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-09-13T22:08:56.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:56 smithi138 bash[23295]: audit 2024-09-13T22:08:55.472391+0000 mon.a (mon.0) 492 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:56.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:56 smithi138 bash[23295]: cephadm 2024-09-13T22:08:55.474643+0000 mgr.a (mgr.14150) 173 : cephadm [INF] Adjusting osd_memory_target on smithi031 to 8122M 2024-09-13T22:08:56.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:56 smithi138 bash[23295]: audit 2024-09-13T22:08:55.481878+0000 mon.a (mon.0) 493 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:56.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:56 smithi138 bash[23295]: audit 2024-09-13T22:08:55.485879+0000 mon.a (mon.0) 494 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:08:56.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:56 smithi138 bash[23295]: audit 2024-09-13T22:08:55.487507+0000 mon.a (mon.0) 495 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:08:56.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:56 smithi138 bash[23295]: audit 2024-09-13T22:08:55.497081+0000 mon.a (mon.0) 496 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:56.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:56 smithi138 bash[23295]: audit 2024-09-13T22:08:55.628347+0000 mon.a (mon.0) 497 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:56.828 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:56 smithi138 bash[23295]: audit 2024-09-13T22:08:55.635102+0000 mon.a (mon.0) 498 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:56.828 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:56 smithi138 bash[23295]: audit 2024-09-13T22:08:55.637535+0000 mon.a (mon.0) 499 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:08:56.828 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:56 smithi138 bash[23295]: audit 2024-09-13T22:08:55.640260+0000 mon.a (mon.0) 500 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:56.828 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:56 smithi138 bash[23295]: audit 2024-09-13T22:08:55.640876+0000 mon.a (mon.0) 501 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:08:56.828 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:56 smithi138 bash[23295]: audit 2024-09-13T22:08:55.641822+0000 mon.a (mon.0) 502 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:08:56.828 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:56 smithi138 bash[23295]: audit 2024-09-13T22:08:55.647131+0000 mon.a (mon.0) 503 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:56.828 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:56 smithi138 bash[23295]: audit 2024-09-13T22:08:56.325127+0000 mon.a (mon.0) 504 : audit [INF] from='osd.1 [v2:172.21.15.31:6810/2077429465,v1:172.21.15.31:6811/2077429465]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi031", "root=default"]}]': finished 2024-09-13T22:08:57.688 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:57 smithi096 bash[23620]: cluster 2024-09-13T22:08:55.818765+0000 mgr.a (mgr.14150) 174 : cluster [DBG] pgmap v111: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:57.688 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:57 smithi096 bash[23620]: cluster 2024-09-13T22:08:56.330263+0000 mon.a (mon.0) 505 : cluster [DBG] osdmap e12: 2 total, 1 up, 2 in 2024-09-13T22:08:57.688 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:57 smithi096 bash[23620]: audit 2024-09-13T22:08:56.332093+0000 mon.a (mon.0) 506 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-13T22:08:57.688 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:57 smithi096 bash[23620]: audit 2024-09-13T22:08:56.342632+0000 mon.a (mon.0) 507 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-13T22:08:57.721 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:57 smithi031 bash[22709]: cluster 2024-09-13T22:08:55.818765+0000 mgr.a (mgr.14150) 174 : cluster [DBG] pgmap v111: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:57.721 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:57 smithi031 bash[22709]: cluster 2024-09-13T22:08:56.330263+0000 mon.a (mon.0) 505 : cluster [DBG] osdmap e12: 2 total, 1 up, 2 in 2024-09-13T22:08:57.721 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:57 smithi031 bash[22709]: audit 2024-09-13T22:08:56.332093+0000 mon.a (mon.0) 506 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-13T22:08:57.721 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:57 smithi031 bash[22709]: audit 2024-09-13T22:08:56.342632+0000 mon.a (mon.0) 507 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-13T22:08:57.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:57 smithi138 bash[23295]: cluster 2024-09-13T22:08:55.818765+0000 mgr.a (mgr.14150) 174 : cluster [DBG] pgmap v111: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:57.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:57 smithi138 bash[23295]: cluster 2024-09-13T22:08:56.330263+0000 mon.a (mon.0) 505 : cluster [DBG] osdmap e12: 2 total, 1 up, 2 in 2024-09-13T22:08:57.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:57 smithi138 bash[23295]: audit 2024-09-13T22:08:56.332093+0000 mon.a (mon.0) 506 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-13T22:08:57.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:57 smithi138 bash[23295]: audit 2024-09-13T22:08:56.342632+0000 mon.a (mon.0) 507 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-13T22:08:58.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:58 smithi031 bash[22709]: cluster 2024-09-13T22:08:55.995405+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-13T22:08:58.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:58 smithi031 bash[22709]: cluster 2024-09-13T22:08:55.995529+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-13T22:08:58.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:58 smithi031 bash[22709]: cluster 2024-09-13T22:08:57.341586+0000 mon.a (mon.0) 508 : cluster [INF] osd.1 [v2:172.21.15.31:6810/2077429465,v1:172.21.15.31:6811/2077429465] boot 2024-09-13T22:08:58.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:58 smithi031 bash[22709]: cluster 2024-09-13T22:08:57.341647+0000 mon.a (mon.0) 509 : cluster [DBG] osdmap e13: 2 total, 2 up, 2 in 2024-09-13T22:08:58.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:58 smithi031 bash[22709]: audit 2024-09-13T22:08:57.342440+0000 mon.a (mon.0) 510 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-13T22:08:58.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:58 smithi031 bash[22709]: audit 2024-09-13T22:08:58.315044+0000 mon.a (mon.0) 511 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:58.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:58 smithi031 bash[22709]: audit 2024-09-13T22:08:58.319778+0000 mon.a (mon.0) 512 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:58.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:58 smithi031 bash[22709]: audit 2024-09-13T22:08:58.321876+0000 mon.a (mon.0) 513 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:08:58.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:58 smithi031 bash[22709]: audit 2024-09-13T22:08:58.325040+0000 mon.a (mon.0) 514 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:58.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:58 smithi031 bash[22709]: audit 2024-09-13T22:08:58.325273+0000 mon.a (mon.0) 515 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:08:58.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:58 smithi031 bash[22709]: audit 2024-09-13T22:08:58.326061+0000 mon.a (mon.0) 516 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:08:58.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:58 smithi031 bash[22709]: audit 2024-09-13T22:08:58.331023+0000 mon.a (mon.0) 517 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:58.688 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:58 smithi096 bash[23620]: cluster 2024-09-13T22:08:55.995405+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-13T22:08:58.688 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:58 smithi096 bash[23620]: cluster 2024-09-13T22:08:55.995529+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-13T22:08:58.688 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:58 smithi096 bash[23620]: cluster 2024-09-13T22:08:57.341586+0000 mon.a (mon.0) 508 : cluster [INF] osd.1 [v2:172.21.15.31:6810/2077429465,v1:172.21.15.31:6811/2077429465] boot 2024-09-13T22:08:58.688 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:58 smithi096 bash[23620]: cluster 2024-09-13T22:08:57.341647+0000 mon.a (mon.0) 509 : cluster [DBG] osdmap e13: 2 total, 2 up, 2 in 2024-09-13T22:08:58.688 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:58 smithi096 bash[23620]: audit 2024-09-13T22:08:57.342440+0000 mon.a (mon.0) 510 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-13T22:08:58.688 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:58 smithi096 bash[23620]: audit 2024-09-13T22:08:58.315044+0000 mon.a (mon.0) 511 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:58.688 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:58 smithi096 bash[23620]: audit 2024-09-13T22:08:58.319778+0000 mon.a (mon.0) 512 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:58.688 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:58 smithi096 bash[23620]: audit 2024-09-13T22:08:58.321876+0000 mon.a (mon.0) 513 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:08:58.689 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:58 smithi096 bash[23620]: audit 2024-09-13T22:08:58.325040+0000 mon.a (mon.0) 514 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:58.689 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:58 smithi096 bash[23620]: audit 2024-09-13T22:08:58.325273+0000 mon.a (mon.0) 515 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:08:58.689 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:58 smithi096 bash[23620]: audit 2024-09-13T22:08:58.326061+0000 mon.a (mon.0) 516 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:08:58.689 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:58 smithi096 bash[23620]: audit 2024-09-13T22:08:58.331023+0000 mon.a (mon.0) 517 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:58.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:58 smithi138 bash[23295]: cluster 2024-09-13T22:08:55.995405+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-13T22:08:58.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:58 smithi138 bash[23295]: cluster 2024-09-13T22:08:55.995529+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-13T22:08:58.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:58 smithi138 bash[23295]: cluster 2024-09-13T22:08:57.341586+0000 mon.a (mon.0) 508 : cluster [INF] osd.1 [v2:172.21.15.31:6810/2077429465,v1:172.21.15.31:6811/2077429465] boot 2024-09-13T22:08:58.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:58 smithi138 bash[23295]: cluster 2024-09-13T22:08:57.341647+0000 mon.a (mon.0) 509 : cluster [DBG] osdmap e13: 2 total, 2 up, 2 in 2024-09-13T22:08:58.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:58 smithi138 bash[23295]: audit 2024-09-13T22:08:57.342440+0000 mon.a (mon.0) 510 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-13T22:08:58.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:58 smithi138 bash[23295]: audit 2024-09-13T22:08:58.315044+0000 mon.a (mon.0) 511 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:58.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:58 smithi138 bash[23295]: audit 2024-09-13T22:08:58.319778+0000 mon.a (mon.0) 512 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:58.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:58 smithi138 bash[23295]: audit 2024-09-13T22:08:58.321876+0000 mon.a (mon.0) 513 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:08:58.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:58 smithi138 bash[23295]: audit 2024-09-13T22:08:58.325040+0000 mon.a (mon.0) 514 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:58.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:58 smithi138 bash[23295]: audit 2024-09-13T22:08:58.325273+0000 mon.a (mon.0) 515 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:08:58.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:58 smithi138 bash[23295]: audit 2024-09-13T22:08:58.326061+0000 mon.a (mon.0) 516 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:08:58.827 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:58 smithi138 bash[23295]: audit 2024-09-13T22:08:58.331023+0000 mon.a (mon.0) 517 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:59.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:59 smithi096 bash[23620]: cluster 2024-09-13T22:08:57.819215+0000 mgr.a (mgr.14150) 175 : cluster [DBG] pgmap v114: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:59.688 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:59 smithi096 bash[23620]: audit 2024-09-13T22:08:58.345217+0000 mon.a (mon.0) 518 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:59.688 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:59 smithi096 bash[23620]: audit 2024-09-13T22:08:58.357062+0000 mon.a (mon.0) 519 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:59.688 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:59 smithi096 bash[23620]: cluster 2024-09-13T22:08:58.357322+0000 mon.a (mon.0) 520 : cluster [DBG] osdmap e14: 2 total, 2 up, 2 in 2024-09-13T22:08:59.688 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:08:59 smithi096 bash[23620]: audit 2024-09-13T22:08:58.361881+0000 mon.a (mon.0) 521 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:59.721 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:59 smithi031 bash[22709]: cluster 2024-09-13T22:08:57.819215+0000 mgr.a (mgr.14150) 175 : cluster [DBG] pgmap v114: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:59.721 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:59 smithi031 bash[22709]: audit 2024-09-13T22:08:58.345217+0000 mon.a (mon.0) 518 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:59.721 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:59 smithi031 bash[22709]: audit 2024-09-13T22:08:58.357062+0000 mon.a (mon.0) 519 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:59.721 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:59 smithi031 bash[22709]: cluster 2024-09-13T22:08:58.357322+0000 mon.a (mon.0) 520 : cluster [DBG] osdmap e14: 2 total, 2 up, 2 in 2024-09-13T22:08:59.721 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:08:59 smithi031 bash[22709]: audit 2024-09-13T22:08:58.361881+0000 mon.a (mon.0) 521 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:59.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:59 smithi138 bash[23295]: cluster 2024-09-13T22:08:57.819215+0000 mgr.a (mgr.14150) 175 : cluster [DBG] pgmap v114: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T22:08:59.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:59 smithi138 bash[23295]: audit 2024-09-13T22:08:58.345217+0000 mon.a (mon.0) 518 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:59.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:59 smithi138 bash[23295]: audit 2024-09-13T22:08:58.357062+0000 mon.a (mon.0) 519 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:08:59.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:59 smithi138 bash[23295]: cluster 2024-09-13T22:08:58.357322+0000 mon.a (mon.0) 520 : cluster [DBG] osdmap e14: 2 total, 2 up, 2 in 2024-09-13T22:08:59.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:08:59 smithi138 bash[23295]: audit 2024-09-13T22:08:58.361881+0000 mon.a (mon.0) 521 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:00.886 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.b/config 2024-09-13T22:09:01.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:01 smithi096 bash[23620]: cluster 2024-09-13T22:08:59.819671+0000 mgr.a (mgr.14150) 176 : cluster [DBG] pgmap v116: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:01.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:01 smithi031 bash[22709]: cluster 2024-09-13T22:08:59.819671+0000 mgr.a (mgr.14150) 176 : cluster [DBG] pgmap v116: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:01.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:01 smithi138 bash[23295]: cluster 2024-09-13T22:08:59.819671+0000 mgr.a (mgr.14150) 176 : cluster [DBG] pgmap v116: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:03.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:03 smithi096 bash[23620]: cluster 2024-09-13T22:09:01.820111+0000 mgr.a (mgr.14150) 177 : cluster [DBG] pgmap v117: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:03.721 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:03 smithi031 bash[22709]: cluster 2024-09-13T22:09:01.820111+0000 mgr.a (mgr.14150) 177 : cluster [DBG] pgmap v117: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:03.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:03 smithi138 bash[23295]: cluster 2024-09-13T22:09:01.820111+0000 mgr.a (mgr.14150) 177 : cluster [DBG] pgmap v117: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:04.661 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-13T22:09:04.701 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 89616338-721b-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi096:vg_nvme/lv_4 2024-09-13T22:09:05.677 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:05 smithi138 bash[23295]: cluster 2024-09-13T22:09:03.820585+0000 mgr.a (mgr.14150) 178 : cluster [DBG] pgmap v118: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:05.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:05 smithi096 bash[23620]: cluster 2024-09-13T22:09:03.820585+0000 mgr.a (mgr.14150) 178 : cluster [DBG] pgmap v118: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:05.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:05 smithi031 bash[22709]: cluster 2024-09-13T22:09:03.820585+0000 mgr.a (mgr.14150) 178 : cluster [DBG] pgmap v118: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:07.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:07 smithi031 bash[22709]: cluster 2024-09-13T22:09:05.821028+0000 mgr.a (mgr.14150) 179 : cluster [DBG] pgmap v119: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:07.471 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:07 smithi138 bash[23295]: cluster 2024-09-13T22:09:05.821028+0000 mgr.a (mgr.14150) 179 : cluster [DBG] pgmap v119: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:07.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:07 smithi096 bash[23620]: cluster 2024-09-13T22:09:05.821028+0000 mgr.a (mgr.14150) 179 : cluster [DBG] pgmap v119: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:08.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:08 smithi031 bash[22709]: audit 2024-09-13T22:09:07.454550+0000 mon.a (mon.0) 522 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:08.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:08 smithi031 bash[22709]: audit 2024-09-13T22:09:07.462183+0000 mon.a (mon.0) 523 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:08.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:08 smithi031 bash[22709]: audit 2024-09-13T22:09:07.471251+0000 mon.a (mon.0) 524 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:08.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:08 smithi138 bash[23295]: audit 2024-09-13T22:09:07.454550+0000 mon.a (mon.0) 522 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:08.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:08 smithi138 bash[23295]: audit 2024-09-13T22:09:07.462183+0000 mon.a (mon.0) 523 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:08.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:08 smithi138 bash[23295]: audit 2024-09-13T22:09:07.471251+0000 mon.a (mon.0) 524 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:08.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:08 smithi096 bash[23620]: audit 2024-09-13T22:09:07.454550+0000 mon.a (mon.0) 522 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:08.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:08 smithi096 bash[23620]: audit 2024-09-13T22:09:07.462183+0000 mon.a (mon.0) 523 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:08.938 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:08 smithi096 bash[23620]: audit 2024-09-13T22:09:07.471251+0000 mon.a (mon.0) 524 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:09.430 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.b/config 2024-09-13T22:09:09.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:09 smithi031 bash[22709]: cluster 2024-09-13T22:09:07.821490+0000 mgr.a (mgr.14150) 180 : cluster [DBG] pgmap v120: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:09.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:09 smithi138 bash[23295]: cluster 2024-09-13T22:09:07.821490+0000 mgr.a (mgr.14150) 180 : cluster [DBG] pgmap v120: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:09.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:09 smithi096 bash[23620]: cluster 2024-09-13T22:09:07.821490+0000 mgr.a (mgr.14150) 180 : cluster [DBG] pgmap v120: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:11.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:11 smithi138 bash[23295]: cluster 2024-09-13T22:09:09.821960+0000 mgr.a (mgr.14150) 181 : cluster [DBG] pgmap v121: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:11.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:11 smithi138 bash[23295]: audit 2024-09-13T22:09:10.741238+0000 mgr.a (mgr.14150) 182 : audit [DBG] from='client.24155 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi096:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:09:11.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:11 smithi138 bash[23295]: audit 2024-09-13T22:09:10.748237+0000 mon.a (mon.0) 525 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-13T22:09:11.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:11 smithi138 bash[23295]: audit 2024-09-13T22:09:10.754248+0000 mon.a (mon.0) 526 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-13T22:09:11.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:11 smithi138 bash[23295]: audit 2024-09-13T22:09:10.755970+0000 mon.a (mon.0) 527 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:09:11.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:11 smithi096 bash[23620]: cluster 2024-09-13T22:09:09.821960+0000 mgr.a (mgr.14150) 181 : cluster [DBG] pgmap v121: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:11.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:11 smithi096 bash[23620]: audit 2024-09-13T22:09:10.741238+0000 mgr.a (mgr.14150) 182 : audit [DBG] from='client.24155 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi096:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:09:11.938 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:11 smithi096 bash[23620]: audit 2024-09-13T22:09:10.748237+0000 mon.a (mon.0) 525 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-13T22:09:11.938 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:11 smithi096 bash[23620]: audit 2024-09-13T22:09:10.754248+0000 mon.a (mon.0) 526 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-13T22:09:11.938 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:11 smithi096 bash[23620]: audit 2024-09-13T22:09:10.755970+0000 mon.a (mon.0) 527 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:09:11.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:11 smithi031 bash[22709]: cluster 2024-09-13T22:09:09.821960+0000 mgr.a (mgr.14150) 181 : cluster [DBG] pgmap v121: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:11.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:11 smithi031 bash[22709]: audit 2024-09-13T22:09:10.741238+0000 mgr.a (mgr.14150) 182 : audit [DBG] from='client.24155 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi096:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:09:11.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:11 smithi031 bash[22709]: audit 2024-09-13T22:09:10.748237+0000 mon.a (mon.0) 525 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-13T22:09:11.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:11 smithi031 bash[22709]: audit 2024-09-13T22:09:10.754248+0000 mon.a (mon.0) 526 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-13T22:09:11.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:11 smithi031 bash[22709]: audit 2024-09-13T22:09:10.755970+0000 mon.a (mon.0) 527 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:09:13.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:13 smithi138 bash[23295]: cluster 2024-09-13T22:09:11.822440+0000 mgr.a (mgr.14150) 183 : cluster [DBG] pgmap v122: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:13.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:13 smithi096 bash[23620]: cluster 2024-09-13T22:09:11.822440+0000 mgr.a (mgr.14150) 183 : cluster [DBG] pgmap v122: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:13.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:13 smithi031 bash[22709]: cluster 2024-09-13T22:09:11.822440+0000 mgr.a (mgr.14150) 183 : cluster [DBG] pgmap v122: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:15.804 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:15 smithi096 bash[23620]: cluster 2024-09-13T22:09:13.822918+0000 mgr.a (mgr.14150) 184 : cluster [DBG] pgmap v123: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:15.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:15 smithi138 bash[23295]: cluster 2024-09-13T22:09:13.822918+0000 mgr.a (mgr.14150) 184 : cluster [DBG] pgmap v123: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:15.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:15 smithi031 bash[22709]: cluster 2024-09-13T22:09:13.822918+0000 mgr.a (mgr.14150) 184 : cluster [DBG] pgmap v123: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:17.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:17 smithi138 bash[23295]: cluster 2024-09-13T22:09:15.823452+0000 mgr.a (mgr.14150) 185 : cluster [DBG] pgmap v124: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:17.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:17 smithi138 bash[23295]: audit 2024-09-13T22:09:16.946437+0000 mon.a (mon.0) 528 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:17.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:17 smithi138 bash[23295]: audit 2024-09-13T22:09:16.952067+0000 mon.a (mon.0) 529 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:17.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:17 smithi138 bash[23295]: audit 2024-09-13T22:09:16.959309+0000 mon.a (mon.0) 530 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:17.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:17 smithi096 bash[23620]: cluster 2024-09-13T22:09:15.823452+0000 mgr.a (mgr.14150) 185 : cluster [DBG] pgmap v124: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:17.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:17 smithi096 bash[23620]: audit 2024-09-13T22:09:16.946437+0000 mon.a (mon.0) 528 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:17.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:17 smithi096 bash[23620]: audit 2024-09-13T22:09:16.952067+0000 mon.a (mon.0) 529 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:17.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:17 smithi096 bash[23620]: audit 2024-09-13T22:09:16.959309+0000 mon.a (mon.0) 530 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:17.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:17 smithi031 bash[22709]: cluster 2024-09-13T22:09:15.823452+0000 mgr.a (mgr.14150) 185 : cluster [DBG] pgmap v124: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:17.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:17 smithi031 bash[22709]: audit 2024-09-13T22:09:16.946437+0000 mon.a (mon.0) 528 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:17.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:17 smithi031 bash[22709]: audit 2024-09-13T22:09:16.952067+0000 mon.a (mon.0) 529 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:17.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:17 smithi031 bash[22709]: audit 2024-09-13T22:09:16.959309+0000 mon.a (mon.0) 530 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:19.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:19 smithi138 bash[23295]: cluster 2024-09-13T22:09:17.824039+0000 mgr.a (mgr.14150) 186 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:19.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:19 smithi138 bash[23295]: audit 2024-09-13T22:09:18.568588+0000 mon.a (mon.0) 531 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:19.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:19 smithi138 bash[23295]: audit 2024-09-13T22:09:18.576524+0000 mon.a (mon.0) 532 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:19.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:19 smithi138 bash[23295]: audit 2024-09-13T22:09:18.585824+0000 mon.a (mon.0) 533 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:19.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:19 smithi096 bash[23620]: cluster 2024-09-13T22:09:17.824039+0000 mgr.a (mgr.14150) 186 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:19.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:19 smithi096 bash[23620]: audit 2024-09-13T22:09:18.568588+0000 mon.a (mon.0) 531 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:19.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:19 smithi096 bash[23620]: audit 2024-09-13T22:09:18.576524+0000 mon.a (mon.0) 532 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:19.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:19 smithi096 bash[23620]: audit 2024-09-13T22:09:18.585824+0000 mon.a (mon.0) 533 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:19.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:19 smithi031 bash[22709]: cluster 2024-09-13T22:09:17.824039+0000 mgr.a (mgr.14150) 186 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:19.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:19 smithi031 bash[22709]: audit 2024-09-13T22:09:18.568588+0000 mon.a (mon.0) 531 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:19.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:19 smithi031 bash[22709]: audit 2024-09-13T22:09:18.576524+0000 mon.a (mon.0) 532 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:19.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:19 smithi031 bash[22709]: audit 2024-09-13T22:09:18.585824+0000 mon.a (mon.0) 533 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:20.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:20 smithi138 bash[23295]: audit 2024-09-13T22:09:19.761895+0000 mon.a (mon.0) 534 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "84e3f22b-25fb-4b63-a817-b363830eae5f"}]: dispatch 2024-09-13T22:09:20.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:20 smithi138 bash[23295]: audit 2024-09-13T22:09:19.762635+0000 mon.b (mon.2) 6 : audit [INF] from='client.? 172.21.15.96:0/522621053' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "84e3f22b-25fb-4b63-a817-b363830eae5f"}]: dispatch 2024-09-13T22:09:20.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:20 smithi138 bash[23295]: audit 2024-09-13T22:09:19.765309+0000 mon.a (mon.0) 535 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "84e3f22b-25fb-4b63-a817-b363830eae5f"}]': finished 2024-09-13T22:09:20.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:20 smithi138 bash[23295]: cluster 2024-09-13T22:09:19.770254+0000 mon.a (mon.0) 536 : cluster [DBG] osdmap e15: 3 total, 2 up, 3 in 2024-09-13T22:09:20.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:20 smithi138 bash[23295]: audit 2024-09-13T22:09:19.770706+0000 mon.a (mon.0) 537 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-13T22:09:20.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:20 smithi138 bash[23295]: audit 2024-09-13T22:09:20.377730+0000 mon.b (mon.2) 7 : audit [DBG] from='client.? 172.21.15.96:0/4285328097' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-13T22:09:20.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:20 smithi096 bash[23620]: audit 2024-09-13T22:09:19.761895+0000 mon.a (mon.0) 534 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "84e3f22b-25fb-4b63-a817-b363830eae5f"}]: dispatch 2024-09-13T22:09:20.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:20 smithi096 bash[23620]: audit 2024-09-13T22:09:19.762635+0000 mon.b (mon.2) 6 : audit [INF] from='client.? 172.21.15.96:0/522621053' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "84e3f22b-25fb-4b63-a817-b363830eae5f"}]: dispatch 2024-09-13T22:09:20.938 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:20 smithi096 bash[23620]: audit 2024-09-13T22:09:19.765309+0000 mon.a (mon.0) 535 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "84e3f22b-25fb-4b63-a817-b363830eae5f"}]': finished 2024-09-13T22:09:20.938 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:20 smithi096 bash[23620]: cluster 2024-09-13T22:09:19.770254+0000 mon.a (mon.0) 536 : cluster [DBG] osdmap e15: 3 total, 2 up, 3 in 2024-09-13T22:09:20.938 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:20 smithi096 bash[23620]: audit 2024-09-13T22:09:19.770706+0000 mon.a (mon.0) 537 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-13T22:09:20.938 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:20 smithi096 bash[23620]: audit 2024-09-13T22:09:20.377730+0000 mon.b (mon.2) 7 : audit [DBG] from='client.? 172.21.15.96:0/4285328097' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-13T22:09:20.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:20 smithi031 bash[22709]: audit 2024-09-13T22:09:19.761895+0000 mon.a (mon.0) 534 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "84e3f22b-25fb-4b63-a817-b363830eae5f"}]: dispatch 2024-09-13T22:09:20.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:20 smithi031 bash[22709]: audit 2024-09-13T22:09:19.762635+0000 mon.b (mon.2) 6 : audit [INF] from='client.? 172.21.15.96:0/522621053' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "84e3f22b-25fb-4b63-a817-b363830eae5f"}]: dispatch 2024-09-13T22:09:20.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:20 smithi031 bash[22709]: audit 2024-09-13T22:09:19.765309+0000 mon.a (mon.0) 535 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "84e3f22b-25fb-4b63-a817-b363830eae5f"}]': finished 2024-09-13T22:09:20.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:20 smithi031 bash[22709]: cluster 2024-09-13T22:09:19.770254+0000 mon.a (mon.0) 536 : cluster [DBG] osdmap e15: 3 total, 2 up, 3 in 2024-09-13T22:09:20.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:20 smithi031 bash[22709]: audit 2024-09-13T22:09:19.770706+0000 mon.a (mon.0) 537 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-13T22:09:20.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:20 smithi031 bash[22709]: audit 2024-09-13T22:09:20.377730+0000 mon.b (mon.2) 7 : audit [DBG] from='client.? 172.21.15.96:0/4285328097' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-13T22:09:22.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:21 smithi138 bash[23295]: cluster 2024-09-13T22:09:19.824620+0000 mgr.a (mgr.14150) 187 : cluster [DBG] pgmap v127: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:22.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:21 smithi096 bash[23620]: cluster 2024-09-13T22:09:19.824620+0000 mgr.a (mgr.14150) 187 : cluster [DBG] pgmap v127: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:22.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:21 smithi031 bash[22709]: cluster 2024-09-13T22:09:19.824620+0000 mgr.a (mgr.14150) 187 : cluster [DBG] pgmap v127: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:24.042 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:23 smithi031 bash[22709]: cluster 2024-09-13T22:09:21.825179+0000 mgr.a (mgr.14150) 188 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:24.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:23 smithi138 bash[23295]: cluster 2024-09-13T22:09:21.825179+0000 mgr.a (mgr.14150) 188 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:24.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:23 smithi096 bash[23620]: cluster 2024-09-13T22:09:21.825179+0000 mgr.a (mgr.14150) 188 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:25.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:24 smithi096 bash[23620]: cluster 2024-09-13T22:09:23.825696+0000 mgr.a (mgr.14150) 189 : cluster [DBG] pgmap v129: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:25.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:24 smithi031 bash[22709]: cluster 2024-09-13T22:09:23.825696+0000 mgr.a (mgr.14150) 189 : cluster [DBG] pgmap v129: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:25.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:24 smithi138 bash[23295]: cluster 2024-09-13T22:09:23.825696+0000 mgr.a (mgr.14150) 189 : cluster [DBG] pgmap v129: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:27.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:26 smithi138 bash[23295]: cluster 2024-09-13T22:09:25.826028+0000 mgr.a (mgr.14150) 190 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:27.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:26 smithi096 bash[23620]: cluster 2024-09-13T22:09:25.826028+0000 mgr.a (mgr.14150) 190 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:27.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:26 smithi031 bash[22709]: cluster 2024-09-13T22:09:25.826028+0000 mgr.a (mgr.14150) 190 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:28.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:28 smithi138 bash[23295]: audit 2024-09-13T22:09:27.659584+0000 mon.a (mon.0) 538 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:28.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:28 smithi138 bash[23295]: audit 2024-09-13T22:09:27.668248+0000 mon.a (mon.0) 539 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:28.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:28 smithi138 bash[23295]: audit 2024-09-13T22:09:27.677531+0000 mon.a (mon.0) 540 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:28.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:28 smithi096 bash[23620]: audit 2024-09-13T22:09:27.659584+0000 mon.a (mon.0) 538 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:28.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:28 smithi096 bash[23620]: audit 2024-09-13T22:09:27.668248+0000 mon.a (mon.0) 539 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:28.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:28 smithi096 bash[23620]: audit 2024-09-13T22:09:27.677531+0000 mon.a (mon.0) 540 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:28.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:28 smithi031 bash[22709]: audit 2024-09-13T22:09:27.659584+0000 mon.a (mon.0) 538 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:28.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:28 smithi031 bash[22709]: audit 2024-09-13T22:09:27.668248+0000 mon.a (mon.0) 539 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:28.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:28 smithi031 bash[22709]: audit 2024-09-13T22:09:27.677531+0000 mon.a (mon.0) 540 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:29.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:29 smithi096 bash[23620]: cluster 2024-09-13T22:09:27.826567+0000 mgr.a (mgr.14150) 191 : cluster [DBG] pgmap v131: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:29.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:29 smithi031 bash[22709]: cluster 2024-09-13T22:09:27.826567+0000 mgr.a (mgr.14150) 191 : cluster [DBG] pgmap v131: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:30.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:29 smithi138 bash[23295]: cluster 2024-09-13T22:09:27.826567+0000 mgr.a (mgr.14150) 191 : cluster [DBG] pgmap v131: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:31.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:31 smithi096 bash[23620]: cluster 2024-09-13T22:09:29.827159+0000 mgr.a (mgr.14150) 192 : cluster [DBG] pgmap v132: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:31.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:31 smithi031 bash[22709]: cluster 2024-09-13T22:09:29.827159+0000 mgr.a (mgr.14150) 192 : cluster [DBG] pgmap v132: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:32.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:31 smithi138 bash[23295]: cluster 2024-09-13T22:09:29.827159+0000 mgr.a (mgr.14150) 192 : cluster [DBG] pgmap v132: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:33.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:33 smithi096 bash[23620]: cluster 2024-09-13T22:09:31.827720+0000 mgr.a (mgr.14150) 193 : cluster [DBG] pgmap v133: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:33.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:33 smithi096 bash[23620]: audit 2024-09-13T22:09:33.277881+0000 mon.a (mon.0) 541 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-13T22:09:33.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:33 smithi096 bash[23620]: audit 2024-09-13T22:09:33.279701+0000 mon.a (mon.0) 542 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:09:33.972 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:33 smithi031 bash[22709]: cluster 2024-09-13T22:09:31.827720+0000 mgr.a (mgr.14150) 193 : cluster [DBG] pgmap v133: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:33.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:33 smithi031 bash[22709]: audit 2024-09-13T22:09:33.277881+0000 mon.a (mon.0) 541 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-13T22:09:33.973 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:33 smithi031 bash[22709]: audit 2024-09-13T22:09:33.279701+0000 mon.a (mon.0) 542 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:09:34.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:33 smithi138 bash[23295]: cluster 2024-09-13T22:09:31.827720+0000 mgr.a (mgr.14150) 193 : cluster [DBG] pgmap v133: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:34.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:33 smithi138 bash[23295]: audit 2024-09-13T22:09:33.277881+0000 mon.a (mon.0) 541 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-13T22:09:34.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:33 smithi138 bash[23295]: audit 2024-09-13T22:09:33.279701+0000 mon.a (mon.0) 542 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:09:34.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:34 smithi031 bash[22709]: cephadm 2024-09-13T22:09:33.281279+0000 mgr.a (mgr.14150) 194 : cephadm [INF] Deploying daemon osd.2 on smithi096 2024-09-13T22:09:35.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:34 smithi138 bash[23295]: cephadm 2024-09-13T22:09:33.281279+0000 mgr.a (mgr.14150) 194 : cephadm [INF] Deploying daemon osd.2 on smithi096 2024-09-13T22:09:35.147 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:34 smithi096 bash[23620]: cephadm 2024-09-13T22:09:33.281279+0000 mgr.a (mgr.14150) 194 : cephadm [INF] Deploying daemon osd.2 on smithi096 2024-09-13T22:09:35.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:35 smithi031 bash[22709]: cluster 2024-09-13T22:09:33.828307+0000 mgr.a (mgr.14150) 195 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:36.041 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:35 smithi096 bash[23620]: cluster 2024-09-13T22:09:33.828307+0000 mgr.a (mgr.14150) 195 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:36.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:35 smithi138 bash[23295]: cluster 2024-09-13T22:09:33.828307+0000 mgr.a (mgr.14150) 195 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:37.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:37 smithi031 bash[22709]: cluster 2024-09-13T22:09:35.828866+0000 mgr.a (mgr.14150) 196 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:37.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:37 smithi031 bash[22709]: audit 2024-09-13T22:09:37.159213+0000 mon.a (mon.0) 543 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:37.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:37 smithi031 bash[22709]: audit 2024-09-13T22:09:37.167458+0000 mon.a (mon.0) 544 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:37.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:37 smithi031 bash[22709]: audit 2024-09-13T22:09:37.177007+0000 mon.a (mon.0) 545 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:38.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:37 smithi138 bash[23295]: cluster 2024-09-13T22:09:35.828866+0000 mgr.a (mgr.14150) 196 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:38.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:37 smithi138 bash[23295]: audit 2024-09-13T22:09:37.159213+0000 mon.a (mon.0) 543 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:38.076 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:37 smithi138 bash[23295]: audit 2024-09-13T22:09:37.167458+0000 mon.a (mon.0) 544 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:38.076 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:37 smithi138 bash[23295]: audit 2024-09-13T22:09:37.177007+0000 mon.a (mon.0) 545 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:38.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:37 smithi096 bash[23620]: cluster 2024-09-13T22:09:35.828866+0000 mgr.a (mgr.14150) 196 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:38.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:37 smithi096 bash[23620]: audit 2024-09-13T22:09:37.159213+0000 mon.a (mon.0) 543 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:38.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:37 smithi096 bash[23620]: audit 2024-09-13T22:09:37.167458+0000 mon.a (mon.0) 544 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:38.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:37 smithi096 bash[23620]: audit 2024-09-13T22:09:37.177007+0000 mon.a (mon.0) 545 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:38.667 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:38 smithi096 systemd[1]: /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-13T22:09:38.667 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 13 22:09:38 smithi096 systemd[1]: /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-13T22:09:38.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:38 smithi096 systemd[1]: /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-13T22:09:38.937 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 13 22:09:38 smithi096 systemd[1]: /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-13T22:09:40.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:39 smithi138 bash[23295]: cluster 2024-09-13T22:09:37.829394+0000 mgr.a (mgr.14150) 197 : cluster [DBG] pgmap v136: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:40.076 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:39 smithi138 bash[23295]: audit 2024-09-13T22:09:38.739027+0000 mon.a (mon.0) 546 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:40.076 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:39 smithi138 bash[23295]: audit 2024-09-13T22:09:38.747029+0000 mon.a (mon.0) 547 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:40.076 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:39 smithi138 bash[23295]: audit 2024-09-13T22:09:38.758080+0000 mon.a (mon.0) 548 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:40.076 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:39 smithi138 bash[23295]: audit 2024-09-13T22:09:38.942879+0000 mon.a (mon.0) 549 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:09:40.076 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:39 smithi138 bash[23295]: audit 2024-09-13T22:09:38.950434+0000 mon.a (mon.0) 550 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:40.076 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:39 smithi138 bash[23295]: audit 2024-09-13T22:09:38.951011+0000 mon.a (mon.0) 551 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:09:40.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:39 smithi138 bash[23295]: audit 2024-09-13T22:09:38.953782+0000 mon.a (mon.0) 552 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:09:40.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:39 smithi138 bash[23295]: audit 2024-09-13T22:09:38.959068+0000 mon.a (mon.0) 553 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:40.077 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:39 smithi138 bash[23295]: audit 2024-09-13T22:09:38.965546+0000 mon.a (mon.0) 554 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:40.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:39 smithi096 bash[23620]: cluster 2024-09-13T22:09:37.829394+0000 mgr.a (mgr.14150) 197 : cluster [DBG] pgmap v136: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:40.188 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:39 smithi096 bash[23620]: audit 2024-09-13T22:09:38.739027+0000 mon.a (mon.0) 546 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:40.188 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:39 smithi096 bash[23620]: audit 2024-09-13T22:09:38.747029+0000 mon.a (mon.0) 547 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:40.188 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:39 smithi096 bash[23620]: audit 2024-09-13T22:09:38.758080+0000 mon.a (mon.0) 548 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:40.188 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:39 smithi096 bash[23620]: audit 2024-09-13T22:09:38.942879+0000 mon.a (mon.0) 549 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:09:40.188 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:39 smithi096 bash[23620]: audit 2024-09-13T22:09:38.950434+0000 mon.a (mon.0) 550 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:40.188 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:39 smithi096 bash[23620]: audit 2024-09-13T22:09:38.951011+0000 mon.a (mon.0) 551 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:09:40.188 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:39 smithi096 bash[23620]: audit 2024-09-13T22:09:38.953782+0000 mon.a (mon.0) 552 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:09:40.189 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:39 smithi096 bash[23620]: audit 2024-09-13T22:09:38.959068+0000 mon.a (mon.0) 553 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:40.189 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:39 smithi096 bash[23620]: audit 2024-09-13T22:09:38.965546+0000 mon.a (mon.0) 554 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:40.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:39 smithi031 bash[22709]: cluster 2024-09-13T22:09:37.829394+0000 mgr.a (mgr.14150) 197 : cluster [DBG] pgmap v136: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:40.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:39 smithi031 bash[22709]: audit 2024-09-13T22:09:38.739027+0000 mon.a (mon.0) 546 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:40.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:39 smithi031 bash[22709]: audit 2024-09-13T22:09:38.747029+0000 mon.a (mon.0) 547 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:40.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:39 smithi031 bash[22709]: audit 2024-09-13T22:09:38.758080+0000 mon.a (mon.0) 548 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:40.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:39 smithi031 bash[22709]: audit 2024-09-13T22:09:38.942879+0000 mon.a (mon.0) 549 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:09:40.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:39 smithi031 bash[22709]: audit 2024-09-13T22:09:38.950434+0000 mon.a (mon.0) 550 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:40.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:39 smithi031 bash[22709]: audit 2024-09-13T22:09:38.951011+0000 mon.a (mon.0) 551 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:09:40.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:39 smithi031 bash[22709]: audit 2024-09-13T22:09:38.953782+0000 mon.a (mon.0) 552 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:09:40.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:39 smithi031 bash[22709]: audit 2024-09-13T22:09:38.959068+0000 mon.a (mon.0) 553 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:40.222 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:39 smithi031 bash[22709]: audit 2024-09-13T22:09:38.965546+0000 mon.a (mon.0) 554 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:42.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:41 smithi138 bash[23295]: cluster 2024-09-13T22:09:39.829920+0000 mgr.a (mgr.14150) 198 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:42.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:41 smithi138 bash[23295]: audit 2024-09-13T22:09:41.083479+0000 mon.a (mon.0) 555 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:42.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:41 smithi138 bash[23295]: audit 2024-09-13T22:09:41.091288+0000 mon.a (mon.0) 556 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:42.076 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:41 smithi138 bash[23295]: audit 2024-09-13T22:09:41.100511+0000 mon.a (mon.0) 557 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:42.133 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:41 smithi096 bash[23620]: cluster 2024-09-13T22:09:39.829920+0000 mgr.a (mgr.14150) 198 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:42.133 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:41 smithi096 bash[23620]: audit 2024-09-13T22:09:41.083479+0000 mon.a (mon.0) 555 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:42.133 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:41 smithi096 bash[23620]: audit 2024-09-13T22:09:41.091288+0000 mon.a (mon.0) 556 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:42.133 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:41 smithi096 bash[23620]: audit 2024-09-13T22:09:41.100511+0000 mon.a (mon.0) 557 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:42.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:41 smithi031 bash[22709]: cluster 2024-09-13T22:09:39.829920+0000 mgr.a (mgr.14150) 198 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:42.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:41 smithi031 bash[22709]: audit 2024-09-13T22:09:41.083479+0000 mon.a (mon.0) 555 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:42.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:41 smithi031 bash[22709]: audit 2024-09-13T22:09:41.091288+0000 mon.a (mon.0) 556 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:42.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:41 smithi031 bash[22709]: audit 2024-09-13T22:09:41.100511+0000 mon.a (mon.0) 557 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:43.997 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:43 smithi031 bash[22709]: cluster 2024-09-13T22:09:41.830430+0000 mgr.a (mgr.14150) 199 : cluster [DBG] pgmap v138: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:44.005 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:43 smithi096 bash[23620]: cluster 2024-09-13T22:09:41.830430+0000 mgr.a (mgr.14150) 199 : cluster [DBG] pgmap v138: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:44.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:43 smithi138 bash[23295]: cluster 2024-09-13T22:09:41.830430+0000 mgr.a (mgr.14150) 199 : cluster [DBG] pgmap v138: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:45.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:45 smithi096 bash[23620]: cluster 2024-09-13T22:09:43.830891+0000 mgr.a (mgr.14150) 200 : cluster [DBG] pgmap v139: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:45.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:45 smithi031 bash[22709]: cluster 2024-09-13T22:09:43.830891+0000 mgr.a (mgr.14150) 200 : cluster [DBG] pgmap v139: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:46.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:45 smithi138 bash[23295]: cluster 2024-09-13T22:09:43.830891+0000 mgr.a (mgr.14150) 200 : cluster [DBG] pgmap v139: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:47.903 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:47 smithi096 bash[23620]: cluster 2024-09-13T22:09:45.831329+0000 mgr.a (mgr.14150) 201 : cluster [DBG] pgmap v140: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:48.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:47 smithi138 bash[23295]: cluster 2024-09-13T22:09:45.831329+0000 mgr.a (mgr.14150) 201 : cluster [DBG] pgmap v140: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:48.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:47 smithi031 bash[22709]: cluster 2024-09-13T22:09:45.831329+0000 mgr.a (mgr.14150) 201 : cluster [DBG] pgmap v140: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:49.132 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:48 smithi138 bash[23295]: cluster 2024-09-13T22:09:47.831777+0000 mgr.a (mgr.14150) 202 : cluster [DBG] pgmap v141: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:49.133 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:48 smithi138 bash[23295]: audit 2024-09-13T22:09:47.856842+0000 mon.a (mon.0) 558 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:49.133 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:48 smithi138 bash[23295]: audit 2024-09-13T22:09:47.865399+0000 mon.a (mon.0) 559 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:49.133 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:48 smithi138 bash[23295]: audit 2024-09-13T22:09:47.874665+0000 mon.a (mon.0) 560 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:49.169 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:48 smithi096 bash[23620]: cluster 2024-09-13T22:09:47.831777+0000 mgr.a (mgr.14150) 202 : cluster [DBG] pgmap v141: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:49.169 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:48 smithi096 bash[23620]: audit 2024-09-13T22:09:47.856842+0000 mon.a (mon.0) 558 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:49.169 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:48 smithi096 bash[23620]: audit 2024-09-13T22:09:47.865399+0000 mon.a (mon.0) 559 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:49.169 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:48 smithi096 bash[23620]: audit 2024-09-13T22:09:47.874665+0000 mon.a (mon.0) 560 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:49.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:48 smithi031 bash[22709]: cluster 2024-09-13T22:09:47.831777+0000 mgr.a (mgr.14150) 202 : cluster [DBG] pgmap v141: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:49.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:48 smithi031 bash[22709]: audit 2024-09-13T22:09:47.856842+0000 mon.a (mon.0) 558 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:49.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:48 smithi031 bash[22709]: audit 2024-09-13T22:09:47.865399+0000 mon.a (mon.0) 559 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:49.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:48 smithi031 bash[22709]: audit 2024-09-13T22:09:47.874665+0000 mon.a (mon.0) 560 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:50.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:49 smithi096 bash[23620]: audit 2024-09-13T22:09:49.013581+0000 mon.a (mon.0) 561 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-13T22:09:50.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:49 smithi096 bash[23620]: audit 2024-09-13T22:09:49.014712+0000 mon.b (mon.2) 8 : audit [INF] from='osd.2 [v2:172.21.15.96:6800/2180576982,v1:172.21.15.96:6801/2180576982]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-13T22:09:50.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:49 smithi031 bash[22709]: audit 2024-09-13T22:09:49.013581+0000 mon.a (mon.0) 561 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-13T22:09:50.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:49 smithi031 bash[22709]: audit 2024-09-13T22:09:49.014712+0000 mon.b (mon.2) 8 : audit [INF] from='osd.2 [v2:172.21.15.96:6800/2180576982,v1:172.21.15.96:6801/2180576982]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-13T22:09:50.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:49 smithi138 bash[23295]: audit 2024-09-13T22:09:49.013581+0000 mon.a (mon.0) 561 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-13T22:09:50.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:49 smithi138 bash[23295]: audit 2024-09-13T22:09:49.014712+0000 mon.b (mon.2) 8 : audit [INF] from='osd.2 [v2:172.21.15.96:6800/2180576982,v1:172.21.15.96:6801/2180576982]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-13T22:09:51.144 INFO:teuthology.orchestra.run.smithi096.stdout:Created osd(s) 2 on host 'smithi096' 2024-09-13T22:09:51.160 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:50 smithi096 bash[23620]: cluster 2024-09-13T22:09:49.832263+0000 mgr.a (mgr.14150) 203 : cluster [DBG] pgmap v142: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:51.161 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:50 smithi096 bash[23620]: audit 2024-09-13T22:09:49.864372+0000 mon.a (mon.0) 562 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-13T22:09:51.161 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:50 smithi096 bash[23620]: cluster 2024-09-13T22:09:49.869107+0000 mon.a (mon.0) 563 : cluster [DBG] osdmap e16: 3 total, 2 up, 3 in 2024-09-13T22:09:51.161 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:50 smithi096 bash[23620]: audit 2024-09-13T22:09:49.869510+0000 mon.a (mon.0) 564 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-13T22:09:51.161 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:50 smithi096 bash[23620]: audit 2024-09-13T22:09:49.870341+0000 mon.a (mon.0) 565 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]: dispatch 2024-09-13T22:09:51.161 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:50 smithi096 bash[23620]: audit 2024-09-13T22:09:49.871498+0000 mon.b (mon.2) 9 : audit [INF] from='osd.2 [v2:172.21.15.96:6800/2180576982,v1:172.21.15.96:6801/2180576982]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]: dispatch 2024-09-13T22:09:51.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:50 smithi031 bash[22709]: cluster 2024-09-13T22:09:49.832263+0000 mgr.a (mgr.14150) 203 : cluster [DBG] pgmap v142: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:51.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:50 smithi031 bash[22709]: audit 2024-09-13T22:09:49.864372+0000 mon.a (mon.0) 562 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-13T22:09:51.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:50 smithi031 bash[22709]: cluster 2024-09-13T22:09:49.869107+0000 mon.a (mon.0) 563 : cluster [DBG] osdmap e16: 3 total, 2 up, 3 in 2024-09-13T22:09:51.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:50 smithi031 bash[22709]: audit 2024-09-13T22:09:49.869510+0000 mon.a (mon.0) 564 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-13T22:09:51.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:50 smithi031 bash[22709]: audit 2024-09-13T22:09:49.870341+0000 mon.a (mon.0) 565 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]: dispatch 2024-09-13T22:09:51.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:50 smithi031 bash[22709]: audit 2024-09-13T22:09:49.871498+0000 mon.b (mon.2) 9 : audit [INF] from='osd.2 [v2:172.21.15.96:6800/2180576982,v1:172.21.15.96:6801/2180576982]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]: dispatch 2024-09-13T22:09:51.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:50 smithi138 bash[23295]: cluster 2024-09-13T22:09:49.832263+0000 mgr.a (mgr.14150) 203 : cluster [DBG] pgmap v142: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:51.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:50 smithi138 bash[23295]: audit 2024-09-13T22:09:49.864372+0000 mon.a (mon.0) 562 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-13T22:09:51.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:50 smithi138 bash[23295]: cluster 2024-09-13T22:09:49.869107+0000 mon.a (mon.0) 563 : cluster [DBG] osdmap e16: 3 total, 2 up, 3 in 2024-09-13T22:09:51.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:50 smithi138 bash[23295]: audit 2024-09-13T22:09:49.869510+0000 mon.a (mon.0) 564 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-13T22:09:51.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:50 smithi138 bash[23295]: audit 2024-09-13T22:09:49.870341+0000 mon.a (mon.0) 565 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]: dispatch 2024-09-13T22:09:51.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:50 smithi138 bash[23295]: audit 2024-09-13T22:09:49.871498+0000 mon.b (mon.2) 9 : audit [INF] from='osd.2 [v2:172.21.15.96:6800/2180576982,v1:172.21.15.96:6801/2180576982]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]: dispatch 2024-09-13T22:09:51.793 DEBUG:teuthology.orchestra.run.smithi096:osd.2> sudo journalctl -f -n 0 -u ceph-89616338-721b-11ef-bceb-c7b262605968@osd.2.service 2024-09-13T22:09:51.796 INFO:tasks.cephadm:Deploying osd.3 on smithi096 with /dev/vg_nvme/lv_3... 2024-09-13T22:09:51.796 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 89616338-721b-11ef-bceb-c7b262605968 -- lvm zap /dev/vg_nvme/lv_3 2024-09-13T22:09:52.188 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:51 smithi096 bash[23620]: audit 2024-09-13T22:09:50.866901+0000 mon.a (mon.0) 566 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]': finished 2024-09-13T22:09:52.188 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:51 smithi096 bash[23620]: cluster 2024-09-13T22:09:50.873547+0000 mon.a (mon.0) 567 : cluster [DBG] osdmap e17: 3 total, 2 up, 3 in 2024-09-13T22:09:52.189 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:51 smithi096 bash[23620]: audit 2024-09-13T22:09:50.874524+0000 mon.a (mon.0) 568 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-13T22:09:52.189 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:51 smithi096 bash[23620]: audit 2024-09-13T22:09:50.883296+0000 mon.a (mon.0) 569 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-13T22:09:52.189 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:51 smithi096 bash[23620]: audit 2024-09-13T22:09:51.125600+0000 mon.a (mon.0) 570 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:09:52.189 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:51 smithi096 bash[23620]: audit 2024-09-13T22:09:51.135481+0000 mon.a (mon.0) 571 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:52.189 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:51 smithi096 bash[23620]: audit 2024-09-13T22:09:51.136084+0000 mon.a (mon.0) 572 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-13T22:09:52.190 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:51 smithi096 bash[23620]: cephadm 2024-09-13T22:09:51.137639+0000 mgr.a (mgr.14150) 204 : cephadm [INF] Adjusting osd_memory_target on smithi096 to 16241M 2024-09-13T22:09:52.190 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:51 smithi096 bash[23620]: audit 2024-09-13T22:09:51.144648+0000 mon.a (mon.0) 573 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:52.190 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:51 smithi096 bash[23620]: audit 2024-09-13T22:09:51.152144+0000 mon.a (mon.0) 574 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:52.190 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:51 smithi096 bash[23620]: audit 2024-09-13T22:09:51.156441+0000 mon.a (mon.0) 575 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:09:52.190 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:51 smithi096 bash[23620]: audit 2024-09-13T22:09:51.157882+0000 mon.a (mon.0) 576 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:09:52.190 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:51 smithi096 bash[23620]: audit 2024-09-13T22:09:51.168553+0000 mon.a (mon.0) 577 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:52.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:51 smithi031 bash[22709]: audit 2024-09-13T22:09:50.866901+0000 mon.a (mon.0) 566 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]': finished 2024-09-13T22:09:52.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:51 smithi031 bash[22709]: cluster 2024-09-13T22:09:50.873547+0000 mon.a (mon.0) 567 : cluster [DBG] osdmap e17: 3 total, 2 up, 3 in 2024-09-13T22:09:52.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:51 smithi031 bash[22709]: audit 2024-09-13T22:09:50.874524+0000 mon.a (mon.0) 568 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-13T22:09:52.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:51 smithi031 bash[22709]: audit 2024-09-13T22:09:50.883296+0000 mon.a (mon.0) 569 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-13T22:09:52.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:51 smithi031 bash[22709]: audit 2024-09-13T22:09:51.125600+0000 mon.a (mon.0) 570 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:09:52.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:51 smithi031 bash[22709]: audit 2024-09-13T22:09:51.135481+0000 mon.a (mon.0) 571 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:52.222 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:51 smithi031 bash[22709]: audit 2024-09-13T22:09:51.136084+0000 mon.a (mon.0) 572 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-13T22:09:52.222 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:51 smithi031 bash[22709]: cephadm 2024-09-13T22:09:51.137639+0000 mgr.a (mgr.14150) 204 : cephadm [INF] Adjusting osd_memory_target on smithi096 to 16241M 2024-09-13T22:09:52.222 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:51 smithi031 bash[22709]: audit 2024-09-13T22:09:51.144648+0000 mon.a (mon.0) 573 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:52.222 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:51 smithi031 bash[22709]: audit 2024-09-13T22:09:51.152144+0000 mon.a (mon.0) 574 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:52.222 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:51 smithi031 bash[22709]: audit 2024-09-13T22:09:51.156441+0000 mon.a (mon.0) 575 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:09:52.222 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:51 smithi031 bash[22709]: audit 2024-09-13T22:09:51.157882+0000 mon.a (mon.0) 576 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:09:52.223 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:51 smithi031 bash[22709]: audit 2024-09-13T22:09:51.168553+0000 mon.a (mon.0) 577 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:52.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:51 smithi138 bash[23295]: audit 2024-09-13T22:09:50.866901+0000 mon.a (mon.0) 566 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]': finished 2024-09-13T22:09:52.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:51 smithi138 bash[23295]: cluster 2024-09-13T22:09:50.873547+0000 mon.a (mon.0) 567 : cluster [DBG] osdmap e17: 3 total, 2 up, 3 in 2024-09-13T22:09:52.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:51 smithi138 bash[23295]: audit 2024-09-13T22:09:50.874524+0000 mon.a (mon.0) 568 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-13T22:09:52.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:51 smithi138 bash[23295]: audit 2024-09-13T22:09:50.883296+0000 mon.a (mon.0) 569 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-13T22:09:52.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:51 smithi138 bash[23295]: audit 2024-09-13T22:09:51.125600+0000 mon.a (mon.0) 570 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:09:52.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:51 smithi138 bash[23295]: audit 2024-09-13T22:09:51.135481+0000 mon.a (mon.0) 571 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:52.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:51 smithi138 bash[23295]: audit 2024-09-13T22:09:51.136084+0000 mon.a (mon.0) 572 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-13T22:09:52.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:51 smithi138 bash[23295]: cephadm 2024-09-13T22:09:51.137639+0000 mgr.a (mgr.14150) 204 : cephadm [INF] Adjusting osd_memory_target on smithi096 to 16241M 2024-09-13T22:09:52.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:51 smithi138 bash[23295]: audit 2024-09-13T22:09:51.144648+0000 mon.a (mon.0) 573 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:52.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:51 smithi138 bash[23295]: audit 2024-09-13T22:09:51.152144+0000 mon.a (mon.0) 574 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:52.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:51 smithi138 bash[23295]: audit 2024-09-13T22:09:51.156441+0000 mon.a (mon.0) 575 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:09:52.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:51 smithi138 bash[23295]: audit 2024-09-13T22:09:51.157882+0000 mon.a (mon.0) 576 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:09:52.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:51 smithi138 bash[23295]: audit 2024-09-13T22:09:51.168553+0000 mon.a (mon.0) 577 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:53.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:52 smithi096 bash[23620]: cluster 2024-09-13T22:09:50.020423+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-13T22:09:53.205 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:52 smithi096 bash[23620]: cluster 2024-09-13T22:09:50.020529+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-13T22:09:53.205 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:52 smithi096 bash[23620]: cluster 2024-09-13T22:09:51.832818+0000 mgr.a (mgr.14150) 205 : cluster [DBG] pgmap v145: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:53.206 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:52 smithi096 bash[23620]: cluster 2024-09-13T22:09:51.886551+0000 mon.a (mon.0) 578 : cluster [INF] osd.2 [v2:172.21.15.96:6800/2180576982,v1:172.21.15.96:6801/2180576982] boot 2024-09-13T22:09:53.206 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:52 smithi096 bash[23620]: cluster 2024-09-13T22:09:51.886633+0000 mon.a (mon.0) 579 : cluster [DBG] osdmap e18: 3 total, 3 up, 3 in 2024-09-13T22:09:53.206 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:52 smithi096 bash[23620]: audit 2024-09-13T22:09:51.887375+0000 mon.a (mon.0) 580 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-13T22:09:53.206 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:52 smithi096 bash[23620]: audit 2024-09-13T22:09:51.970547+0000 mon.a (mon.0) 581 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]: dispatch 2024-09-13T22:09:53.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:52 smithi031 bash[22709]: cluster 2024-09-13T22:09:50.020423+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-13T22:09:53.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:52 smithi031 bash[22709]: cluster 2024-09-13T22:09:50.020529+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-13T22:09:53.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:52 smithi031 bash[22709]: cluster 2024-09-13T22:09:51.832818+0000 mgr.a (mgr.14150) 205 : cluster [DBG] pgmap v145: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:53.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:52 smithi031 bash[22709]: cluster 2024-09-13T22:09:51.886551+0000 mon.a (mon.0) 578 : cluster [INF] osd.2 [v2:172.21.15.96:6800/2180576982,v1:172.21.15.96:6801/2180576982] boot 2024-09-13T22:09:53.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:52 smithi031 bash[22709]: cluster 2024-09-13T22:09:51.886633+0000 mon.a (mon.0) 579 : cluster [DBG] osdmap e18: 3 total, 3 up, 3 in 2024-09-13T22:09:53.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:52 smithi031 bash[22709]: audit 2024-09-13T22:09:51.887375+0000 mon.a (mon.0) 580 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-13T22:09:53.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:52 smithi031 bash[22709]: audit 2024-09-13T22:09:51.970547+0000 mon.a (mon.0) 581 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]: dispatch 2024-09-13T22:09:53.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:52 smithi138 bash[23295]: cluster 2024-09-13T22:09:50.020423+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-13T22:09:53.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:52 smithi138 bash[23295]: cluster 2024-09-13T22:09:50.020529+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-13T22:09:53.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:52 smithi138 bash[23295]: cluster 2024-09-13T22:09:51.832818+0000 mgr.a (mgr.14150) 205 : cluster [DBG] pgmap v145: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T22:09:53.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:52 smithi138 bash[23295]: cluster 2024-09-13T22:09:51.886551+0000 mon.a (mon.0) 578 : cluster [INF] osd.2 [v2:172.21.15.96:6800/2180576982,v1:172.21.15.96:6801/2180576982] boot 2024-09-13T22:09:53.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:52 smithi138 bash[23295]: cluster 2024-09-13T22:09:51.886633+0000 mon.a (mon.0) 579 : cluster [DBG] osdmap e18: 3 total, 3 up, 3 in 2024-09-13T22:09:53.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:52 smithi138 bash[23295]: audit 2024-09-13T22:09:51.887375+0000 mon.a (mon.0) 580 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-13T22:09:53.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:52 smithi138 bash[23295]: audit 2024-09-13T22:09:51.970547+0000 mon.a (mon.0) 581 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]: dispatch 2024-09-13T22:09:54.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:53 smithi096 bash[23620]: audit 2024-09-13T22:09:52.899328+0000 mon.a (mon.0) 582 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-09-13T22:09:54.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:53 smithi096 bash[23620]: cluster 2024-09-13T22:09:52.904330+0000 mon.a (mon.0) 583 : cluster [DBG] osdmap e19: 3 total, 3 up, 3 in 2024-09-13T22:09:54.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:53 smithi096 bash[23620]: audit 2024-09-13T22:09:52.906276+0000 mon.a (mon.0) 584 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-09-13T22:09:54.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:53 smithi031 bash[22709]: audit 2024-09-13T22:09:52.899328+0000 mon.a (mon.0) 582 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-09-13T22:09:54.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:53 smithi031 bash[22709]: cluster 2024-09-13T22:09:52.904330+0000 mon.a (mon.0) 583 : cluster [DBG] osdmap e19: 3 total, 3 up, 3 in 2024-09-13T22:09:54.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:53 smithi031 bash[22709]: audit 2024-09-13T22:09:52.906276+0000 mon.a (mon.0) 584 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-09-13T22:09:54.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:53 smithi138 bash[23295]: audit 2024-09-13T22:09:52.899328+0000 mon.a (mon.0) 582 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-09-13T22:09:54.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:53 smithi138 bash[23295]: cluster 2024-09-13T22:09:52.904330+0000 mon.a (mon.0) 583 : cluster [DBG] osdmap e19: 3 total, 3 up, 3 in 2024-09-13T22:09:54.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:53 smithi138 bash[23295]: audit 2024-09-13T22:09:52.906276+0000 mon.a (mon.0) 584 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-09-13T22:09:55.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:54 smithi096 bash[23620]: cluster 2024-09-13T22:09:53.833534+0000 mgr.a (mgr.14150) 206 : cluster [DBG] pgmap v148: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:09:55.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:54 smithi096 bash[23620]: cluster 2024-09-13T22:09:53.899208+0000 mon.a (mon.0) 585 : cluster [WRN] Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-13T22:09:55.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:54 smithi096 bash[23620]: audit 2024-09-13T22:09:53.908118+0000 mon.a (mon.0) 586 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-13T22:09:55.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:54 smithi096 bash[23620]: cluster 2024-09-13T22:09:53.914853+0000 mon.a (mon.0) 587 : cluster [DBG] osdmap e20: 3 total, 3 up, 3 in 2024-09-13T22:09:55.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:54 smithi031 bash[22709]: cluster 2024-09-13T22:09:53.833534+0000 mgr.a (mgr.14150) 206 : cluster [DBG] pgmap v148: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:09:55.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:54 smithi031 bash[22709]: cluster 2024-09-13T22:09:53.899208+0000 mon.a (mon.0) 585 : cluster [WRN] Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-13T22:09:55.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:54 smithi031 bash[22709]: audit 2024-09-13T22:09:53.908118+0000 mon.a (mon.0) 586 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-13T22:09:55.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:54 smithi031 bash[22709]: cluster 2024-09-13T22:09:53.914853+0000 mon.a (mon.0) 587 : cluster [DBG] osdmap e20: 3 total, 3 up, 3 in 2024-09-13T22:09:55.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:54 smithi138 bash[23295]: cluster 2024-09-13T22:09:53.833534+0000 mgr.a (mgr.14150) 206 : cluster [DBG] pgmap v148: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:09:55.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:54 smithi138 bash[23295]: cluster 2024-09-13T22:09:53.899208+0000 mon.a (mon.0) 585 : cluster [WRN] Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-13T22:09:55.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:54 smithi138 bash[23295]: audit 2024-09-13T22:09:53.908118+0000 mon.a (mon.0) 586 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-13T22:09:55.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:54 smithi138 bash[23295]: cluster 2024-09-13T22:09:53.914853+0000 mon.a (mon.0) 587 : cluster [DBG] osdmap e20: 3 total, 3 up, 3 in 2024-09-13T22:09:56.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:55 smithi096 bash[23620]: cluster 2024-09-13T22:09:54.922337+0000 mon.a (mon.0) 588 : cluster [DBG] osdmap e21: 3 total, 3 up, 3 in 2024-09-13T22:09:56.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:55 smithi096 bash[23620]: audit 2024-09-13T22:09:55.258975+0000 mon.a (mon.0) 589 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:56.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:55 smithi031 bash[22709]: cluster 2024-09-13T22:09:54.922337+0000 mon.a (mon.0) 588 : cluster [DBG] osdmap e21: 3 total, 3 up, 3 in 2024-09-13T22:09:56.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:55 smithi031 bash[22709]: audit 2024-09-13T22:09:55.258975+0000 mon.a (mon.0) 589 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:56.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:55 smithi138 bash[23295]: cluster 2024-09-13T22:09:54.922337+0000 mon.a (mon.0) 588 : cluster [DBG] osdmap e21: 3 total, 3 up, 3 in 2024-09-13T22:09:56.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:55 smithi138 bash[23295]: audit 2024-09-13T22:09:55.258975+0000 mon.a (mon.0) 589 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:56.579 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.b/config 2024-09-13T22:09:57.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:56 smithi096 bash[23620]: cluster 2024-09-13T22:09:55.834144+0000 mgr.a (mgr.14150) 207 : cluster [DBG] pgmap v151: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:09:57.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:56 smithi096 bash[23620]: cluster 2024-09-13T22:09:56.256969+0000 mon.a (mon.0) 590 : cluster [INF] Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-13T22:09:57.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:56 smithi096 bash[23620]: cluster 2024-09-13T22:09:56.256994+0000 mon.a (mon.0) 591 : cluster [INF] Cluster is now healthy 2024-09-13T22:09:57.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:56 smithi031 bash[22709]: cluster 2024-09-13T22:09:55.834144+0000 mgr.a (mgr.14150) 207 : cluster [DBG] pgmap v151: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:09:57.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:56 smithi031 bash[22709]: cluster 2024-09-13T22:09:56.256969+0000 mon.a (mon.0) 590 : cluster [INF] Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-13T22:09:57.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:56 smithi031 bash[22709]: cluster 2024-09-13T22:09:56.256994+0000 mon.a (mon.0) 591 : cluster [INF] Cluster is now healthy 2024-09-13T22:09:57.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:56 smithi138 bash[23295]: cluster 2024-09-13T22:09:55.834144+0000 mgr.a (mgr.14150) 207 : cluster [DBG] pgmap v151: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:09:57.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:56 smithi138 bash[23295]: cluster 2024-09-13T22:09:56.256969+0000 mon.a (mon.0) 590 : cluster [INF] Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-13T22:09:57.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:56 smithi138 bash[23295]: cluster 2024-09-13T22:09:56.256994+0000 mon.a (mon.0) 591 : cluster [INF] Cluster is now healthy 2024-09-13T22:09:59.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:58 smithi138 bash[23295]: audit 2024-09-13T22:09:57.111231+0000 mon.a (mon.0) 592 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:59.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:58 smithi138 bash[23295]: audit 2024-09-13T22:09:57.114071+0000 mon.a (mon.0) 593 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-13T22:09:59.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:58 smithi138 bash[23295]: audit 2024-09-13T22:09:58.050702+0000 mon.a (mon.0) 594 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-13T22:09:59.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:58 smithi138 bash[23295]: audit 2024-09-13T22:09:58.052680+0000 mon.a (mon.0) 595 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-13T22:09:59.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:58 smithi138 bash[23295]: audit 2024-09-13T22:09:58.052882+0000 mon.a (mon.0) 596 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-13T22:09:59.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:58 smithi138 bash[23295]: audit 2024-09-13T22:09:58.053056+0000 mon.a (mon.0) 597 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-13T22:09:59.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:58 smithi138 bash[23295]: cluster 2024-09-13T22:09:58.061313+0000 mon.a (mon.0) 598 : cluster [DBG] mgrmap e15: a(active, since 4m), standbys: b 2024-09-13T22:09:59.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:58 smithi138 bash[23295]: audit 2024-09-13T22:09:58.062857+0000 mon.a (mon.0) 599 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-13T22:09:59.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:58 smithi138 bash[23295]: audit 2024-09-13T22:09:58.063032+0000 mon.a (mon.0) 600 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-13T22:09:59.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:58 smithi138 bash[23295]: audit 2024-09-13T22:09:58.063194+0000 mon.a (mon.0) 601 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-13T22:09:59.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:58 smithi138 bash[23295]: audit 2024-09-13T22:09:58.066333+0000 mon.a (mon.0) 602 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:59.437 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:58 smithi096 bash[23620]: audit 2024-09-13T22:09:57.111231+0000 mon.a (mon.0) 592 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:59.437 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:58 smithi096 bash[23620]: audit 2024-09-13T22:09:57.114071+0000 mon.a (mon.0) 593 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-13T22:09:59.437 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:58 smithi096 bash[23620]: audit 2024-09-13T22:09:58.050702+0000 mon.a (mon.0) 594 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-13T22:09:59.437 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:58 smithi096 bash[23620]: audit 2024-09-13T22:09:58.052680+0000 mon.a (mon.0) 595 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-13T22:09:59.437 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:58 smithi096 bash[23620]: audit 2024-09-13T22:09:58.052882+0000 mon.a (mon.0) 596 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-13T22:09:59.437 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:58 smithi096 bash[23620]: audit 2024-09-13T22:09:58.053056+0000 mon.a (mon.0) 597 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-13T22:09:59.437 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:58 smithi096 bash[23620]: cluster 2024-09-13T22:09:58.061313+0000 mon.a (mon.0) 598 : cluster [DBG] mgrmap e15: a(active, since 4m), standbys: b 2024-09-13T22:09:59.437 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:58 smithi096 bash[23620]: audit 2024-09-13T22:09:58.062857+0000 mon.a (mon.0) 599 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-13T22:09:59.437 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:58 smithi096 bash[23620]: audit 2024-09-13T22:09:58.063032+0000 mon.a (mon.0) 600 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-13T22:09:59.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:58 smithi096 bash[23620]: audit 2024-09-13T22:09:58.063194+0000 mon.a (mon.0) 601 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-13T22:09:59.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:58 smithi096 bash[23620]: audit 2024-09-13T22:09:58.066333+0000 mon.a (mon.0) 602 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:59.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:58 smithi031 bash[22709]: audit 2024-09-13T22:09:57.111231+0000 mon.a (mon.0) 592 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:09:59.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:58 smithi031 bash[22709]: audit 2024-09-13T22:09:57.114071+0000 mon.a (mon.0) 593 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-13T22:09:59.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:58 smithi031 bash[22709]: audit 2024-09-13T22:09:58.050702+0000 mon.a (mon.0) 594 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-13T22:09:59.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:58 smithi031 bash[22709]: audit 2024-09-13T22:09:58.052680+0000 mon.a (mon.0) 595 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-13T22:09:59.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:58 smithi031 bash[22709]: audit 2024-09-13T22:09:58.052882+0000 mon.a (mon.0) 596 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-13T22:09:59.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:58 smithi031 bash[22709]: audit 2024-09-13T22:09:58.053056+0000 mon.a (mon.0) 597 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-13T22:09:59.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:58 smithi031 bash[22709]: cluster 2024-09-13T22:09:58.061313+0000 mon.a (mon.0) 598 : cluster [DBG] mgrmap e15: a(active, since 4m), standbys: b 2024-09-13T22:09:59.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:58 smithi031 bash[22709]: audit 2024-09-13T22:09:58.062857+0000 mon.a (mon.0) 599 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-13T22:09:59.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:58 smithi031 bash[22709]: audit 2024-09-13T22:09:58.063032+0000 mon.a (mon.0) 600 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-13T22:09:59.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:58 smithi031 bash[22709]: audit 2024-09-13T22:09:58.063194+0000 mon.a (mon.0) 601 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-13T22:09:59.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:58 smithi031 bash[22709]: audit 2024-09-13T22:09:58.066333+0000 mon.a (mon.0) 602 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:00.293 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:59 smithi096 bash[23620]: cluster 2024-09-13T22:09:57.834614+0000 mgr.a (mgr.14150) 208 : cluster [DBG] pgmap v152: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:00.293 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:59 smithi096 bash[23620]: audit 2024-09-13T22:09:58.063754+0000 mon.c (mon.1) 3 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-13T22:10:00.293 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:59 smithi096 bash[23620]: audit 2024-09-13T22:09:58.965163+0000 mon.c (mon.1) 4 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-13T22:10:00.293 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:59 smithi096 bash[23620]: audit 2024-09-13T22:09:58.972987+0000 mon.a (mon.0) 603 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:00.293 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:59 smithi096 bash[23620]: audit 2024-09-13T22:09:58.994898+0000 mon.a (mon.0) 604 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:00.293 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:59 smithi096 bash[23620]: audit 2024-09-13T22:09:59.016700+0000 mon.a (mon.0) 605 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:00.293 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:59 smithi096 bash[23620]: audit 2024-09-13T22:09:59.020068+0000 mon.a (mon.0) 606 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-13T22:10:00.293 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:59 smithi096 bash[23620]: audit 2024-09-13T22:09:59.020577+0000 mon.a (mon.0) 607 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-13T22:10:00.294 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:59 smithi096 bash[23620]: audit 2024-09-13T22:09:59.021072+0000 mon.a (mon.0) 608 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-13T22:10:00.294 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:59 smithi096 bash[23620]: audit 2024-09-13T22:09:59.021359+0000 mon.b (mon.2) 10 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-13T22:10:00.294 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:09:59 smithi096 bash[23620]: audit 2024-09-13T22:09:59.899388+0000 mon.b (mon.2) 11 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-13T22:10:00.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:59 smithi138 bash[23295]: cluster 2024-09-13T22:09:57.834614+0000 mgr.a (mgr.14150) 208 : cluster [DBG] pgmap v152: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:00.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:59 smithi138 bash[23295]: audit 2024-09-13T22:09:58.063754+0000 mon.c (mon.1) 3 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-13T22:10:00.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:59 smithi138 bash[23295]: audit 2024-09-13T22:09:58.965163+0000 mon.c (mon.1) 4 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-13T22:10:00.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:59 smithi138 bash[23295]: audit 2024-09-13T22:09:58.972987+0000 mon.a (mon.0) 603 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:00.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:59 smithi138 bash[23295]: audit 2024-09-13T22:09:58.994898+0000 mon.a (mon.0) 604 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:00.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:59 smithi138 bash[23295]: audit 2024-09-13T22:09:59.016700+0000 mon.a (mon.0) 605 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:00.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:59 smithi138 bash[23295]: audit 2024-09-13T22:09:59.020068+0000 mon.a (mon.0) 606 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-13T22:10:00.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:59 smithi138 bash[23295]: audit 2024-09-13T22:09:59.020577+0000 mon.a (mon.0) 607 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-13T22:10:00.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:59 smithi138 bash[23295]: audit 2024-09-13T22:09:59.021072+0000 mon.a (mon.0) 608 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-13T22:10:00.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:59 smithi138 bash[23295]: audit 2024-09-13T22:09:59.021359+0000 mon.b (mon.2) 10 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-13T22:10:00.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:09:59 smithi138 bash[23295]: audit 2024-09-13T22:09:59.899388+0000 mon.b (mon.2) 11 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-13T22:10:00.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:59 smithi031 bash[22709]: cluster 2024-09-13T22:09:57.834614+0000 mgr.a (mgr.14150) 208 : cluster [DBG] pgmap v152: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:00.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:59 smithi031 bash[22709]: audit 2024-09-13T22:09:58.063754+0000 mon.c (mon.1) 3 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-13T22:10:00.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:59 smithi031 bash[22709]: audit 2024-09-13T22:09:58.965163+0000 mon.c (mon.1) 4 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-13T22:10:00.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:59 smithi031 bash[22709]: audit 2024-09-13T22:09:58.972987+0000 mon.a (mon.0) 603 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:00.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:59 smithi031 bash[22709]: audit 2024-09-13T22:09:58.994898+0000 mon.a (mon.0) 604 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:00.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:59 smithi031 bash[22709]: audit 2024-09-13T22:09:59.016700+0000 mon.a (mon.0) 605 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:00.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:59 smithi031 bash[22709]: audit 2024-09-13T22:09:59.020068+0000 mon.a (mon.0) 606 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-13T22:10:00.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:59 smithi031 bash[22709]: audit 2024-09-13T22:09:59.020577+0000 mon.a (mon.0) 607 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-13T22:10:00.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:59 smithi031 bash[22709]: audit 2024-09-13T22:09:59.021072+0000 mon.a (mon.0) 608 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-13T22:10:00.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:59 smithi031 bash[22709]: audit 2024-09-13T22:09:59.021359+0000 mon.b (mon.2) 10 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-13T22:10:00.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:09:59 smithi031 bash[22709]: audit 2024-09-13T22:09:59.899388+0000 mon.b (mon.2) 11 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-13T22:10:01.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:00 smithi096 bash[23620]: cluster 2024-09-13T22:09:59.835158+0000 mgr.a (mgr.14150) 209 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:01.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:00 smithi096 bash[23620]: cluster 2024-09-13T22:10:00.000161+0000 mon.a (mon.0) 609 : cluster [INF] overall HEALTH_OK 2024-09-13T22:10:01.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:00 smithi138 bash[23295]: cluster 2024-09-13T22:09:59.835158+0000 mgr.a (mgr.14150) 209 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:01.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:00 smithi138 bash[23295]: cluster 2024-09-13T22:10:00.000161+0000 mon.a (mon.0) 609 : cluster [INF] overall HEALTH_OK 2024-09-13T22:10:01.434 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-13T22:10:01.468 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 89616338-721b-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi096:vg_nvme/lv_3 2024-09-13T22:10:01.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:00 smithi031 bash[22709]: cluster 2024-09-13T22:09:59.835158+0000 mgr.a (mgr.14150) 209 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:01.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:00 smithi031 bash[22709]: cluster 2024-09-13T22:10:00.000161+0000 mon.a (mon.0) 609 : cluster [INF] overall HEALTH_OK 2024-09-13T22:10:02.575 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:02 smithi138 bash[23295]: audit 2024-09-13T22:10:01.241290+0000 mon.a (mon.0) 610 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:02.575 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:02 smithi138 bash[23295]: audit 2024-09-13T22:10:01.249179+0000 mon.a (mon.0) 611 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:02.575 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:02 smithi138 bash[23295]: cephadm 2024-09-13T22:10:01.252117+0000 mgr.a (mgr.14150) 210 : cephadm [INF] Detected new or changed devices on smithi096 2024-09-13T22:10:02.575 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:02 smithi138 bash[23295]: audit 2024-09-13T22:10:01.258709+0000 mon.a (mon.0) 612 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:02.591 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:02 smithi096 bash[23620]: audit 2024-09-13T22:10:01.241290+0000 mon.a (mon.0) 610 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:02.592 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:02 smithi096 bash[23620]: audit 2024-09-13T22:10:01.249179+0000 mon.a (mon.0) 611 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:02.592 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:02 smithi096 bash[23620]: cephadm 2024-09-13T22:10:01.252117+0000 mgr.a (mgr.14150) 210 : cephadm [INF] Detected new or changed devices on smithi096 2024-09-13T22:10:02.592 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:02 smithi096 bash[23620]: audit 2024-09-13T22:10:01.258709+0000 mon.a (mon.0) 612 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:02.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:02 smithi031 bash[22709]: audit 2024-09-13T22:10:01.241290+0000 mon.a (mon.0) 610 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:02.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:02 smithi031 bash[22709]: audit 2024-09-13T22:10:01.249179+0000 mon.a (mon.0) 611 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:02.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:02 smithi031 bash[22709]: cephadm 2024-09-13T22:10:01.252117+0000 mgr.a (mgr.14150) 210 : cephadm [INF] Detected new or changed devices on smithi096 2024-09-13T22:10:02.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:02 smithi031 bash[22709]: audit 2024-09-13T22:10:01.258709+0000 mon.a (mon.0) 612 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:03.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:03 smithi031 bash[22709]: cluster 2024-09-13T22:10:01.835648+0000 mgr.a (mgr.14150) 211 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:03.575 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:03 smithi138 bash[23295]: cluster 2024-09-13T22:10:01.835648+0000 mgr.a (mgr.14150) 211 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:03.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:03 smithi096 bash[23620]: cluster 2024-09-13T22:10:01.835648+0000 mgr.a (mgr.14150) 211 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:04.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:04 smithi096 bash[23620]: audit 2024-09-13T22:10:03.336750+0000 mon.a (mon.0) 613 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:04.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:04 smithi096 bash[23620]: audit 2024-09-13T22:10:03.345056+0000 mon.a (mon.0) 614 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:04.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:04 smithi096 bash[23620]: audit 2024-09-13T22:10:03.354574+0000 mon.a (mon.0) 615 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:04.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:04 smithi031 bash[22709]: audit 2024-09-13T22:10:03.336750+0000 mon.a (mon.0) 613 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:04.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:04 smithi031 bash[22709]: audit 2024-09-13T22:10:03.345056+0000 mon.a (mon.0) 614 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:04.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:04 smithi031 bash[22709]: audit 2024-09-13T22:10:03.354574+0000 mon.a (mon.0) 615 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:04.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:04 smithi138 bash[23295]: audit 2024-09-13T22:10:03.336750+0000 mon.a (mon.0) 613 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:04.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:04 smithi138 bash[23295]: audit 2024-09-13T22:10:03.345056+0000 mon.a (mon.0) 614 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:04.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:04 smithi138 bash[23295]: audit 2024-09-13T22:10:03.354574+0000 mon.a (mon.0) 615 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:05.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:05 smithi096 bash[23620]: cluster 2024-09-13T22:10:03.836211+0000 mgr.a (mgr.14150) 212 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 4.5 KiB/s rd, 196 KiB/s wr, 13 op/s 2024-09-13T22:10:05.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:05 smithi031 bash[22709]: cluster 2024-09-13T22:10:03.836211+0000 mgr.a (mgr.14150) 212 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 4.5 KiB/s rd, 196 KiB/s wr, 13 op/s 2024-09-13T22:10:05.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:05 smithi138 bash[23295]: cluster 2024-09-13T22:10:03.836211+0000 mgr.a (mgr.14150) 212 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 4.5 KiB/s rd, 196 KiB/s wr, 13 op/s 2024-09-13T22:10:06.319 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.b/config 2024-09-13T22:10:07.643 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:07 smithi138 bash[23295]: cluster 2024-09-13T22:10:05.836572+0000 mgr.a (mgr.14150) 213 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 3.0 KiB/s rd, 131 KiB/s wr, 9 op/s 2024-09-13T22:10:07.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:07 smithi096 bash[23620]: cluster 2024-09-13T22:10:05.836572+0000 mgr.a (mgr.14150) 213 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 3.0 KiB/s rd, 131 KiB/s wr, 9 op/s 2024-09-13T22:10:07.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:07 smithi031 bash[22709]: cluster 2024-09-13T22:10:05.836572+0000 mgr.a (mgr.14150) 213 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 3.0 KiB/s rd, 131 KiB/s wr, 9 op/s 2024-09-13T22:10:08.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:08 smithi096 bash[23620]: audit 2024-09-13T22:10:07.601713+0000 mgr.a (mgr.14150) 214 : audit [DBG] from='client.24188 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi096:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:10:08.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:08 smithi096 bash[23620]: audit 2024-09-13T22:10:07.608116+0000 mon.a (mon.0) 616 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-13T22:10:08.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:08 smithi096 bash[23620]: audit 2024-09-13T22:10:07.614420+0000 mon.a (mon.0) 617 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-13T22:10:08.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:08 smithi096 bash[23620]: audit 2024-09-13T22:10:07.616092+0000 mon.a (mon.0) 618 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:10:08.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:08 smithi096 bash[23620]: audit 2024-09-13T22:10:08.082573+0000 mon.a (mon.0) 619 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:08.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:08 smithi096 bash[23620]: audit 2024-09-13T22:10:08.089903+0000 mon.a (mon.0) 620 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:08.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:08 smithi096 bash[23620]: audit 2024-09-13T22:10:08.099381+0000 mon.a (mon.0) 621 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:08.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:08 smithi031 bash[22709]: audit 2024-09-13T22:10:07.601713+0000 mgr.a (mgr.14150) 214 : audit [DBG] from='client.24188 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi096:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:10:08.721 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:08 smithi031 bash[22709]: audit 2024-09-13T22:10:07.608116+0000 mon.a (mon.0) 616 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-13T22:10:08.721 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:08 smithi031 bash[22709]: audit 2024-09-13T22:10:07.614420+0000 mon.a (mon.0) 617 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-13T22:10:08.721 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:08 smithi031 bash[22709]: audit 2024-09-13T22:10:07.616092+0000 mon.a (mon.0) 618 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:10:08.721 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:08 smithi031 bash[22709]: audit 2024-09-13T22:10:08.082573+0000 mon.a (mon.0) 619 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:08.721 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:08 smithi031 bash[22709]: audit 2024-09-13T22:10:08.089903+0000 mon.a (mon.0) 620 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:08.721 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:08 smithi031 bash[22709]: audit 2024-09-13T22:10:08.099381+0000 mon.a (mon.0) 621 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:08.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:08 smithi138 bash[23295]: audit 2024-09-13T22:10:07.601713+0000 mgr.a (mgr.14150) 214 : audit [DBG] from='client.24188 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi096:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:10:08.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:08 smithi138 bash[23295]: audit 2024-09-13T22:10:07.608116+0000 mon.a (mon.0) 616 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-13T22:10:08.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:08 smithi138 bash[23295]: audit 2024-09-13T22:10:07.614420+0000 mon.a (mon.0) 617 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-13T22:10:08.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:08 smithi138 bash[23295]: audit 2024-09-13T22:10:07.616092+0000 mon.a (mon.0) 618 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:10:08.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:08 smithi138 bash[23295]: audit 2024-09-13T22:10:08.082573+0000 mon.a (mon.0) 619 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:08.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:08 smithi138 bash[23295]: audit 2024-09-13T22:10:08.089903+0000 mon.a (mon.0) 620 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:08.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:08 smithi138 bash[23295]: audit 2024-09-13T22:10:08.099381+0000 mon.a (mon.0) 621 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:09.575 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:09 smithi138 bash[23295]: cluster 2024-09-13T22:10:07.837063+0000 mgr.a (mgr.14150) 215 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 2.2 KiB/s rd, 98 KiB/s wr, 6 op/s 2024-09-13T22:10:09.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:09 smithi096 bash[23620]: cluster 2024-09-13T22:10:07.837063+0000 mgr.a (mgr.14150) 215 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 2.2 KiB/s rd, 98 KiB/s wr, 6 op/s 2024-09-13T22:10:09.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:09 smithi031 bash[22709]: cluster 2024-09-13T22:10:07.837063+0000 mgr.a (mgr.14150) 215 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 2.2 KiB/s rd, 98 KiB/s wr, 6 op/s 2024-09-13T22:10:11.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:11 smithi096 bash[23620]: cluster 2024-09-13T22:10:09.837610+0000 mgr.a (mgr.14150) 216 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 1.8 KiB/s rd, 78 KiB/s wr, 5 op/s 2024-09-13T22:10:11.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:11 smithi031 bash[22709]: cluster 2024-09-13T22:10:09.837610+0000 mgr.a (mgr.14150) 216 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 1.8 KiB/s rd, 78 KiB/s wr, 5 op/s 2024-09-13T22:10:11.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:11 smithi138 bash[23295]: cluster 2024-09-13T22:10:09.837610+0000 mgr.a (mgr.14150) 216 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 1.8 KiB/s rd, 78 KiB/s wr, 5 op/s 2024-09-13T22:10:13.652 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:13 smithi096 bash[23620]: cluster 2024-09-13T22:10:11.838152+0000 mgr.a (mgr.14150) 217 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-13T22:10:13.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:13 smithi031 bash[22709]: cluster 2024-09-13T22:10:11.838152+0000 mgr.a (mgr.14150) 217 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-13T22:10:13.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:13 smithi138 bash[23295]: cluster 2024-09-13T22:10:11.838152+0000 mgr.a (mgr.14150) 217 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-13T22:10:15.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:15 smithi096 bash[23620]: cluster 2024-09-13T22:10:13.838725+0000 mgr.a (mgr.14150) 218 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-13T22:10:15.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:15 smithi031 bash[22709]: cluster 2024-09-13T22:10:13.838725+0000 mgr.a (mgr.14150) 218 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-13T22:10:15.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:15 smithi138 bash[23295]: cluster 2024-09-13T22:10:13.838725+0000 mgr.a (mgr.14150) 218 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-13T22:10:16.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:16 smithi096 bash[23620]: audit 2024-09-13T22:10:16.053729+0000 mon.a (mon.0) 622 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "5de93f24-edd7-411c-928f-a62010e3334e"}]: dispatch 2024-09-13T22:10:16.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:16 smithi096 bash[23620]: audit 2024-09-13T22:10:16.054801+0000 mon.b (mon.2) 12 : audit [INF] from='client.? 172.21.15.96:0/2668980670' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "5de93f24-edd7-411c-928f-a62010e3334e"}]: dispatch 2024-09-13T22:10:16.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:16 smithi096 bash[23620]: audit 2024-09-13T22:10:16.057695+0000 mon.a (mon.0) 623 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "5de93f24-edd7-411c-928f-a62010e3334e"}]': finished 2024-09-13T22:10:16.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:16 smithi096 bash[23620]: cluster 2024-09-13T22:10:16.062834+0000 mon.a (mon.0) 624 : cluster [DBG] osdmap e22: 4 total, 3 up, 4 in 2024-09-13T22:10:16.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:16 smithi096 bash[23620]: audit 2024-09-13T22:10:16.063205+0000 mon.a (mon.0) 625 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-13T22:10:16.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:16 smithi031 bash[22709]: audit 2024-09-13T22:10:16.053729+0000 mon.a (mon.0) 622 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "5de93f24-edd7-411c-928f-a62010e3334e"}]: dispatch 2024-09-13T22:10:16.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:16 smithi031 bash[22709]: audit 2024-09-13T22:10:16.054801+0000 mon.b (mon.2) 12 : audit [INF] from='client.? 172.21.15.96:0/2668980670' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "5de93f24-edd7-411c-928f-a62010e3334e"}]: dispatch 2024-09-13T22:10:16.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:16 smithi031 bash[22709]: audit 2024-09-13T22:10:16.057695+0000 mon.a (mon.0) 623 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "5de93f24-edd7-411c-928f-a62010e3334e"}]': finished 2024-09-13T22:10:16.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:16 smithi031 bash[22709]: cluster 2024-09-13T22:10:16.062834+0000 mon.a (mon.0) 624 : cluster [DBG] osdmap e22: 4 total, 3 up, 4 in 2024-09-13T22:10:16.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:16 smithi031 bash[22709]: audit 2024-09-13T22:10:16.063205+0000 mon.a (mon.0) 625 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-13T22:10:16.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:16 smithi138 bash[23295]: audit 2024-09-13T22:10:16.053729+0000 mon.a (mon.0) 622 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "5de93f24-edd7-411c-928f-a62010e3334e"}]: dispatch 2024-09-13T22:10:16.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:16 smithi138 bash[23295]: audit 2024-09-13T22:10:16.054801+0000 mon.b (mon.2) 12 : audit [INF] from='client.? 172.21.15.96:0/2668980670' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "5de93f24-edd7-411c-928f-a62010e3334e"}]: dispatch 2024-09-13T22:10:16.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:16 smithi138 bash[23295]: audit 2024-09-13T22:10:16.057695+0000 mon.a (mon.0) 623 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "5de93f24-edd7-411c-928f-a62010e3334e"}]': finished 2024-09-13T22:10:16.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:16 smithi138 bash[23295]: cluster 2024-09-13T22:10:16.062834+0000 mon.a (mon.0) 624 : cluster [DBG] osdmap e22: 4 total, 3 up, 4 in 2024-09-13T22:10:16.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:16 smithi138 bash[23295]: audit 2024-09-13T22:10:16.063205+0000 mon.a (mon.0) 625 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-13T22:10:17.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:17 smithi096 bash[23620]: cluster 2024-09-13T22:10:15.839211+0000 mgr.a (mgr.14150) 219 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:17.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:17 smithi096 bash[23620]: audit 2024-09-13T22:10:16.664851+0000 mon.b (mon.2) 13 : audit [DBG] from='client.? 172.21.15.96:0/3152296767' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-13T22:10:17.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:17 smithi031 bash[22709]: cluster 2024-09-13T22:10:15.839211+0000 mgr.a (mgr.14150) 219 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:17.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:17 smithi031 bash[22709]: audit 2024-09-13T22:10:16.664851+0000 mon.b (mon.2) 13 : audit [DBG] from='client.? 172.21.15.96:0/3152296767' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-13T22:10:17.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:17 smithi138 bash[23295]: cluster 2024-09-13T22:10:15.839211+0000 mgr.a (mgr.14150) 219 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:17.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:17 smithi138 bash[23295]: audit 2024-09-13T22:10:16.664851+0000 mon.b (mon.2) 13 : audit [DBG] from='client.? 172.21.15.96:0/3152296767' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-13T22:10:19.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:19 smithi096 bash[23620]: cluster 2024-09-13T22:10:17.839753+0000 mgr.a (mgr.14150) 220 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:19.437 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:19 smithi096 bash[23620]: audit 2024-09-13T22:10:19.204940+0000 mon.a (mon.0) 626 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:19.437 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:19 smithi096 bash[23620]: audit 2024-09-13T22:10:19.211677+0000 mon.a (mon.0) 627 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:19.437 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:19 smithi096 bash[23620]: audit 2024-09-13T22:10:19.218017+0000 mon.a (mon.0) 628 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:19.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:19 smithi031 bash[22709]: cluster 2024-09-13T22:10:17.839753+0000 mgr.a (mgr.14150) 220 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:19.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:19 smithi031 bash[22709]: audit 2024-09-13T22:10:19.204940+0000 mon.a (mon.0) 626 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:19.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:19 smithi031 bash[22709]: audit 2024-09-13T22:10:19.211677+0000 mon.a (mon.0) 627 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:19.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:19 smithi031 bash[22709]: audit 2024-09-13T22:10:19.218017+0000 mon.a (mon.0) 628 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:19.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:19 smithi138 bash[23295]: cluster 2024-09-13T22:10:17.839753+0000 mgr.a (mgr.14150) 220 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:19.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:19 smithi138 bash[23295]: audit 2024-09-13T22:10:19.204940+0000 mon.a (mon.0) 626 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:19.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:19 smithi138 bash[23295]: audit 2024-09-13T22:10:19.211677+0000 mon.a (mon.0) 627 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:19.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:19 smithi138 bash[23295]: audit 2024-09-13T22:10:19.218017+0000 mon.a (mon.0) 628 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:21.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:21 smithi096 bash[23620]: cluster 2024-09-13T22:10:19.840318+0000 mgr.a (mgr.14150) 221 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:21.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:21 smithi096 bash[23620]: audit 2024-09-13T22:10:20.947894+0000 mon.a (mon.0) 629 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:21.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:21 smithi096 bash[23620]: audit 2024-09-13T22:10:20.956419+0000 mon.a (mon.0) 630 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:21.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:21 smithi096 bash[23620]: audit 2024-09-13T22:10:20.965887+0000 mon.a (mon.0) 631 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:21.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:21 smithi031 bash[22709]: cluster 2024-09-13T22:10:19.840318+0000 mgr.a (mgr.14150) 221 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:21.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:21 smithi031 bash[22709]: audit 2024-09-13T22:10:20.947894+0000 mon.a (mon.0) 629 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:21.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:21 smithi031 bash[22709]: audit 2024-09-13T22:10:20.956419+0000 mon.a (mon.0) 630 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:21.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:21 smithi031 bash[22709]: audit 2024-09-13T22:10:20.965887+0000 mon.a (mon.0) 631 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:21.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:21 smithi138 bash[23295]: cluster 2024-09-13T22:10:19.840318+0000 mgr.a (mgr.14150) 221 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:21.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:21 smithi138 bash[23295]: audit 2024-09-13T22:10:20.947894+0000 mon.a (mon.0) 629 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:21.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:21 smithi138 bash[23295]: audit 2024-09-13T22:10:20.956419+0000 mon.a (mon.0) 630 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:21.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:21 smithi138 bash[23295]: audit 2024-09-13T22:10:20.965887+0000 mon.a (mon.0) 631 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:23.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:23 smithi096 bash[23620]: cluster 2024-09-13T22:10:21.840821+0000 mgr.a (mgr.14150) 222 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:23.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:23 smithi031 bash[22709]: cluster 2024-09-13T22:10:21.840821+0000 mgr.a (mgr.14150) 222 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:23.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:23 smithi138 bash[23295]: cluster 2024-09-13T22:10:21.840821+0000 mgr.a (mgr.14150) 222 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:25.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:25 smithi096 bash[23620]: cluster 2024-09-13T22:10:23.841364+0000 mgr.a (mgr.14150) 223 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:25.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:25 smithi031 bash[22709]: cluster 2024-09-13T22:10:23.841364+0000 mgr.a (mgr.14150) 223 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:25.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:25 smithi138 bash[23295]: cluster 2024-09-13T22:10:23.841364+0000 mgr.a (mgr.14150) 223 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:27.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:27 smithi096 bash[23620]: cluster 2024-09-13T22:10:25.841884+0000 mgr.a (mgr.14150) 224 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:27.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:27 smithi031 bash[22709]: cluster 2024-09-13T22:10:25.841884+0000 mgr.a (mgr.14150) 224 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:27.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:27 smithi138 bash[23295]: cluster 2024-09-13T22:10:25.841884+0000 mgr.a (mgr.14150) 224 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:29.575 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:29 smithi138 bash[23295]: cluster 2024-09-13T22:10:27.842325+0000 mgr.a (mgr.14150) 225 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:29.575 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:29 smithi138 bash[23295]: audit 2024-09-13T22:10:28.305501+0000 mon.a (mon.0) 632 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:29.575 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:29 smithi138 bash[23295]: audit 2024-09-13T22:10:28.313187+0000 mon.a (mon.0) 633 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:29.575 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:29 smithi138 bash[23295]: audit 2024-09-13T22:10:28.322754+0000 mon.a (mon.0) 634 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:29.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:29 smithi096 bash[23620]: cluster 2024-09-13T22:10:27.842325+0000 mgr.a (mgr.14150) 225 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:29.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:29 smithi096 bash[23620]: audit 2024-09-13T22:10:28.305501+0000 mon.a (mon.0) 632 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:29.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:29 smithi096 bash[23620]: audit 2024-09-13T22:10:28.313187+0000 mon.a (mon.0) 633 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:29.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:29 smithi096 bash[23620]: audit 2024-09-13T22:10:28.322754+0000 mon.a (mon.0) 634 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:29.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:29 smithi031 bash[22709]: cluster 2024-09-13T22:10:27.842325+0000 mgr.a (mgr.14150) 225 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:29.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:29 smithi031 bash[22709]: audit 2024-09-13T22:10:28.305501+0000 mon.a (mon.0) 632 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:29.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:29 smithi031 bash[22709]: audit 2024-09-13T22:10:28.313187+0000 mon.a (mon.0) 633 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:29.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:29 smithi031 bash[22709]: audit 2024-09-13T22:10:28.322754+0000 mon.a (mon.0) 634 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:30.575 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:30 smithi138 bash[23295]: audit 2024-09-13T22:10:29.373965+0000 mon.a (mon.0) 635 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-13T22:10:30.575 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:30 smithi138 bash[23295]: audit 2024-09-13T22:10:29.376043+0000 mon.a (mon.0) 636 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:10:30.575 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:30 smithi138 bash[23295]: cephadm 2024-09-13T22:10:29.377885+0000 mgr.a (mgr.14150) 226 : cephadm [INF] Deploying daemon osd.3 on smithi096 2024-09-13T22:10:30.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:30 smithi096 bash[23620]: audit 2024-09-13T22:10:29.373965+0000 mon.a (mon.0) 635 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-13T22:10:30.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:30 smithi096 bash[23620]: audit 2024-09-13T22:10:29.376043+0000 mon.a (mon.0) 636 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:10:30.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:30 smithi096 bash[23620]: cephadm 2024-09-13T22:10:29.377885+0000 mgr.a (mgr.14150) 226 : cephadm [INF] Deploying daemon osd.3 on smithi096 2024-09-13T22:10:30.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:30 smithi031 bash[22709]: audit 2024-09-13T22:10:29.373965+0000 mon.a (mon.0) 635 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-13T22:10:30.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:30 smithi031 bash[22709]: audit 2024-09-13T22:10:29.376043+0000 mon.a (mon.0) 636 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:10:30.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:30 smithi031 bash[22709]: cephadm 2024-09-13T22:10:29.377885+0000 mgr.a (mgr.14150) 226 : cephadm [INF] Deploying daemon osd.3 on smithi096 2024-09-13T22:10:31.575 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:31 smithi138 bash[23295]: cluster 2024-09-13T22:10:29.842921+0000 mgr.a (mgr.14150) 227 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:31.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:31 smithi096 bash[23620]: cluster 2024-09-13T22:10:29.842921+0000 mgr.a (mgr.14150) 227 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:31.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:31 smithi031 bash[22709]: cluster 2024-09-13T22:10:29.842921+0000 mgr.a (mgr.14150) 227 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:33.575 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:33 smithi138 bash[23295]: cluster 2024-09-13T22:10:31.843550+0000 mgr.a (mgr.14150) 228 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:33.609 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:33 smithi096 bash[23620]: cluster 2024-09-13T22:10:31.843550+0000 mgr.a (mgr.14150) 228 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:33.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:33 smithi031 bash[22709]: cluster 2024-09-13T22:10:31.843550+0000 mgr.a (mgr.14150) 228 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:33.936 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:33 smithi096 systemd[1]: /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-13T22:10:33.936 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 13 22:10:33 smithi096 systemd[1]: /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-13T22:10:33.937 INFO:journalctl@ceph.osd.2.smithi096.stdout:Sep 13 22:10:33 smithi096 systemd[1]: /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-13T22:10:34.325 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:33 smithi096 systemd[1]: /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-13T22:10:34.325 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 13 22:10:33 smithi096 systemd[1]: /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-13T22:10:34.325 INFO:journalctl@ceph.osd.2.smithi096.stdout:Sep 13 22:10:33 smithi096 systemd[1]: /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-13T22:10:34.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:34 smithi096 bash[23620]: audit 2024-09-13T22:10:34.091275+0000 mon.a (mon.0) 637 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:10:34.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:34 smithi096 bash[23620]: audit 2024-09-13T22:10:34.099444+0000 mon.a (mon.0) 638 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:34.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:34 smithi096 bash[23620]: audit 2024-09-13T22:10:34.100158+0000 mon.a (mon.0) 639 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:10:34.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:34 smithi096 bash[23620]: audit 2024-09-13T22:10:34.102786+0000 mon.a (mon.0) 640 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:10:34.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:34 smithi096 bash[23620]: audit 2024-09-13T22:10:34.109871+0000 mon.a (mon.0) 641 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:34.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:34 smithi096 bash[23620]: audit 2024-09-13T22:10:34.116053+0000 mon.a (mon.0) 642 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:34.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:34 smithi031 bash[22709]: audit 2024-09-13T22:10:34.091275+0000 mon.a (mon.0) 637 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:10:34.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:34 smithi031 bash[22709]: audit 2024-09-13T22:10:34.099444+0000 mon.a (mon.0) 638 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:34.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:34 smithi031 bash[22709]: audit 2024-09-13T22:10:34.100158+0000 mon.a (mon.0) 639 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:10:34.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:34 smithi031 bash[22709]: audit 2024-09-13T22:10:34.102786+0000 mon.a (mon.0) 640 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:10:34.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:34 smithi031 bash[22709]: audit 2024-09-13T22:10:34.109871+0000 mon.a (mon.0) 641 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:34.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:34 smithi031 bash[22709]: audit 2024-09-13T22:10:34.116053+0000 mon.a (mon.0) 642 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:34.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:34 smithi138 bash[23295]: audit 2024-09-13T22:10:34.091275+0000 mon.a (mon.0) 637 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:10:34.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:34 smithi138 bash[23295]: audit 2024-09-13T22:10:34.099444+0000 mon.a (mon.0) 638 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:34.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:34 smithi138 bash[23295]: audit 2024-09-13T22:10:34.100158+0000 mon.a (mon.0) 639 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:10:34.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:34 smithi138 bash[23295]: audit 2024-09-13T22:10:34.102786+0000 mon.a (mon.0) 640 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:10:34.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:34 smithi138 bash[23295]: audit 2024-09-13T22:10:34.109871+0000 mon.a (mon.0) 641 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:34.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:34 smithi138 bash[23295]: audit 2024-09-13T22:10:34.116053+0000 mon.a (mon.0) 642 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:35.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:35 smithi096 bash[23620]: cluster 2024-09-13T22:10:33.844235+0000 mgr.a (mgr.14150) 229 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:35.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:35 smithi031 bash[22709]: cluster 2024-09-13T22:10:33.844235+0000 mgr.a (mgr.14150) 229 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:35.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:35 smithi138 bash[23295]: cluster 2024-09-13T22:10:33.844235+0000 mgr.a (mgr.14150) 229 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:37.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:37 smithi096 bash[23620]: cluster 2024-09-13T22:10:35.844805+0000 mgr.a (mgr.14150) 230 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:37.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:37 smithi031 bash[22709]: cluster 2024-09-13T22:10:35.844805+0000 mgr.a (mgr.14150) 230 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:37.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:37 smithi138 bash[23295]: cluster 2024-09-13T22:10:35.844805+0000 mgr.a (mgr.14150) 230 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:39.575 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:39 smithi096 bash[23620]: cluster 2024-09-13T22:10:37.845437+0000 mgr.a (mgr.14150) 231 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:39.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:39 smithi031 bash[22709]: cluster 2024-09-13T22:10:37.845437+0000 mgr.a (mgr.14150) 231 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:39.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:39 smithi138 bash[23295]: cluster 2024-09-13T22:10:37.845437+0000 mgr.a (mgr.14150) 231 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:40.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:40 smithi096 bash[23620]: audit 2024-09-13T22:10:39.418690+0000 mon.a (mon.0) 643 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:40.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:40 smithi096 bash[23620]: audit 2024-09-13T22:10:39.425033+0000 mon.a (mon.0) 644 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:40.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:40 smithi096 bash[23620]: audit 2024-09-13T22:10:39.432556+0000 mon.a (mon.0) 645 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:40.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:40 smithi031 bash[22709]: audit 2024-09-13T22:10:39.418690+0000 mon.a (mon.0) 643 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:40.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:40 smithi031 bash[22709]: audit 2024-09-13T22:10:39.425033+0000 mon.a (mon.0) 644 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:40.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:40 smithi031 bash[22709]: audit 2024-09-13T22:10:39.432556+0000 mon.a (mon.0) 645 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:40.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:40 smithi138 bash[23295]: audit 2024-09-13T22:10:39.418690+0000 mon.a (mon.0) 643 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:40.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:40 smithi138 bash[23295]: audit 2024-09-13T22:10:39.425033+0000 mon.a (mon.0) 644 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:40.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:40 smithi138 bash[23295]: audit 2024-09-13T22:10:39.432556+0000 mon.a (mon.0) 645 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:41.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:41 smithi096 bash[23620]: cluster 2024-09-13T22:10:39.846108+0000 mgr.a (mgr.14150) 232 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:41.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:41 smithi096 bash[23620]: audit 2024-09-13T22:10:41.116118+0000 mon.a (mon.0) 646 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:41.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:41 smithi096 bash[23620]: audit 2024-09-13T22:10:41.124276+0000 mon.a (mon.0) 647 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:41.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:41 smithi096 bash[23620]: audit 2024-09-13T22:10:41.129224+0000 mon.a (mon.0) 648 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:10:41.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:41 smithi096 bash[23620]: audit 2024-09-13T22:10:41.135065+0000 mon.a (mon.0) 649 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:41.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:41 smithi096 bash[23620]: audit 2024-09-13T22:10:41.135886+0000 mon.a (mon.0) 650 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:10:41.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:41 smithi096 bash[23620]: audit 2024-09-13T22:10:41.138043+0000 mon.a (mon.0) 651 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:10:41.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:41 smithi096 bash[23620]: audit 2024-09-13T22:10:41.147695+0000 mon.a (mon.0) 652 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:41.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:41 smithi031 bash[22709]: cluster 2024-09-13T22:10:39.846108+0000 mgr.a (mgr.14150) 232 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:41.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:41 smithi031 bash[22709]: audit 2024-09-13T22:10:41.116118+0000 mon.a (mon.0) 646 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:41.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:41 smithi031 bash[22709]: audit 2024-09-13T22:10:41.124276+0000 mon.a (mon.0) 647 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:41.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:41 smithi031 bash[22709]: audit 2024-09-13T22:10:41.129224+0000 mon.a (mon.0) 648 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:10:41.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:41 smithi031 bash[22709]: audit 2024-09-13T22:10:41.135065+0000 mon.a (mon.0) 649 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:41.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:41 smithi031 bash[22709]: audit 2024-09-13T22:10:41.135886+0000 mon.a (mon.0) 650 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:10:41.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:41 smithi031 bash[22709]: audit 2024-09-13T22:10:41.138043+0000 mon.a (mon.0) 651 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:10:41.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:41 smithi031 bash[22709]: audit 2024-09-13T22:10:41.147695+0000 mon.a (mon.0) 652 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:41.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:41 smithi138 bash[23295]: cluster 2024-09-13T22:10:39.846108+0000 mgr.a (mgr.14150) 232 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:41.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:41 smithi138 bash[23295]: audit 2024-09-13T22:10:41.116118+0000 mon.a (mon.0) 646 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:41.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:41 smithi138 bash[23295]: audit 2024-09-13T22:10:41.124276+0000 mon.a (mon.0) 647 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:41.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:41 smithi138 bash[23295]: audit 2024-09-13T22:10:41.129224+0000 mon.a (mon.0) 648 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:10:41.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:41 smithi138 bash[23295]: audit 2024-09-13T22:10:41.135065+0000 mon.a (mon.0) 649 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:41.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:41 smithi138 bash[23295]: audit 2024-09-13T22:10:41.135886+0000 mon.a (mon.0) 650 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:10:41.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:41 smithi138 bash[23295]: audit 2024-09-13T22:10:41.138043+0000 mon.a (mon.0) 651 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:10:41.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:41 smithi138 bash[23295]: audit 2024-09-13T22:10:41.147695+0000 mon.a (mon.0) 652 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:42.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:42 smithi031 bash[22709]: cephadm 2024-09-13T22:10:41.127199+0000 mgr.a (mgr.14150) 233 : cephadm [INF] Detected new or changed devices on smithi096 2024-09-13T22:10:42.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:42 smithi138 bash[23295]: cephadm 2024-09-13T22:10:41.127199+0000 mgr.a (mgr.14150) 233 : cephadm [INF] Detected new or changed devices on smithi096 2024-09-13T22:10:42.825 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:42 smithi096 bash[23620]: cephadm 2024-09-13T22:10:41.127199+0000 mgr.a (mgr.14150) 233 : cephadm [INF] Detected new or changed devices on smithi096 2024-09-13T22:10:43.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:43 smithi096 bash[23620]: cluster 2024-09-13T22:10:41.846666+0000 mgr.a (mgr.14150) 234 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:43.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:43 smithi031 bash[22709]: cluster 2024-09-13T22:10:41.846666+0000 mgr.a (mgr.14150) 234 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:43.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:43 smithi138 bash[23295]: cluster 2024-09-13T22:10:41.846666+0000 mgr.a (mgr.14150) 234 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:44.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:44 smithi031 bash[22709]: audit 2024-09-13T22:10:43.728663+0000 mon.a (mon.0) 653 : audit [INF] from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-13T22:10:44.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:44 smithi031 bash[22709]: audit 2024-09-13T22:10:43.729944+0000 mon.b (mon.2) 14 : audit [INF] from='osd.3 [v2:172.21.15.96:6808/1682499796,v1:172.21.15.96:6809/1682499796]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-13T22:10:44.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:44 smithi031 bash[22709]: audit 2024-09-13T22:10:44.086867+0000 mon.a (mon.0) 654 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:44.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:44 smithi031 bash[22709]: audit 2024-09-13T22:10:44.093675+0000 mon.a (mon.0) 655 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:44.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:44 smithi031 bash[22709]: audit 2024-09-13T22:10:44.096720+0000 mon.a (mon.0) 656 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:10:44.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:44 smithi031 bash[22709]: audit 2024-09-13T22:10:44.101165+0000 mon.a (mon.0) 657 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:44.721 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:44 smithi031 bash[22709]: audit 2024-09-13T22:10:44.102700+0000 mon.a (mon.0) 658 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:10:44.721 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:44 smithi031 bash[22709]: audit 2024-09-13T22:10:44.109128+0000 mon.a (mon.0) 659 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:10:44.721 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:44 smithi031 bash[22709]: audit 2024-09-13T22:10:44.119267+0000 mon.a (mon.0) 660 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:44.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:44 smithi138 bash[23295]: audit 2024-09-13T22:10:43.728663+0000 mon.a (mon.0) 653 : audit [INF] from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-13T22:10:44.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:44 smithi138 bash[23295]: audit 2024-09-13T22:10:43.729944+0000 mon.b (mon.2) 14 : audit [INF] from='osd.3 [v2:172.21.15.96:6808/1682499796,v1:172.21.15.96:6809/1682499796]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-13T22:10:44.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:44 smithi138 bash[23295]: audit 2024-09-13T22:10:44.086867+0000 mon.a (mon.0) 654 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:44.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:44 smithi138 bash[23295]: audit 2024-09-13T22:10:44.093675+0000 mon.a (mon.0) 655 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:44.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:44 smithi138 bash[23295]: audit 2024-09-13T22:10:44.096720+0000 mon.a (mon.0) 656 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:10:44.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:44 smithi138 bash[23295]: audit 2024-09-13T22:10:44.101165+0000 mon.a (mon.0) 657 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:44.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:44 smithi138 bash[23295]: audit 2024-09-13T22:10:44.102700+0000 mon.a (mon.0) 658 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:10:44.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:44 smithi138 bash[23295]: audit 2024-09-13T22:10:44.109128+0000 mon.a (mon.0) 659 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:10:44.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:44 smithi138 bash[23295]: audit 2024-09-13T22:10:44.119267+0000 mon.a (mon.0) 660 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:44.936 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:44 smithi096 bash[23620]: audit 2024-09-13T22:10:43.728663+0000 mon.a (mon.0) 653 : audit [INF] from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-13T22:10:44.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:44 smithi096 bash[23620]: audit 2024-09-13T22:10:43.729944+0000 mon.b (mon.2) 14 : audit [INF] from='osd.3 [v2:172.21.15.96:6808/1682499796,v1:172.21.15.96:6809/1682499796]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-13T22:10:44.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:44 smithi096 bash[23620]: audit 2024-09-13T22:10:44.086867+0000 mon.a (mon.0) 654 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:44.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:44 smithi096 bash[23620]: audit 2024-09-13T22:10:44.093675+0000 mon.a (mon.0) 655 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:44.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:44 smithi096 bash[23620]: audit 2024-09-13T22:10:44.096720+0000 mon.a (mon.0) 656 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:10:44.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:44 smithi096 bash[23620]: audit 2024-09-13T22:10:44.101165+0000 mon.a (mon.0) 657 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:44.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:44 smithi096 bash[23620]: audit 2024-09-13T22:10:44.102700+0000 mon.a (mon.0) 658 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:10:44.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:44 smithi096 bash[23620]: audit 2024-09-13T22:10:44.109128+0000 mon.a (mon.0) 659 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:10:44.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:44 smithi096 bash[23620]: audit 2024-09-13T22:10:44.119267+0000 mon.a (mon.0) 660 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:45.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:45 smithi031 bash[22709]: cluster 2024-09-13T22:10:43.847214+0000 mgr.a (mgr.14150) 235 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:45.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:45 smithi031 bash[22709]: audit 2024-09-13T22:10:44.457748+0000 mon.a (mon.0) 661 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-13T22:10:45.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:45 smithi031 bash[22709]: cluster 2024-09-13T22:10:44.464666+0000 mon.a (mon.0) 662 : cluster [DBG] osdmap e23: 4 total, 3 up, 4 in 2024-09-13T22:10:45.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:45 smithi031 bash[22709]: audit 2024-09-13T22:10:44.465177+0000 mon.b (mon.2) 15 : audit [INF] from='osd.3 [v2:172.21.15.96:6808/1682499796,v1:172.21.15.96:6809/1682499796]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]: dispatch 2024-09-13T22:10:45.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:45 smithi031 bash[22709]: audit 2024-09-13T22:10:44.465568+0000 mon.a (mon.0) 663 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-13T22:10:45.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:45 smithi031 bash[22709]: audit 2024-09-13T22:10:44.466326+0000 mon.a (mon.0) 664 : audit [INF] from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]: dispatch 2024-09-13T22:10:45.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:45 smithi138 bash[23295]: cluster 2024-09-13T22:10:43.847214+0000 mgr.a (mgr.14150) 235 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:45.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:45 smithi138 bash[23295]: audit 2024-09-13T22:10:44.457748+0000 mon.a (mon.0) 661 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-13T22:10:45.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:45 smithi138 bash[23295]: cluster 2024-09-13T22:10:44.464666+0000 mon.a (mon.0) 662 : cluster [DBG] osdmap e23: 4 total, 3 up, 4 in 2024-09-13T22:10:45.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:45 smithi138 bash[23295]: audit 2024-09-13T22:10:44.465177+0000 mon.b (mon.2) 15 : audit [INF] from='osd.3 [v2:172.21.15.96:6808/1682499796,v1:172.21.15.96:6809/1682499796]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]: dispatch 2024-09-13T22:10:45.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:45 smithi138 bash[23295]: audit 2024-09-13T22:10:44.465568+0000 mon.a (mon.0) 663 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-13T22:10:45.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:45 smithi138 bash[23295]: audit 2024-09-13T22:10:44.466326+0000 mon.a (mon.0) 664 : audit [INF] from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]: dispatch 2024-09-13T22:10:45.910 INFO:teuthology.orchestra.run.smithi096.stdout:Created osd(s) 3 on host 'smithi096' 2024-09-13T22:10:45.930 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:45 smithi096 bash[23620]: cluster 2024-09-13T22:10:43.847214+0000 mgr.a (mgr.14150) 235 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:45.930 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:45 smithi096 bash[23620]: audit 2024-09-13T22:10:44.457748+0000 mon.a (mon.0) 661 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-13T22:10:45.930 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:45 smithi096 bash[23620]: cluster 2024-09-13T22:10:44.464666+0000 mon.a (mon.0) 662 : cluster [DBG] osdmap e23: 4 total, 3 up, 4 in 2024-09-13T22:10:45.930 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:45 smithi096 bash[23620]: audit 2024-09-13T22:10:44.465177+0000 mon.b (mon.2) 15 : audit [INF] from='osd.3 [v2:172.21.15.96:6808/1682499796,v1:172.21.15.96:6809/1682499796]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]: dispatch 2024-09-13T22:10:45.931 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:45 smithi096 bash[23620]: audit 2024-09-13T22:10:44.465568+0000 mon.a (mon.0) 663 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-13T22:10:45.931 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:45 smithi096 bash[23620]: audit 2024-09-13T22:10:44.466326+0000 mon.a (mon.0) 664 : audit [INF] from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]: dispatch 2024-09-13T22:10:46.598 DEBUG:teuthology.orchestra.run.smithi096:osd.3> sudo journalctl -f -n 0 -u ceph-89616338-721b-11ef-bceb-c7b262605968@osd.3.service 2024-09-13T22:10:46.601 INFO:tasks.cephadm:Deploying osd.4 on smithi138 with /dev/vg_nvme/lv_4... 2024-09-13T22:10:46.601 DEBUG:teuthology.orchestra.run.smithi138:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 89616338-721b-11ef-bceb-c7b262605968 -- lvm zap /dev/vg_nvme/lv_4 2024-09-13T22:10:46.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:46 smithi138 bash[23295]: audit 2024-09-13T22:10:45.460426+0000 mon.a (mon.0) 665 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]': finished 2024-09-13T22:10:46.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:46 smithi138 bash[23295]: cluster 2024-09-13T22:10:45.468099+0000 mon.a (mon.0) 666 : cluster [DBG] osdmap e24: 4 total, 3 up, 4 in 2024-09-13T22:10:46.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:46 smithi138 bash[23295]: audit 2024-09-13T22:10:45.469104+0000 mon.a (mon.0) 667 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-13T22:10:46.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:46 smithi138 bash[23295]: audit 2024-09-13T22:10:45.478802+0000 mon.a (mon.0) 668 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-13T22:10:46.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:46 smithi138 bash[23295]: audit 2024-09-13T22:10:45.894904+0000 mon.a (mon.0) 669 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:10:46.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:46 smithi138 bash[23295]: audit 2024-09-13T22:10:45.902501+0000 mon.a (mon.0) 670 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:46.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:46 smithi138 bash[23295]: audit 2024-09-13T22:10:45.902930+0000 mon.a (mon.0) 671 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-13T22:10:46.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:46 smithi138 bash[23295]: audit 2024-09-13T22:10:45.904859+0000 mon.a (mon.0) 672 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-09-13T22:10:46.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:46 smithi138 bash[23295]: audit 2024-09-13T22:10:45.911339+0000 mon.a (mon.0) 673 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:46.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:46 smithi138 bash[23295]: audit 2024-09-13T22:10:45.919901+0000 mon.a (mon.0) 674 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:46.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:46 smithi138 bash[23295]: audit 2024-09-13T22:10:45.923971+0000 mon.a (mon.0) 675 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:10:46.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:46 smithi138 bash[23295]: audit 2024-09-13T22:10:45.924995+0000 mon.a (mon.0) 676 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:10:46.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:46 smithi138 bash[23295]: audit 2024-09-13T22:10:45.932831+0000 mon.a (mon.0) 677 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:46.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:46 smithi138 bash[23295]: audit 2024-09-13T22:10:45.958173+0000 mon.a (mon.0) 678 : audit [INF] from='osd.3 ' entity='osd.3' 2024-09-13T22:10:46.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:46 smithi138 bash[23295]: cluster 2024-09-13T22:10:46.386521+0000 mon.a (mon.0) 679 : cluster [INF] osd.3 [v2:172.21.15.96:6808/1682499796,v1:172.21.15.96:6809/1682499796] boot 2024-09-13T22:10:46.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:46 smithi138 bash[23295]: cluster 2024-09-13T22:10:46.386631+0000 mon.a (mon.0) 680 : cluster [DBG] osdmap e25: 4 total, 4 up, 4 in 2024-09-13T22:10:46.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:46 smithi138 bash[23295]: audit 2024-09-13T22:10:46.387108+0000 mon.a (mon.0) 681 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-13T22:10:46.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:46 smithi096 bash[23620]: audit 2024-09-13T22:10:45.460426+0000 mon.a (mon.0) 665 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]': finished 2024-09-13T22:10:46.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:46 smithi096 bash[23620]: cluster 2024-09-13T22:10:45.468099+0000 mon.a (mon.0) 666 : cluster [DBG] osdmap e24: 4 total, 3 up, 4 in 2024-09-13T22:10:46.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:46 smithi096 bash[23620]: audit 2024-09-13T22:10:45.469104+0000 mon.a (mon.0) 667 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-13T22:10:46.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:46 smithi096 bash[23620]: audit 2024-09-13T22:10:45.478802+0000 mon.a (mon.0) 668 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-13T22:10:46.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:46 smithi096 bash[23620]: audit 2024-09-13T22:10:45.894904+0000 mon.a (mon.0) 669 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:10:46.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:46 smithi096 bash[23620]: audit 2024-09-13T22:10:45.902501+0000 mon.a (mon.0) 670 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:46.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:46 smithi096 bash[23620]: audit 2024-09-13T22:10:45.902930+0000 mon.a (mon.0) 671 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-13T22:10:46.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:46 smithi096 bash[23620]: audit 2024-09-13T22:10:45.904859+0000 mon.a (mon.0) 672 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-09-13T22:10:46.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:46 smithi096 bash[23620]: audit 2024-09-13T22:10:45.911339+0000 mon.a (mon.0) 673 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:46.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:46 smithi096 bash[23620]: audit 2024-09-13T22:10:45.919901+0000 mon.a (mon.0) 674 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:46.938 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:46 smithi096 bash[23620]: audit 2024-09-13T22:10:45.923971+0000 mon.a (mon.0) 675 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:10:46.938 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:46 smithi096 bash[23620]: audit 2024-09-13T22:10:45.924995+0000 mon.a (mon.0) 676 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:10:46.938 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:46 smithi096 bash[23620]: audit 2024-09-13T22:10:45.932831+0000 mon.a (mon.0) 677 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:46.938 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:46 smithi096 bash[23620]: audit 2024-09-13T22:10:45.958173+0000 mon.a (mon.0) 678 : audit [INF] from='osd.3 ' entity='osd.3' 2024-09-13T22:10:46.938 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:46 smithi096 bash[23620]: cluster 2024-09-13T22:10:46.386521+0000 mon.a (mon.0) 679 : cluster [INF] osd.3 [v2:172.21.15.96:6808/1682499796,v1:172.21.15.96:6809/1682499796] boot 2024-09-13T22:10:46.938 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:46 smithi096 bash[23620]: cluster 2024-09-13T22:10:46.386631+0000 mon.a (mon.0) 680 : cluster [DBG] osdmap e25: 4 total, 4 up, 4 in 2024-09-13T22:10:46.938 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:46 smithi096 bash[23620]: audit 2024-09-13T22:10:46.387108+0000 mon.a (mon.0) 681 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-13T22:10:46.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:46 smithi031 bash[22709]: audit 2024-09-13T22:10:45.460426+0000 mon.a (mon.0) 665 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]': finished 2024-09-13T22:10:46.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:46 smithi031 bash[22709]: cluster 2024-09-13T22:10:45.468099+0000 mon.a (mon.0) 666 : cluster [DBG] osdmap e24: 4 total, 3 up, 4 in 2024-09-13T22:10:46.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:46 smithi031 bash[22709]: audit 2024-09-13T22:10:45.469104+0000 mon.a (mon.0) 667 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-13T22:10:46.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:46 smithi031 bash[22709]: audit 2024-09-13T22:10:45.478802+0000 mon.a (mon.0) 668 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-13T22:10:46.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:46 smithi031 bash[22709]: audit 2024-09-13T22:10:45.894904+0000 mon.a (mon.0) 669 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:10:46.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:46 smithi031 bash[22709]: audit 2024-09-13T22:10:45.902501+0000 mon.a (mon.0) 670 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:46.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:46 smithi031 bash[22709]: audit 2024-09-13T22:10:45.902930+0000 mon.a (mon.0) 671 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-13T22:10:46.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:46 smithi031 bash[22709]: audit 2024-09-13T22:10:45.904859+0000 mon.a (mon.0) 672 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-09-13T22:10:46.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:46 smithi031 bash[22709]: audit 2024-09-13T22:10:45.911339+0000 mon.a (mon.0) 673 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:46.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:46 smithi031 bash[22709]: audit 2024-09-13T22:10:45.919901+0000 mon.a (mon.0) 674 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:46.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:46 smithi031 bash[22709]: audit 2024-09-13T22:10:45.923971+0000 mon.a (mon.0) 675 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:10:46.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:46 smithi031 bash[22709]: audit 2024-09-13T22:10:45.924995+0000 mon.a (mon.0) 676 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:10:46.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:46 smithi031 bash[22709]: audit 2024-09-13T22:10:45.932831+0000 mon.a (mon.0) 677 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:46.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:46 smithi031 bash[22709]: audit 2024-09-13T22:10:45.958173+0000 mon.a (mon.0) 678 : audit [INF] from='osd.3 ' entity='osd.3' 2024-09-13T22:10:46.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:46 smithi031 bash[22709]: cluster 2024-09-13T22:10:46.386521+0000 mon.a (mon.0) 679 : cluster [INF] osd.3 [v2:172.21.15.96:6808/1682499796,v1:172.21.15.96:6809/1682499796] boot 2024-09-13T22:10:46.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:46 smithi031 bash[22709]: cluster 2024-09-13T22:10:46.386631+0000 mon.a (mon.0) 680 : cluster [DBG] osdmap e25: 4 total, 4 up, 4 in 2024-09-13T22:10:46.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:46 smithi031 bash[22709]: audit 2024-09-13T22:10:46.387108+0000 mon.a (mon.0) 681 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-13T22:10:47.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:47 smithi138 bash[23295]: cluster 2024-09-13T22:10:44.698718+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-13T22:10:47.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:47 smithi138 bash[23295]: cluster 2024-09-13T22:10:44.698818+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-13T22:10:47.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:47 smithi138 bash[23295]: cluster 2024-09-13T22:10:45.847758+0000 mgr.a (mgr.14150) 236 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:47.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:47 smithi138 bash[23295]: cephadm 2024-09-13T22:10:45.913464+0000 mgr.a (mgr.14150) 237 : cephadm [INF] Adjusting osd_memory_target on smithi096 to 8120M 2024-09-13T22:10:47.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:47 smithi138 bash[23295]: cluster 2024-09-13T22:10:47.385758+0000 mon.a (mon.0) 682 : cluster [DBG] osdmap e26: 4 total, 4 up, 4 in 2024-09-13T22:10:47.884 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:47 smithi031 bash[22709]: cluster 2024-09-13T22:10:44.698718+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-13T22:10:47.884 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:47 smithi031 bash[22709]: cluster 2024-09-13T22:10:44.698818+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-13T22:10:47.884 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:47 smithi031 bash[22709]: cluster 2024-09-13T22:10:45.847758+0000 mgr.a (mgr.14150) 236 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:47.884 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:47 smithi031 bash[22709]: cephadm 2024-09-13T22:10:45.913464+0000 mgr.a (mgr.14150) 237 : cephadm [INF] Adjusting osd_memory_target on smithi096 to 8120M 2024-09-13T22:10:47.884 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:47 smithi031 bash[22709]: cluster 2024-09-13T22:10:47.385758+0000 mon.a (mon.0) 682 : cluster [DBG] osdmap e26: 4 total, 4 up, 4 in 2024-09-13T22:10:47.936 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:47 smithi096 bash[23620]: cluster 2024-09-13T22:10:44.698718+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-13T22:10:47.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:47 smithi096 bash[23620]: cluster 2024-09-13T22:10:44.698818+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-13T22:10:47.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:47 smithi096 bash[23620]: cluster 2024-09-13T22:10:45.847758+0000 mgr.a (mgr.14150) 236 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-13T22:10:47.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:47 smithi096 bash[23620]: cephadm 2024-09-13T22:10:45.913464+0000 mgr.a (mgr.14150) 237 : cephadm [INF] Adjusting osd_memory_target on smithi096 to 8120M 2024-09-13T22:10:47.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:47 smithi096 bash[23620]: cluster 2024-09-13T22:10:47.385758+0000 mon.a (mon.0) 682 : cluster [DBG] osdmap e26: 4 total, 4 up, 4 in 2024-09-13T22:10:49.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:49 smithi096 bash[23620]: cluster 2024-09-13T22:10:47.848300+0000 mgr.a (mgr.14150) 238 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 428 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:10:49.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:49 smithi096 bash[23620]: cluster 2024-09-13T22:10:48.390156+0000 mon.a (mon.0) 683 : cluster [DBG] osdmap e27: 4 total, 4 up, 4 in 2024-09-13T22:10:49.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:49 smithi096 bash[23620]: audit 2024-09-13T22:10:48.463584+0000 mon.a (mon.0) 684 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:49.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:49 smithi096 bash[23620]: audit 2024-09-13T22:10:48.470868+0000 mon.a (mon.0) 685 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:49.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:49 smithi096 bash[23620]: audit 2024-09-13T22:10:48.479946+0000 mon.a (mon.0) 686 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:49.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:49 smithi031 bash[22709]: cluster 2024-09-13T22:10:47.848300+0000 mgr.a (mgr.14150) 238 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 428 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:10:49.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:49 smithi031 bash[22709]: cluster 2024-09-13T22:10:48.390156+0000 mon.a (mon.0) 683 : cluster [DBG] osdmap e27: 4 total, 4 up, 4 in 2024-09-13T22:10:49.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:49 smithi031 bash[22709]: audit 2024-09-13T22:10:48.463584+0000 mon.a (mon.0) 684 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:49.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:49 smithi031 bash[22709]: audit 2024-09-13T22:10:48.470868+0000 mon.a (mon.0) 685 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:49.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:49 smithi031 bash[22709]: audit 2024-09-13T22:10:48.479946+0000 mon.a (mon.0) 686 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:49.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:49 smithi138 bash[23295]: cluster 2024-09-13T22:10:47.848300+0000 mgr.a (mgr.14150) 238 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 428 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:10:49.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:49 smithi138 bash[23295]: cluster 2024-09-13T22:10:48.390156+0000 mon.a (mon.0) 683 : cluster [DBG] osdmap e27: 4 total, 4 up, 4 in 2024-09-13T22:10:49.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:49 smithi138 bash[23295]: audit 2024-09-13T22:10:48.463584+0000 mon.a (mon.0) 684 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:49.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:49 smithi138 bash[23295]: audit 2024-09-13T22:10:48.470868+0000 mon.a (mon.0) 685 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:49.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:49 smithi138 bash[23295]: audit 2024-09-13T22:10:48.479946+0000 mon.a (mon.0) 686 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:10:50.315 INFO:teuthology.orchestra.run.smithi138.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.c/config 2024-09-13T22:10:50.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:50 smithi096 bash[23620]: cluster 2024-09-13T22:10:49.392119+0000 mon.a (mon.0) 687 : cluster [DBG] osdmap e28: 4 total, 4 up, 4 in 2024-09-13T22:10:50.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:50 smithi031 bash[22709]: cluster 2024-09-13T22:10:49.392119+0000 mon.a (mon.0) 687 : cluster [DBG] osdmap e28: 4 total, 4 up, 4 in 2024-09-13T22:10:50.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:50 smithi138 bash[23295]: cluster 2024-09-13T22:10:49.392119+0000 mon.a (mon.0) 687 : cluster [DBG] osdmap e28: 4 total, 4 up, 4 in 2024-09-13T22:10:51.655 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:51 smithi138 bash[23295]: cluster 2024-09-13T22:10:49.848957+0000 mgr.a (mgr.14150) 239 : cluster [DBG] pgmap v185: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 428 MiB used, 357 GiB / 358 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-09-13T22:10:51.655 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:51 smithi138 bash[23295]: cluster 2024-09-13T22:10:50.394891+0000 mon.a (mon.0) 688 : cluster [DBG] osdmap e29: 4 total, 4 up, 4 in 2024-09-13T22:10:51.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:51 smithi096 bash[23620]: cluster 2024-09-13T22:10:49.848957+0000 mgr.a (mgr.14150) 239 : cluster [DBG] pgmap v185: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 428 MiB used, 357 GiB / 358 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-09-13T22:10:51.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:51 smithi096 bash[23620]: cluster 2024-09-13T22:10:50.394891+0000 mon.a (mon.0) 688 : cluster [DBG] osdmap e29: 4 total, 4 up, 4 in 2024-09-13T22:10:51.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:51 smithi031 bash[22709]: cluster 2024-09-13T22:10:49.848957+0000 mgr.a (mgr.14150) 239 : cluster [DBG] pgmap v185: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 428 MiB used, 357 GiB / 358 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-09-13T22:10:51.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:51 smithi031 bash[22709]: cluster 2024-09-13T22:10:50.394891+0000 mon.a (mon.0) 688 : cluster [DBG] osdmap e29: 4 total, 4 up, 4 in 2024-09-13T22:10:53.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:53 smithi096 bash[23620]: cluster 2024-09-13T22:10:51.849675+0000 mgr.a (mgr.14150) 240 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail; 129 KiB/s, 0 objects/s recovering 2024-09-13T22:10:53.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:53 smithi031 bash[22709]: cluster 2024-09-13T22:10:51.849675+0000 mgr.a (mgr.14150) 240 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail; 129 KiB/s, 0 objects/s recovering 2024-09-13T22:10:53.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:53 smithi138 bash[23295]: cluster 2024-09-13T22:10:51.849675+0000 mgr.a (mgr.14150) 240 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail; 129 KiB/s, 0 objects/s recovering 2024-09-13T22:10:54.491 INFO:teuthology.orchestra.run.smithi138.stdout: 2024-09-13T22:10:54.542 DEBUG:teuthology.orchestra.run.smithi138:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 89616338-721b-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi138:vg_nvme/lv_4 2024-09-13T22:10:55.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:55 smithi096 bash[23620]: cluster 2024-09-13T22:10:53.850423+0000 mgr.a (mgr.14150) 241 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-13T22:10:55.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:55 smithi031 bash[22709]: cluster 2024-09-13T22:10:53.850423+0000 mgr.a (mgr.14150) 241 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-13T22:10:55.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:55 smithi138 bash[23295]: cluster 2024-09-13T22:10:53.850423+0000 mgr.a (mgr.14150) 241 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-13T22:10:57.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:57 smithi096 bash[23620]: cluster 2024-09-13T22:10:55.850936+0000 mgr.a (mgr.14150) 242 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail; 77 KiB/s, 0 objects/s recovering 2024-09-13T22:10:57.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:57 smithi031 bash[22709]: cluster 2024-09-13T22:10:55.850936+0000 mgr.a (mgr.14150) 242 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail; 77 KiB/s, 0 objects/s recovering 2024-09-13T22:10:57.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:57 smithi138 bash[23295]: cluster 2024-09-13T22:10:55.850936+0000 mgr.a (mgr.14150) 242 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail; 77 KiB/s, 0 objects/s recovering 2024-09-13T22:10:58.258 INFO:teuthology.orchestra.run.smithi138.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.c/config 2024-09-13T22:10:59.574 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:10:59 smithi138 bash[23295]: cluster 2024-09-13T22:10:57.851557+0000 mgr.a (mgr.14150) 243 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:10:59.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:10:59 smithi096 bash[23620]: cluster 2024-09-13T22:10:57.851557+0000 mgr.a (mgr.14150) 243 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:10:59.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:10:59 smithi031 bash[22709]: cluster 2024-09-13T22:10:57.851557+0000 mgr.a (mgr.14150) 243 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:00.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:00 smithi096 bash[23620]: audit 2024-09-13T22:10:59.523438+0000 mgr.a (mgr.14150) 244 : 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-09-13T22:11:00.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:00 smithi096 bash[23620]: audit 2024-09-13T22:10:59.529111+0000 mon.a (mon.0) 689 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-13T22:11:00.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:00 smithi096 bash[23620]: audit 2024-09-13T22:10:59.535322+0000 mon.a (mon.0) 690 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-13T22:11:00.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:00 smithi096 bash[23620]: audit 2024-09-13T22:10:59.536745+0000 mon.a (mon.0) 691 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:11:00.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:00 smithi096 bash[23620]: audit 2024-09-13T22:10:59.616660+0000 mon.a (mon.0) 692 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:00.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:00 smithi096 bash[23620]: audit 2024-09-13T22:10:59.624641+0000 mon.a (mon.0) 693 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:00.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:00 smithi096 bash[23620]: audit 2024-09-13T22:10:59.633891+0000 mon.a (mon.0) 694 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:00.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:00 smithi031 bash[22709]: audit 2024-09-13T22:10:59.523438+0000 mgr.a (mgr.14150) 244 : 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-09-13T22:11:00.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:00 smithi031 bash[22709]: audit 2024-09-13T22:10:59.529111+0000 mon.a (mon.0) 689 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-13T22:11:00.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:00 smithi031 bash[22709]: audit 2024-09-13T22:10:59.535322+0000 mon.a (mon.0) 690 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-13T22:11:00.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:00 smithi031 bash[22709]: audit 2024-09-13T22:10:59.536745+0000 mon.a (mon.0) 691 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:11:00.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:00 smithi031 bash[22709]: audit 2024-09-13T22:10:59.616660+0000 mon.a (mon.0) 692 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:00.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:00 smithi031 bash[22709]: audit 2024-09-13T22:10:59.624641+0000 mon.a (mon.0) 693 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:00.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:00 smithi031 bash[22709]: audit 2024-09-13T22:10:59.633891+0000 mon.a (mon.0) 694 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:00.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:00 smithi138 bash[23295]: audit 2024-09-13T22:10:59.523438+0000 mgr.a (mgr.14150) 244 : 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-09-13T22:11:00.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:00 smithi138 bash[23295]: audit 2024-09-13T22:10:59.529111+0000 mon.a (mon.0) 689 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-13T22:11:00.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:00 smithi138 bash[23295]: audit 2024-09-13T22:10:59.535322+0000 mon.a (mon.0) 690 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-13T22:11:00.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:00 smithi138 bash[23295]: audit 2024-09-13T22:10:59.536745+0000 mon.a (mon.0) 691 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:11:00.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:00 smithi138 bash[23295]: audit 2024-09-13T22:10:59.616660+0000 mon.a (mon.0) 692 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:00.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:00 smithi138 bash[23295]: audit 2024-09-13T22:10:59.624641+0000 mon.a (mon.0) 693 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:00.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:00 smithi138 bash[23295]: audit 2024-09-13T22:10:59.633891+0000 mon.a (mon.0) 694 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:01.936 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:01 smithi096 bash[23620]: cluster 2024-09-13T22:10:59.852122+0000 mgr.a (mgr.14150) 245 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:01.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:01 smithi031 bash[22709]: cluster 2024-09-13T22:10:59.852122+0000 mgr.a (mgr.14150) 245 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:02.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:01 smithi138 bash[23295]: cluster 2024-09-13T22:10:59.852122+0000 mgr.a (mgr.14150) 245 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:03.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:02 smithi138 bash[23295]: audit 2024-09-13T22:11:01.814704+0000 mon.a (mon.0) 695 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:03.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:02 smithi138 bash[23295]: audit 2024-09-13T22:11:01.822902+0000 mon.a (mon.0) 696 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:03.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:02 smithi138 bash[23295]: audit 2024-09-13T22:11:01.832840+0000 mon.a (mon.0) 697 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:03.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:02 smithi138 bash[23295]: cluster 2024-09-13T22:11:01.852677+0000 mgr.a (mgr.14150) 246 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:03.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:02 smithi096 bash[23620]: audit 2024-09-13T22:11:01.814704+0000 mon.a (mon.0) 695 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:03.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:02 smithi096 bash[23620]: audit 2024-09-13T22:11:01.822902+0000 mon.a (mon.0) 696 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:03.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:02 smithi096 bash[23620]: audit 2024-09-13T22:11:01.832840+0000 mon.a (mon.0) 697 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:03.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:02 smithi096 bash[23620]: cluster 2024-09-13T22:11:01.852677+0000 mgr.a (mgr.14150) 246 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:03.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:02 smithi031 bash[22709]: audit 2024-09-13T22:11:01.814704+0000 mon.a (mon.0) 695 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:03.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:02 smithi031 bash[22709]: audit 2024-09-13T22:11:01.822902+0000 mon.a (mon.0) 696 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:03.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:02 smithi031 bash[22709]: audit 2024-09-13T22:11:01.832840+0000 mon.a (mon.0) 697 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:03.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:02 smithi031 bash[22709]: cluster 2024-09-13T22:11:01.852677+0000 mgr.a (mgr.14150) 246 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:05.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:04 smithi096 bash[23620]: cluster 2024-09-13T22:11:03.853237+0000 mgr.a (mgr.14150) 247 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:05.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:04 smithi031 bash[22709]: cluster 2024-09-13T22:11:03.853237+0000 mgr.a (mgr.14150) 247 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:05.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:04 smithi138 bash[23295]: cluster 2024-09-13T22:11:03.853237+0000 mgr.a (mgr.14150) 247 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:07.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:06 smithi096 bash[23620]: cluster 2024-09-13T22:11:05.853785+0000 mgr.a (mgr.14150) 248 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:07.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:06 smithi031 bash[22709]: cluster 2024-09-13T22:11:05.853785+0000 mgr.a (mgr.14150) 248 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:07.324 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:06 smithi138 bash[23295]: cluster 2024-09-13T22:11:05.853785+0000 mgr.a (mgr.14150) 248 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:08.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:07 smithi096 bash[23620]: audit 2024-09-13T22:11:07.670896+0000 mon.a (mon.0) 698 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e0ced60b-a3d3-4e90-bee5-7201aed78c8a"}]: dispatch 2024-09-13T22:11:08.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:07 smithi096 bash[23620]: audit 2024-09-13T22:11:07.671148+0000 mon.c (mon.1) 5 : audit [INF] from='client.? 172.21.15.138:0/2264704384' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e0ced60b-a3d3-4e90-bee5-7201aed78c8a"}]: dispatch 2024-09-13T22:11:08.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:07 smithi096 bash[23620]: audit 2024-09-13T22:11:07.673049+0000 mon.a (mon.0) 699 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e0ced60b-a3d3-4e90-bee5-7201aed78c8a"}]': finished 2024-09-13T22:11:08.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:07 smithi096 bash[23620]: cluster 2024-09-13T22:11:07.676193+0000 mon.a (mon.0) 700 : cluster [DBG] osdmap e30: 5 total, 4 up, 5 in 2024-09-13T22:11:08.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:07 smithi096 bash[23620]: audit 2024-09-13T22:11:07.676390+0000 mon.a (mon.0) 701 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-13T22:11:08.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:07 smithi031 bash[22709]: audit 2024-09-13T22:11:07.670896+0000 mon.a (mon.0) 698 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e0ced60b-a3d3-4e90-bee5-7201aed78c8a"}]: dispatch 2024-09-13T22:11:08.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:07 smithi031 bash[22709]: audit 2024-09-13T22:11:07.671148+0000 mon.c (mon.1) 5 : audit [INF] from='client.? 172.21.15.138:0/2264704384' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e0ced60b-a3d3-4e90-bee5-7201aed78c8a"}]: dispatch 2024-09-13T22:11:08.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:07 smithi031 bash[22709]: audit 2024-09-13T22:11:07.673049+0000 mon.a (mon.0) 699 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e0ced60b-a3d3-4e90-bee5-7201aed78c8a"}]': finished 2024-09-13T22:11:08.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:07 smithi031 bash[22709]: cluster 2024-09-13T22:11:07.676193+0000 mon.a (mon.0) 700 : cluster [DBG] osdmap e30: 5 total, 4 up, 5 in 2024-09-13T22:11:08.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:07 smithi031 bash[22709]: audit 2024-09-13T22:11:07.676390+0000 mon.a (mon.0) 701 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-13T22:11:08.324 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:07 smithi138 bash[23295]: audit 2024-09-13T22:11:07.670896+0000 mon.a (mon.0) 698 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e0ced60b-a3d3-4e90-bee5-7201aed78c8a"}]: dispatch 2024-09-13T22:11:08.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:07 smithi138 bash[23295]: audit 2024-09-13T22:11:07.671148+0000 mon.c (mon.1) 5 : audit [INF] from='client.? 172.21.15.138:0/2264704384' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e0ced60b-a3d3-4e90-bee5-7201aed78c8a"}]: dispatch 2024-09-13T22:11:08.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:07 smithi138 bash[23295]: audit 2024-09-13T22:11:07.673049+0000 mon.a (mon.0) 699 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e0ced60b-a3d3-4e90-bee5-7201aed78c8a"}]': finished 2024-09-13T22:11:08.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:07 smithi138 bash[23295]: cluster 2024-09-13T22:11:07.676193+0000 mon.a (mon.0) 700 : cluster [DBG] osdmap e30: 5 total, 4 up, 5 in 2024-09-13T22:11:08.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:07 smithi138 bash[23295]: audit 2024-09-13T22:11:07.676390+0000 mon.a (mon.0) 701 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-13T22:11:09.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:08 smithi138 bash[23295]: cluster 2024-09-13T22:11:07.854347+0000 mgr.a (mgr.14150) 249 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:09.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:08 smithi138 bash[23295]: audit 2024-09-13T22:11:08.300410+0000 mon.c (mon.1) 6 : audit [DBG] from='client.? 172.21.15.138:0/1245683890' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-13T22:11:09.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:08 smithi138 bash[23295]: audit 2024-09-13T22:11:08.677446+0000 mon.a (mon.0) 702 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:09.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:08 smithi138 bash[23295]: audit 2024-09-13T22:11:08.691330+0000 mon.a (mon.0) 703 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:09.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:08 smithi138 bash[23295]: audit 2024-09-13T22:11:08.701872+0000 mon.a (mon.0) 704 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:09.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:08 smithi096 bash[23620]: cluster 2024-09-13T22:11:07.854347+0000 mgr.a (mgr.14150) 249 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:09.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:08 smithi096 bash[23620]: audit 2024-09-13T22:11:08.300410+0000 mon.c (mon.1) 6 : audit [DBG] from='client.? 172.21.15.138:0/1245683890' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-13T22:11:09.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:08 smithi096 bash[23620]: audit 2024-09-13T22:11:08.677446+0000 mon.a (mon.0) 702 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:09.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:08 smithi096 bash[23620]: audit 2024-09-13T22:11:08.691330+0000 mon.a (mon.0) 703 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:09.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:08 smithi096 bash[23620]: audit 2024-09-13T22:11:08.701872+0000 mon.a (mon.0) 704 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:09.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:08 smithi031 bash[22709]: cluster 2024-09-13T22:11:07.854347+0000 mgr.a (mgr.14150) 249 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:09.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:08 smithi031 bash[22709]: audit 2024-09-13T22:11:08.300410+0000 mon.c (mon.1) 6 : audit [DBG] from='client.? 172.21.15.138:0/1245683890' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-13T22:11:09.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:08 smithi031 bash[22709]: audit 2024-09-13T22:11:08.677446+0000 mon.a (mon.0) 702 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:09.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:08 smithi031 bash[22709]: audit 2024-09-13T22:11:08.691330+0000 mon.a (mon.0) 703 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:09.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:08 smithi031 bash[22709]: audit 2024-09-13T22:11:08.701872+0000 mon.a (mon.0) 704 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:11.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:10 smithi096 bash[23620]: cluster 2024-09-13T22:11:09.855002+0000 mgr.a (mgr.14150) 250 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:11.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:10 smithi031 bash[22709]: cluster 2024-09-13T22:11:09.855002+0000 mgr.a (mgr.14150) 250 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:11.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:10 smithi138 bash[23295]: cluster 2024-09-13T22:11:09.855002+0000 mgr.a (mgr.14150) 250 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:13.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:12 smithi096 bash[23620]: cluster 2024-09-13T22:11:11.855671+0000 mgr.a (mgr.14150) 251 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:13.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:12 smithi031 bash[22709]: cluster 2024-09-13T22:11:11.855671+0000 mgr.a (mgr.14150) 251 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:13.324 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:12 smithi138 bash[23295]: cluster 2024-09-13T22:11:11.855671+0000 mgr.a (mgr.14150) 251 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:15.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:14 smithi096 bash[23620]: cluster 2024-09-13T22:11:13.856328+0000 mgr.a (mgr.14150) 252 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:15.228 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:14 smithi031 bash[22709]: cluster 2024-09-13T22:11:13.856328+0000 mgr.a (mgr.14150) 252 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:15.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:14 smithi138 bash[23295]: cluster 2024-09-13T22:11:13.856328+0000 mgr.a (mgr.14150) 252 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:17.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:16 smithi096 bash[23620]: cluster 2024-09-13T22:11:15.856929+0000 mgr.a (mgr.14150) 253 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:17.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:16 smithi031 bash[22709]: cluster 2024-09-13T22:11:15.856929+0000 mgr.a (mgr.14150) 253 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:17.324 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:16 smithi138 bash[23295]: cluster 2024-09-13T22:11:15.856929+0000 mgr.a (mgr.14150) 253 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:19.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:18 smithi031 bash[22709]: cluster 2024-09-13T22:11:17.857591+0000 mgr.a (mgr.14150) 254 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:19.286 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:18 smithi096 bash[23620]: cluster 2024-09-13T22:11:17.857591+0000 mgr.a (mgr.14150) 254 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:19.296 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:18 smithi138 bash[23295]: cluster 2024-09-13T22:11:17.857591+0000 mgr.a (mgr.14150) 254 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:21.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:20 smithi096 bash[23620]: audit 2024-09-13T22:11:19.844055+0000 mon.a (mon.0) 705 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:21.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:20 smithi096 bash[23620]: audit 2024-09-13T22:11:19.853467+0000 mon.a (mon.0) 706 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:21.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:20 smithi096 bash[23620]: cluster 2024-09-13T22:11:19.858209+0000 mgr.a (mgr.14150) 255 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:21.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:20 smithi096 bash[23620]: audit 2024-09-13T22:11:19.863162+0000 mon.a (mon.0) 707 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:21.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:20 smithi096 bash[23620]: audit 2024-09-13T22:11:19.906376+0000 mon.a (mon.0) 708 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-09-13T22:11:21.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:20 smithi096 bash[23620]: audit 2024-09-13T22:11:19.908042+0000 mon.a (mon.0) 709 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:11:21.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:20 smithi096 bash[23620]: cephadm 2024-09-13T22:11:19.909435+0000 mgr.a (mgr.14150) 256 : cephadm [INF] Deploying daemon osd.4 on smithi138 2024-09-13T22:11:21.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:20 smithi031 bash[22709]: audit 2024-09-13T22:11:19.844055+0000 mon.a (mon.0) 705 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:21.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:20 smithi031 bash[22709]: audit 2024-09-13T22:11:19.853467+0000 mon.a (mon.0) 706 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:21.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:20 smithi031 bash[22709]: cluster 2024-09-13T22:11:19.858209+0000 mgr.a (mgr.14150) 255 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:21.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:20 smithi031 bash[22709]: audit 2024-09-13T22:11:19.863162+0000 mon.a (mon.0) 707 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:21.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:20 smithi031 bash[22709]: audit 2024-09-13T22:11:19.906376+0000 mon.a (mon.0) 708 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-09-13T22:11:21.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:20 smithi031 bash[22709]: audit 2024-09-13T22:11:19.908042+0000 mon.a (mon.0) 709 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:11:21.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:20 smithi031 bash[22709]: cephadm 2024-09-13T22:11:19.909435+0000 mgr.a (mgr.14150) 256 : cephadm [INF] Deploying daemon osd.4 on smithi138 2024-09-13T22:11:21.273 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:20 smithi138 bash[23295]: audit 2024-09-13T22:11:19.844055+0000 mon.a (mon.0) 705 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:21.273 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:20 smithi138 bash[23295]: audit 2024-09-13T22:11:19.853467+0000 mon.a (mon.0) 706 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:21.273 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:20 smithi138 bash[23295]: cluster 2024-09-13T22:11:19.858209+0000 mgr.a (mgr.14150) 255 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:21.273 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:20 smithi138 bash[23295]: audit 2024-09-13T22:11:19.863162+0000 mon.a (mon.0) 707 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:21.273 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:20 smithi138 bash[23295]: audit 2024-09-13T22:11:19.906376+0000 mon.a (mon.0) 708 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-09-13T22:11:21.273 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:20 smithi138 bash[23295]: audit 2024-09-13T22:11:19.908042+0000 mon.a (mon.0) 709 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:11:21.273 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:20 smithi138 bash[23295]: cephadm 2024-09-13T22:11:19.909435+0000 mgr.a (mgr.14150) 256 : cephadm [INF] Deploying daemon osd.4 on smithi138 2024-09-13T22:11:23.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:23 smithi138 bash[23295]: cluster 2024-09-13T22:11:21.858771+0000 mgr.a (mgr.14150) 257 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:23.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:23 smithi138 bash[23295]: audit 2024-09-13T22:11:22.040447+0000 mon.a (mon.0) 710 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:23.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:23 smithi138 bash[23295]: audit 2024-09-13T22:11:22.050111+0000 mon.a (mon.0) 711 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:23.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:23 smithi138 bash[23295]: audit 2024-09-13T22:11:22.059642+0000 mon.a (mon.0) 712 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:23.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:23 smithi096 bash[23620]: cluster 2024-09-13T22:11:21.858771+0000 mgr.a (mgr.14150) 257 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:23.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:23 smithi096 bash[23620]: audit 2024-09-13T22:11:22.040447+0000 mon.a (mon.0) 710 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:23.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:23 smithi096 bash[23620]: audit 2024-09-13T22:11:22.050111+0000 mon.a (mon.0) 711 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:23.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:23 smithi096 bash[23620]: audit 2024-09-13T22:11:22.059642+0000 mon.a (mon.0) 712 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:23.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:23 smithi031 bash[22709]: cluster 2024-09-13T22:11:21.858771+0000 mgr.a (mgr.14150) 257 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:23.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:23 smithi031 bash[22709]: audit 2024-09-13T22:11:22.040447+0000 mon.a (mon.0) 710 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:23.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:23 smithi031 bash[22709]: audit 2024-09-13T22:11:22.050111+0000 mon.a (mon.0) 711 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:23.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:23 smithi031 bash[22709]: audit 2024-09-13T22:11:22.059642+0000 mon.a (mon.0) 712 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:23.985 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:23 smithi138 systemd[1]: /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-13T22:11:24.324 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:23 smithi138 systemd[1]: /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-13T22:11:25.300 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:25 smithi031 bash[22709]: cluster 2024-09-13T22:11:23.859242+0000 mgr.a (mgr.14150) 258 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:25.300 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:25 smithi031 bash[22709]: audit 2024-09-13T22:11:24.132056+0000 mon.a (mon.0) 713 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:11:25.300 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:25 smithi031 bash[22709]: audit 2024-09-13T22:11:24.139323+0000 mon.a (mon.0) 714 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:25.300 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:25 smithi031 bash[22709]: audit 2024-09-13T22:11:24.139982+0000 mon.a (mon.0) 715 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:11:25.300 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:25 smithi031 bash[22709]: audit 2024-09-13T22:11:24.143091+0000 mon.a (mon.0) 716 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:11:25.300 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:25 smithi031 bash[22709]: audit 2024-09-13T22:11:24.147640+0000 mon.a (mon.0) 717 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:25.300 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:25 smithi031 bash[22709]: audit 2024-09-13T22:11:24.160459+0000 mon.a (mon.0) 718 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:25.324 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:25 smithi138 bash[23295]: cluster 2024-09-13T22:11:23.859242+0000 mgr.a (mgr.14150) 258 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:25.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:25 smithi138 bash[23295]: audit 2024-09-13T22:11:24.132056+0000 mon.a (mon.0) 713 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:11:25.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:25 smithi138 bash[23295]: audit 2024-09-13T22:11:24.139323+0000 mon.a (mon.0) 714 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:25.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:25 smithi138 bash[23295]: audit 2024-09-13T22:11:24.139982+0000 mon.a (mon.0) 715 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:11:25.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:25 smithi138 bash[23295]: audit 2024-09-13T22:11:24.143091+0000 mon.a (mon.0) 716 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:11:25.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:25 smithi138 bash[23295]: audit 2024-09-13T22:11:24.147640+0000 mon.a (mon.0) 717 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:25.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:25 smithi138 bash[23295]: audit 2024-09-13T22:11:24.160459+0000 mon.a (mon.0) 718 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:25.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:25 smithi096 bash[23620]: cluster 2024-09-13T22:11:23.859242+0000 mgr.a (mgr.14150) 258 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:25.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:25 smithi096 bash[23620]: audit 2024-09-13T22:11:24.132056+0000 mon.a (mon.0) 713 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:11:25.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:25 smithi096 bash[23620]: audit 2024-09-13T22:11:24.139323+0000 mon.a (mon.0) 714 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:25.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:25 smithi096 bash[23620]: audit 2024-09-13T22:11:24.139982+0000 mon.a (mon.0) 715 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:11:25.437 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:25 smithi096 bash[23620]: audit 2024-09-13T22:11:24.143091+0000 mon.a (mon.0) 716 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:11:25.437 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:25 smithi096 bash[23620]: audit 2024-09-13T22:11:24.147640+0000 mon.a (mon.0) 717 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:25.437 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:25 smithi096 bash[23620]: audit 2024-09-13T22:11:24.160459+0000 mon.a (mon.0) 718 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:27.136 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:27 smithi138 bash[23295]: cluster 2024-09-13T22:11:25.859759+0000 mgr.a (mgr.14150) 259 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:27.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:27 smithi031 bash[22709]: cluster 2024-09-13T22:11:25.859759+0000 mgr.a (mgr.14150) 259 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:27.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:27 smithi096 bash[23620]: cluster 2024-09-13T22:11:25.859759+0000 mgr.a (mgr.14150) 259 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:29.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:29 smithi138 bash[23295]: cluster 2024-09-13T22:11:27.860334+0000 mgr.a (mgr.14150) 260 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:29.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:29 smithi138 bash[23295]: audit 2024-09-13T22:11:28.844316+0000 mon.a (mon.0) 719 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:29.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:29 smithi138 bash[23295]: audit 2024-09-13T22:11:28.851654+0000 mon.a (mon.0) 720 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:29.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:29 smithi138 bash[23295]: audit 2024-09-13T22:11:28.856376+0000 mon.a (mon.0) 721 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:11:29.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:29 smithi138 bash[23295]: audit 2024-09-13T22:11:28.861917+0000 mon.a (mon.0) 722 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:29.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:29 smithi138 bash[23295]: audit 2024-09-13T22:11:28.862503+0000 mon.a (mon.0) 723 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:11:29.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:29 smithi138 bash[23295]: audit 2024-09-13T22:11:28.864809+0000 mon.a (mon.0) 724 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:11:29.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:29 smithi138 bash[23295]: audit 2024-09-13T22:11:28.874644+0000 mon.a (mon.0) 725 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:29.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:29 smithi096 bash[23620]: cluster 2024-09-13T22:11:27.860334+0000 mgr.a (mgr.14150) 260 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:29.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:29 smithi096 bash[23620]: audit 2024-09-13T22:11:28.844316+0000 mon.a (mon.0) 719 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:29.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:29 smithi096 bash[23620]: audit 2024-09-13T22:11:28.851654+0000 mon.a (mon.0) 720 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:29.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:29 smithi096 bash[23620]: audit 2024-09-13T22:11:28.856376+0000 mon.a (mon.0) 721 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:11:29.437 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:29 smithi096 bash[23620]: audit 2024-09-13T22:11:28.861917+0000 mon.a (mon.0) 722 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:29.437 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:29 smithi096 bash[23620]: audit 2024-09-13T22:11:28.862503+0000 mon.a (mon.0) 723 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:11:29.437 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:29 smithi096 bash[23620]: audit 2024-09-13T22:11:28.864809+0000 mon.a (mon.0) 724 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:11:29.437 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:29 smithi096 bash[23620]: audit 2024-09-13T22:11:28.874644+0000 mon.a (mon.0) 725 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:29.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:29 smithi031 bash[22709]: cluster 2024-09-13T22:11:27.860334+0000 mgr.a (mgr.14150) 260 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:29.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:29 smithi031 bash[22709]: audit 2024-09-13T22:11:28.844316+0000 mon.a (mon.0) 719 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:29.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:29 smithi031 bash[22709]: audit 2024-09-13T22:11:28.851654+0000 mon.a (mon.0) 720 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:29.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:29 smithi031 bash[22709]: audit 2024-09-13T22:11:28.856376+0000 mon.a (mon.0) 721 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:11:29.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:29 smithi031 bash[22709]: audit 2024-09-13T22:11:28.861917+0000 mon.a (mon.0) 722 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:29.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:29 smithi031 bash[22709]: audit 2024-09-13T22:11:28.862503+0000 mon.a (mon.0) 723 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:11:29.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:29 smithi031 bash[22709]: audit 2024-09-13T22:11:28.864809+0000 mon.a (mon.0) 724 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:11:29.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:29 smithi031 bash[22709]: audit 2024-09-13T22:11:28.874644+0000 mon.a (mon.0) 725 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:30.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:30 smithi138 bash[23295]: cephadm 2024-09-13T22:11:28.854418+0000 mgr.a (mgr.14150) 261 : cephadm [INF] Detected new or changed devices on smithi138 2024-09-13T22:11:30.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:30 smithi096 bash[23620]: cephadm 2024-09-13T22:11:28.854418+0000 mgr.a (mgr.14150) 261 : cephadm [INF] Detected new or changed devices on smithi138 2024-09-13T22:11:30.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:30 smithi031 bash[22709]: cephadm 2024-09-13T22:11:28.854418+0000 mgr.a (mgr.14150) 261 : cephadm [INF] Detected new or changed devices on smithi138 2024-09-13T22:11:31.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:31 smithi138 bash[23295]: cluster 2024-09-13T22:11:29.860975+0000 mgr.a (mgr.14150) 262 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:31.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:31 smithi096 bash[23620]: cluster 2024-09-13T22:11:29.860975+0000 mgr.a (mgr.14150) 262 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:31.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:31 smithi031 bash[22709]: cluster 2024-09-13T22:11:29.860975+0000 mgr.a (mgr.14150) 262 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:33.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:33 smithi138 bash[23295]: cluster 2024-09-13T22:11:31.861636+0000 mgr.a (mgr.14150) 263 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:33.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:33 smithi096 bash[23620]: cluster 2024-09-13T22:11:31.861636+0000 mgr.a (mgr.14150) 263 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:33.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:33 smithi031 bash[22709]: cluster 2024-09-13T22:11:31.861636+0000 mgr.a (mgr.14150) 263 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:34.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:34 smithi138 bash[23295]: audit 2024-09-13T22:11:33.440958+0000 mon.a (mon.0) 726 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-13T22:11:34.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:34 smithi138 bash[23295]: audit 2024-09-13T22:11:33.441017+0000 mon.c (mon.1) 7 : audit [INF] from='osd.4 [v2:172.21.15.138:6800/2288005517,v1:172.21.15.138:6801/2288005517]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-13T22:11:34.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:34 smithi096 bash[23620]: audit 2024-09-13T22:11:33.440958+0000 mon.a (mon.0) 726 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-13T22:11:34.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:34 smithi096 bash[23620]: audit 2024-09-13T22:11:33.441017+0000 mon.c (mon.1) 7 : audit [INF] from='osd.4 [v2:172.21.15.138:6800/2288005517,v1:172.21.15.138:6801/2288005517]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-13T22:11:34.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:34 smithi031 bash[22709]: audit 2024-09-13T22:11:33.440958+0000 mon.a (mon.0) 726 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-13T22:11:34.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:34 smithi031 bash[22709]: audit 2024-09-13T22:11:33.441017+0000 mon.c (mon.1) 7 : audit [INF] from='osd.4 [v2:172.21.15.138:6800/2288005517,v1:172.21.15.138:6801/2288005517]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-13T22:11:35.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:35 smithi096 bash[23620]: cluster 2024-09-13T22:11:33.862288+0000 mgr.a (mgr.14150) 264 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:35.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:35 smithi096 bash[23620]: audit 2024-09-13T22:11:34.075928+0000 mon.a (mon.0) 727 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-13T22:11:35.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:35 smithi096 bash[23620]: cluster 2024-09-13T22:11:34.080554+0000 mon.a (mon.0) 728 : cluster [DBG] osdmap e31: 5 total, 4 up, 5 in 2024-09-13T22:11:35.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:35 smithi096 bash[23620]: audit 2024-09-13T22:11:34.081000+0000 mon.a (mon.0) 729 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-13T22:11:35.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:35 smithi096 bash[23620]: audit 2024-09-13T22:11:34.085074+0000 mon.c (mon.1) 8 : audit [INF] from='osd.4 [v2:172.21.15.138:6800/2288005517,v1:172.21.15.138:6801/2288005517]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi138", "root=default"]}]: dispatch 2024-09-13T22:11:35.437 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:35 smithi096 bash[23620]: audit 2024-09-13T22:11:34.085190+0000 mon.a (mon.0) 730 : 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-09-13T22:11:35.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:35 smithi031 bash[22709]: cluster 2024-09-13T22:11:33.862288+0000 mgr.a (mgr.14150) 264 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:35.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:35 smithi031 bash[22709]: audit 2024-09-13T22:11:34.075928+0000 mon.a (mon.0) 727 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-13T22:11:35.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:35 smithi031 bash[22709]: cluster 2024-09-13T22:11:34.080554+0000 mon.a (mon.0) 728 : cluster [DBG] osdmap e31: 5 total, 4 up, 5 in 2024-09-13T22:11:35.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:35 smithi031 bash[22709]: audit 2024-09-13T22:11:34.081000+0000 mon.a (mon.0) 729 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-13T22:11:35.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:35 smithi031 bash[22709]: audit 2024-09-13T22:11:34.085074+0000 mon.c (mon.1) 8 : audit [INF] from='osd.4 [v2:172.21.15.138:6800/2288005517,v1:172.21.15.138:6801/2288005517]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi138", "root=default"]}]: dispatch 2024-09-13T22:11:35.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:35 smithi031 bash[22709]: audit 2024-09-13T22:11:34.085190+0000 mon.a (mon.0) 730 : 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-09-13T22:11:35.575 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:35 smithi138 bash[23295]: cluster 2024-09-13T22:11:33.862288+0000 mgr.a (mgr.14150) 264 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:35.575 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:35 smithi138 bash[23295]: audit 2024-09-13T22:11:34.075928+0000 mon.a (mon.0) 727 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-13T22:11:35.575 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:35 smithi138 bash[23295]: cluster 2024-09-13T22:11:34.080554+0000 mon.a (mon.0) 728 : cluster [DBG] osdmap e31: 5 total, 4 up, 5 in 2024-09-13T22:11:35.575 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:35 smithi138 bash[23295]: audit 2024-09-13T22:11:34.081000+0000 mon.a (mon.0) 729 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-13T22:11:35.575 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:35 smithi138 bash[23295]: audit 2024-09-13T22:11:34.085074+0000 mon.c (mon.1) 8 : audit [INF] from='osd.4 [v2:172.21.15.138:6800/2288005517,v1:172.21.15.138:6801/2288005517]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi138", "root=default"]}]: dispatch 2024-09-13T22:11:35.575 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:35 smithi138 bash[23295]: audit 2024-09-13T22:11:34.085190+0000 mon.a (mon.0) 730 : 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-09-13T22:11:36.324 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:36 smithi138 bash[23295]: audit 2024-09-13T22:11:35.078552+0000 mon.a (mon.0) 731 : 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-09-13T22:11:36.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:36 smithi138 bash[23295]: cluster 2024-09-13T22:11:35.083899+0000 mon.a (mon.0) 732 : cluster [DBG] osdmap e32: 5 total, 4 up, 5 in 2024-09-13T22:11:36.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:36 smithi138 bash[23295]: audit 2024-09-13T22:11:35.084782+0000 mon.a (mon.0) 733 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-13T22:11:36.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:36 smithi138 bash[23295]: audit 2024-09-13T22:11:35.095209+0000 mon.a (mon.0) 734 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-13T22:11:36.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:36 smithi096 bash[23620]: audit 2024-09-13T22:11:35.078552+0000 mon.a (mon.0) 731 : 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-09-13T22:11:36.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:36 smithi096 bash[23620]: cluster 2024-09-13T22:11:35.083899+0000 mon.a (mon.0) 732 : cluster [DBG] osdmap e32: 5 total, 4 up, 5 in 2024-09-13T22:11:36.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:36 smithi096 bash[23620]: audit 2024-09-13T22:11:35.084782+0000 mon.a (mon.0) 733 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-13T22:11:36.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:36 smithi096 bash[23620]: audit 2024-09-13T22:11:35.095209+0000 mon.a (mon.0) 734 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-13T22:11:36.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:36 smithi031 bash[22709]: audit 2024-09-13T22:11:35.078552+0000 mon.a (mon.0) 731 : 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-09-13T22:11:36.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:36 smithi031 bash[22709]: cluster 2024-09-13T22:11:35.083899+0000 mon.a (mon.0) 732 : cluster [DBG] osdmap e32: 5 total, 4 up, 5 in 2024-09-13T22:11:36.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:36 smithi031 bash[22709]: audit 2024-09-13T22:11:35.084782+0000 mon.a (mon.0) 733 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-13T22:11:36.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:36 smithi031 bash[22709]: audit 2024-09-13T22:11:35.095209+0000 mon.a (mon.0) 734 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-13T22:11:37.375 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:37 smithi138 bash[23295]: cluster 2024-09-13T22:11:34.392295+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-13T22:11:37.375 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:37 smithi138 bash[23295]: cluster 2024-09-13T22:11:34.392353+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-13T22:11:37.375 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:37 smithi138 bash[23295]: cluster 2024-09-13T22:11:35.862891+0000 mgr.a (mgr.14150) 265 : cluster [DBG] pgmap v212: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:37.376 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:37 smithi138 bash[23295]: audit 2024-09-13T22:11:36.095379+0000 mon.a (mon.0) 735 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-13T22:11:37.376 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:37 smithi138 bash[23295]: cluster 2024-09-13T22:11:36.108825+0000 mon.a (mon.0) 736 : cluster [INF] osd.4 [v2:172.21.15.138:6800/2288005517,v1:172.21.15.138:6801/2288005517] boot 2024-09-13T22:11:37.376 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:37 smithi138 bash[23295]: cluster 2024-09-13T22:11:36.108938+0000 mon.a (mon.0) 737 : cluster [DBG] osdmap e33: 5 total, 5 up, 5 in 2024-09-13T22:11:37.376 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:37 smithi138 bash[23295]: audit 2024-09-13T22:11:36.109610+0000 mon.a (mon.0) 738 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-13T22:11:37.376 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:37 smithi138 bash[23295]: cluster 2024-09-13T22:11:36.399819+0000 mon.a (mon.0) 739 : cluster [DBG] osdmap e34: 5 total, 5 up, 5 in 2024-09-13T22:11:37.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:37 smithi096 bash[23620]: cluster 2024-09-13T22:11:34.392295+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-13T22:11:37.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:37 smithi096 bash[23620]: cluster 2024-09-13T22:11:34.392353+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-13T22:11:37.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:37 smithi096 bash[23620]: cluster 2024-09-13T22:11:35.862891+0000 mgr.a (mgr.14150) 265 : cluster [DBG] pgmap v212: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:37.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:37 smithi096 bash[23620]: audit 2024-09-13T22:11:36.095379+0000 mon.a (mon.0) 735 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-13T22:11:37.437 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:37 smithi096 bash[23620]: cluster 2024-09-13T22:11:36.108825+0000 mon.a (mon.0) 736 : cluster [INF] osd.4 [v2:172.21.15.138:6800/2288005517,v1:172.21.15.138:6801/2288005517] boot 2024-09-13T22:11:37.437 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:37 smithi096 bash[23620]: cluster 2024-09-13T22:11:36.108938+0000 mon.a (mon.0) 737 : cluster [DBG] osdmap e33: 5 total, 5 up, 5 in 2024-09-13T22:11:37.437 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:37 smithi096 bash[23620]: audit 2024-09-13T22:11:36.109610+0000 mon.a (mon.0) 738 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-13T22:11:37.437 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:37 smithi096 bash[23620]: cluster 2024-09-13T22:11:36.399819+0000 mon.a (mon.0) 739 : cluster [DBG] osdmap e34: 5 total, 5 up, 5 in 2024-09-13T22:11:37.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:37 smithi031 bash[22709]: cluster 2024-09-13T22:11:34.392295+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-13T22:11:37.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:37 smithi031 bash[22709]: cluster 2024-09-13T22:11:34.392353+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-13T22:11:37.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:37 smithi031 bash[22709]: cluster 2024-09-13T22:11:35.862891+0000 mgr.a (mgr.14150) 265 : cluster [DBG] pgmap v212: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:11:37.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:37 smithi031 bash[22709]: audit 2024-09-13T22:11:36.095379+0000 mon.a (mon.0) 735 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-13T22:11:37.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:37 smithi031 bash[22709]: cluster 2024-09-13T22:11:36.108825+0000 mon.a (mon.0) 736 : cluster [INF] osd.4 [v2:172.21.15.138:6800/2288005517,v1:172.21.15.138:6801/2288005517] boot 2024-09-13T22:11:37.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:37 smithi031 bash[22709]: cluster 2024-09-13T22:11:36.108938+0000 mon.a (mon.0) 737 : cluster [DBG] osdmap e33: 5 total, 5 up, 5 in 2024-09-13T22:11:37.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:37 smithi031 bash[22709]: audit 2024-09-13T22:11:36.109610+0000 mon.a (mon.0) 738 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-13T22:11:37.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:37 smithi031 bash[22709]: cluster 2024-09-13T22:11:36.399819+0000 mon.a (mon.0) 739 : cluster [DBG] osdmap e34: 5 total, 5 up, 5 in 2024-09-13T22:11:38.101 INFO:teuthology.orchestra.run.smithi138.stdout:Created osd(s) 4 on host 'smithi138' 2024-09-13T22:11:38.651 DEBUG:teuthology.orchestra.run.smithi138:osd.4> sudo journalctl -f -n 0 -u ceph-89616338-721b-11ef-bceb-c7b262605968@osd.4.service 2024-09-13T22:11:38.654 INFO:tasks.cephadm:Deploying osd.5 on smithi138 with /dev/vg_nvme/lv_3... 2024-09-13T22:11:38.654 DEBUG:teuthology.orchestra.run.smithi138:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 89616338-721b-11ef-bceb-c7b262605968 -- lvm zap /dev/vg_nvme/lv_3 2024-09-13T22:11:38.661 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:38 smithi138 bash[23295]: cluster 2024-09-13T22:11:37.400945+0000 mon.a (mon.0) 740 : cluster [DBG] osdmap e35: 5 total, 5 up, 5 in 2024-09-13T22:11:38.662 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:38 smithi138 bash[23295]: audit 2024-09-13T22:11:38.078139+0000 mon.a (mon.0) 741 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:11:38.662 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:38 smithi138 bash[23295]: audit 2024-09-13T22:11:38.086387+0000 mon.a (mon.0) 742 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:38.662 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:38 smithi138 bash[23295]: audit 2024-09-13T22:11:38.087283+0000 mon.a (mon.0) 743 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi138", "name": "osd_memory_target"}]: dispatch 2024-09-13T22:11:38.662 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:38 smithi138 bash[23295]: audit 2024-09-13T22:11:38.090186+0000 mon.a (mon.0) 744 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:11:38.662 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:38 smithi138 bash[23295]: audit 2024-09-13T22:11:38.094374+0000 mon.a (mon.0) 745 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:38.662 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:38 smithi138 bash[23295]: audit 2024-09-13T22:11:38.096903+0000 mon.a (mon.0) 746 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:11:38.662 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:38 smithi138 bash[23295]: audit 2024-09-13T22:11:38.109307+0000 mon.a (mon.0) 747 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:38.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:38 smithi096 bash[23620]: cluster 2024-09-13T22:11:37.400945+0000 mon.a (mon.0) 740 : cluster [DBG] osdmap e35: 5 total, 5 up, 5 in 2024-09-13T22:11:38.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:38 smithi096 bash[23620]: audit 2024-09-13T22:11:38.078139+0000 mon.a (mon.0) 741 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:11:38.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:38 smithi096 bash[23620]: audit 2024-09-13T22:11:38.086387+0000 mon.a (mon.0) 742 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:38.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:38 smithi096 bash[23620]: audit 2024-09-13T22:11:38.087283+0000 mon.a (mon.0) 743 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi138", "name": "osd_memory_target"}]: dispatch 2024-09-13T22:11:38.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:38 smithi096 bash[23620]: audit 2024-09-13T22:11:38.090186+0000 mon.a (mon.0) 744 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:11:38.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:38 smithi096 bash[23620]: audit 2024-09-13T22:11:38.094374+0000 mon.a (mon.0) 745 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:38.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:38 smithi096 bash[23620]: audit 2024-09-13T22:11:38.096903+0000 mon.a (mon.0) 746 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:11:38.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:38 smithi096 bash[23620]: audit 2024-09-13T22:11:38.109307+0000 mon.a (mon.0) 747 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:38.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:38 smithi031 bash[22709]: cluster 2024-09-13T22:11:37.400945+0000 mon.a (mon.0) 740 : cluster [DBG] osdmap e35: 5 total, 5 up, 5 in 2024-09-13T22:11:38.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:38 smithi031 bash[22709]: audit 2024-09-13T22:11:38.078139+0000 mon.a (mon.0) 741 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:11:38.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:38 smithi031 bash[22709]: audit 2024-09-13T22:11:38.086387+0000 mon.a (mon.0) 742 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:38.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:38 smithi031 bash[22709]: audit 2024-09-13T22:11:38.087283+0000 mon.a (mon.0) 743 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi138", "name": "osd_memory_target"}]: dispatch 2024-09-13T22:11:38.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:38 smithi031 bash[22709]: audit 2024-09-13T22:11:38.090186+0000 mon.a (mon.0) 744 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:11:38.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:38 smithi031 bash[22709]: audit 2024-09-13T22:11:38.094374+0000 mon.a (mon.0) 745 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:38.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:38 smithi031 bash[22709]: audit 2024-09-13T22:11:38.096903+0000 mon.a (mon.0) 746 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:11:38.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:38 smithi031 bash[22709]: audit 2024-09-13T22:11:38.109307+0000 mon.a (mon.0) 747 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:39.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:39 smithi096 bash[23620]: cluster 2024-09-13T22:11:37.863419+0000 mgr.a (mgr.14150) 266 : cluster [DBG] pgmap v216: 1 pgs: 1 remapped+peering; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:11:39.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:39 smithi096 bash[23620]: cluster 2024-09-13T22:11:38.412165+0000 mon.a (mon.0) 748 : cluster [DBG] osdmap e36: 5 total, 5 up, 5 in 2024-09-13T22:11:39.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:39 smithi031 bash[22709]: cluster 2024-09-13T22:11:37.863419+0000 mgr.a (mgr.14150) 266 : cluster [DBG] pgmap v216: 1 pgs: 1 remapped+peering; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:11:39.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:39 smithi031 bash[22709]: cluster 2024-09-13T22:11:38.412165+0000 mon.a (mon.0) 748 : cluster [DBG] osdmap e36: 5 total, 5 up, 5 in 2024-09-13T22:11:39.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:39 smithi138 bash[23295]: cluster 2024-09-13T22:11:37.863419+0000 mgr.a (mgr.14150) 266 : cluster [DBG] pgmap v216: 1 pgs: 1 remapped+peering; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:11:39.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:39 smithi138 bash[23295]: cluster 2024-09-13T22:11:38.412165+0000 mon.a (mon.0) 748 : cluster [DBG] osdmap e36: 5 total, 5 up, 5 in 2024-09-13T22:11:40.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:40 smithi096 bash[23620]: cluster 2024-09-13T22:11:39.412344+0000 mon.a (mon.0) 749 : cluster [DBG] osdmap e37: 5 total, 5 up, 5 in 2024-09-13T22:11:40.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:40 smithi096 bash[23620]: audit 2024-09-13T22:11:40.061594+0000 mon.a (mon.0) 750 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:40.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:40 smithi096 bash[23620]: audit 2024-09-13T22:11:40.067694+0000 mon.a (mon.0) 751 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:40.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:40 smithi096 bash[23620]: audit 2024-09-13T22:11:40.077312+0000 mon.a (mon.0) 752 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:40.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:40 smithi031 bash[22709]: cluster 2024-09-13T22:11:39.412344+0000 mon.a (mon.0) 749 : cluster [DBG] osdmap e37: 5 total, 5 up, 5 in 2024-09-13T22:11:40.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:40 smithi031 bash[22709]: audit 2024-09-13T22:11:40.061594+0000 mon.a (mon.0) 750 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:40.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:40 smithi031 bash[22709]: audit 2024-09-13T22:11:40.067694+0000 mon.a (mon.0) 751 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:40.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:40 smithi031 bash[22709]: audit 2024-09-13T22:11:40.077312+0000 mon.a (mon.0) 752 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:40.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:40 smithi138 bash[23295]: cluster 2024-09-13T22:11:39.412344+0000 mon.a (mon.0) 749 : cluster [DBG] osdmap e37: 5 total, 5 up, 5 in 2024-09-13T22:11:40.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:40 smithi138 bash[23295]: audit 2024-09-13T22:11:40.061594+0000 mon.a (mon.0) 750 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:40.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:40 smithi138 bash[23295]: audit 2024-09-13T22:11:40.067694+0000 mon.a (mon.0) 751 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:40.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:40 smithi138 bash[23295]: audit 2024-09-13T22:11:40.077312+0000 mon.a (mon.0) 752 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:41.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:41 smithi096 bash[23620]: cluster 2024-09-13T22:11:39.863980+0000 mgr.a (mgr.14150) 267 : cluster [DBG] pgmap v219: 1 pgs: 1 remapped+peering; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:11:41.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:41 smithi096 bash[23620]: audit 2024-09-13T22:11:40.900667+0000 mon.a (mon.0) 753 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:41.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:41 smithi096 bash[23620]: audit 2024-09-13T22:11:40.908314+0000 mon.a (mon.0) 754 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:41.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:41 smithi096 bash[23620]: audit 2024-09-13T22:11:40.913371+0000 mon.a (mon.0) 755 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:11:41.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:41 smithi096 bash[23620]: audit 2024-09-13T22:11:40.919483+0000 mon.a (mon.0) 756 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:41.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:41 smithi096 bash[23620]: audit 2024-09-13T22:11:40.920129+0000 mon.a (mon.0) 757 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:11:41.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:41 smithi096 bash[23620]: audit 2024-09-13T22:11:40.923684+0000 mon.a (mon.0) 758 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:11:41.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:41 smithi096 bash[23620]: audit 2024-09-13T22:11:40.933326+0000 mon.a (mon.0) 759 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:41.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:41 smithi031 bash[22709]: cluster 2024-09-13T22:11:39.863980+0000 mgr.a (mgr.14150) 267 : cluster [DBG] pgmap v219: 1 pgs: 1 remapped+peering; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:11:41.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:41 smithi031 bash[22709]: audit 2024-09-13T22:11:40.900667+0000 mon.a (mon.0) 753 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:41.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:41 smithi031 bash[22709]: audit 2024-09-13T22:11:40.908314+0000 mon.a (mon.0) 754 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:41.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:41 smithi031 bash[22709]: audit 2024-09-13T22:11:40.913371+0000 mon.a (mon.0) 755 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:11:41.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:41 smithi031 bash[22709]: audit 2024-09-13T22:11:40.919483+0000 mon.a (mon.0) 756 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:41.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:41 smithi031 bash[22709]: audit 2024-09-13T22:11:40.920129+0000 mon.a (mon.0) 757 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:11:41.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:41 smithi031 bash[22709]: audit 2024-09-13T22:11:40.923684+0000 mon.a (mon.0) 758 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:11:41.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:41 smithi031 bash[22709]: audit 2024-09-13T22:11:40.933326+0000 mon.a (mon.0) 759 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:41.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:41 smithi138 bash[23295]: cluster 2024-09-13T22:11:39.863980+0000 mgr.a (mgr.14150) 267 : cluster [DBG] pgmap v219: 1 pgs: 1 remapped+peering; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:11:41.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:41 smithi138 bash[23295]: audit 2024-09-13T22:11:40.900667+0000 mon.a (mon.0) 753 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:41.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:41 smithi138 bash[23295]: audit 2024-09-13T22:11:40.908314+0000 mon.a (mon.0) 754 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:41.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:41 smithi138 bash[23295]: audit 2024-09-13T22:11:40.913371+0000 mon.a (mon.0) 755 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:11:41.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:41 smithi138 bash[23295]: audit 2024-09-13T22:11:40.919483+0000 mon.a (mon.0) 756 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:41.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:41 smithi138 bash[23295]: audit 2024-09-13T22:11:40.920129+0000 mon.a (mon.0) 757 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:11:41.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:41 smithi138 bash[23295]: audit 2024-09-13T22:11:40.923684+0000 mon.a (mon.0) 758 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:11:41.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:41 smithi138 bash[23295]: audit 2024-09-13T22:11:40.933326+0000 mon.a (mon.0) 759 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:42.558 INFO:teuthology.orchestra.run.smithi138.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.c/config 2024-09-13T22:11:43.574 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:43 smithi138 bash[23295]: cluster 2024-09-13T22:11:41.864552+0000 mgr.a (mgr.14150) 268 : cluster [DBG] pgmap v220: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 105 KiB/s, 0 objects/s recovering 2024-09-13T22:11:43.575 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:43 smithi138 bash[23295]: audit 2024-09-13T22:11:42.270099+0000 mon.a (mon.0) 760 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:43.575 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:43 smithi138 bash[23295]: audit 2024-09-13T22:11:42.278496+0000 mon.a (mon.0) 761 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:43.575 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:43 smithi138 bash[23295]: audit 2024-09-13T22:11:42.288011+0000 mon.a (mon.0) 762 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:43.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:43 smithi096 bash[23620]: cluster 2024-09-13T22:11:41.864552+0000 mgr.a (mgr.14150) 268 : cluster [DBG] pgmap v220: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 105 KiB/s, 0 objects/s recovering 2024-09-13T22:11:43.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:43 smithi096 bash[23620]: audit 2024-09-13T22:11:42.270099+0000 mon.a (mon.0) 760 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:43.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:43 smithi096 bash[23620]: audit 2024-09-13T22:11:42.278496+0000 mon.a (mon.0) 761 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:43.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:43 smithi096 bash[23620]: audit 2024-09-13T22:11:42.288011+0000 mon.a (mon.0) 762 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:43.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:43 smithi031 bash[22709]: cluster 2024-09-13T22:11:41.864552+0000 mgr.a (mgr.14150) 268 : cluster [DBG] pgmap v220: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 105 KiB/s, 0 objects/s recovering 2024-09-13T22:11:43.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:43 smithi031 bash[22709]: audit 2024-09-13T22:11:42.270099+0000 mon.a (mon.0) 760 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:43.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:43 smithi031 bash[22709]: audit 2024-09-13T22:11:42.278496+0000 mon.a (mon.0) 761 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:43.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:43 smithi031 bash[22709]: audit 2024-09-13T22:11:42.288011+0000 mon.a (mon.0) 762 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:11:45.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:45 smithi031 bash[22709]: cluster 2024-09-13T22:11:43.865109+0000 mgr.a (mgr.14150) 269 : cluster [DBG] pgmap v221: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 89 KiB/s, 0 objects/s recovering 2024-09-13T22:11:45.574 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:45 smithi138 bash[23295]: cluster 2024-09-13T22:11:43.865109+0000 mgr.a (mgr.14150) 269 : cluster [DBG] pgmap v221: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 89 KiB/s, 0 objects/s recovering 2024-09-13T22:11:45.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:45 smithi096 bash[23620]: cluster 2024-09-13T22:11:43.865109+0000 mgr.a (mgr.14150) 269 : cluster [DBG] pgmap v221: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 89 KiB/s, 0 objects/s recovering 2024-09-13T22:11:46.565 INFO:teuthology.orchestra.run.smithi138.stdout: 2024-09-13T22:11:46.605 DEBUG:teuthology.orchestra.run.smithi138:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 89616338-721b-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi138:vg_nvme/lv_3 2024-09-13T22:11:47.538 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:47 smithi031 bash[22709]: cluster 2024-09-13T22:11:45.865671+0000 mgr.a (mgr.14150) 270 : cluster [DBG] pgmap v222: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-13T22:11:47.574 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:47 smithi138 bash[23295]: cluster 2024-09-13T22:11:45.865671+0000 mgr.a (mgr.14150) 270 : cluster [DBG] pgmap v222: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-13T22:11:47.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:47 smithi096 bash[23620]: cluster 2024-09-13T22:11:45.865671+0000 mgr.a (mgr.14150) 270 : cluster [DBG] pgmap v222: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-13T22:11:49.575 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:49 smithi138 bash[23295]: cluster 2024-09-13T22:11:47.866282+0000 mgr.a (mgr.14150) 271 : cluster [DBG] pgmap v223: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 61 KiB/s, 0 objects/s recovering 2024-09-13T22:11:49.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:49 smithi096 bash[23620]: cluster 2024-09-13T22:11:47.866282+0000 mgr.a (mgr.14150) 271 : cluster [DBG] pgmap v223: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 61 KiB/s, 0 objects/s recovering 2024-09-13T22:11:49.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:49 smithi031 bash[22709]: cluster 2024-09-13T22:11:47.866282+0000 mgr.a (mgr.14150) 271 : cluster [DBG] pgmap v223: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 61 KiB/s, 0 objects/s recovering 2024-09-13T22:11:51.332 INFO:teuthology.orchestra.run.smithi138.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.c/config 2024-09-13T22:11:51.561 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:51 smithi138 bash[23295]: cluster 2024-09-13T22:11:49.866909+0000 mgr.a (mgr.14150) 272 : cluster [DBG] pgmap v224: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 55 KiB/s, 0 objects/s recovering 2024-09-13T22:11:51.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:51 smithi096 bash[23620]: cluster 2024-09-13T22:11:49.866909+0000 mgr.a (mgr.14150) 272 : cluster [DBG] pgmap v224: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 55 KiB/s, 0 objects/s recovering 2024-09-13T22:11:51.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:51 smithi031 bash[22709]: cluster 2024-09-13T22:11:49.866909+0000 mgr.a (mgr.14150) 272 : cluster [DBG] pgmap v224: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 55 KiB/s, 0 objects/s recovering 2024-09-13T22:11:53.567 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:53 smithi138 bash[23295]: cluster 2024-09-13T22:11:51.867483+0000 mgr.a (mgr.14150) 273 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-13T22:11:53.568 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:53 smithi138 bash[23295]: audit 2024-09-13T22:11:53.086535+0000 mon.a (mon.0) 763 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-13T22:11:53.568 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:53 smithi138 bash[23295]: audit 2024-09-13T22:11:53.092567+0000 mon.a (mon.0) 764 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-13T22:11:53.568 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:53 smithi138 bash[23295]: audit 2024-09-13T22:11:53.094239+0000 mon.a (mon.0) 765 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:11:53.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:53 smithi096 bash[23620]: cluster 2024-09-13T22:11:51.867483+0000 mgr.a (mgr.14150) 273 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-13T22:11:53.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:53 smithi096 bash[23620]: audit 2024-09-13T22:11:53.086535+0000 mon.a (mon.0) 763 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-13T22:11:53.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:53 smithi096 bash[23620]: audit 2024-09-13T22:11:53.092567+0000 mon.a (mon.0) 764 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-13T22:11:53.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:53 smithi096 bash[23620]: audit 2024-09-13T22:11:53.094239+0000 mon.a (mon.0) 765 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:11:53.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:53 smithi031 bash[22709]: cluster 2024-09-13T22:11:51.867483+0000 mgr.a (mgr.14150) 273 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-13T22:11:53.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:53 smithi031 bash[22709]: audit 2024-09-13T22:11:53.086535+0000 mon.a (mon.0) 763 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-13T22:11:53.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:53 smithi031 bash[22709]: audit 2024-09-13T22:11:53.092567+0000 mon.a (mon.0) 764 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-13T22:11:53.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:53 smithi031 bash[22709]: audit 2024-09-13T22:11:53.094239+0000 mon.a (mon.0) 765 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:11:54.574 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:54 smithi138 bash[23295]: audit 2024-09-13T22:11:53.080027+0000 mgr.a (mgr.14150) 274 : 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-09-13T22:11:54.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:54 smithi096 bash[23620]: audit 2024-09-13T22:11:53.080027+0000 mgr.a (mgr.14150) 274 : 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-09-13T22:11:54.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:54 smithi031 bash[22709]: audit 2024-09-13T22:11:53.080027+0000 mgr.a (mgr.14150) 274 : 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-09-13T22:11:55.574 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:55 smithi138 bash[23295]: cluster 2024-09-13T22:11:53.868039+0000 mgr.a (mgr.14150) 275 : cluster [DBG] pgmap v226: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:11:55.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:55 smithi096 bash[23620]: cluster 2024-09-13T22:11:53.868039+0000 mgr.a (mgr.14150) 275 : cluster [DBG] pgmap v226: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:11:55.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:55 smithi031 bash[22709]: cluster 2024-09-13T22:11:53.868039+0000 mgr.a (mgr.14150) 275 : cluster [DBG] pgmap v226: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:11:57.574 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:57 smithi138 bash[23295]: cluster 2024-09-13T22:11:55.868584+0000 mgr.a (mgr.14150) 276 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:11:57.578 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:57 smithi096 bash[23620]: cluster 2024-09-13T22:11:55.868584+0000 mgr.a (mgr.14150) 276 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:11:57.702 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:57 smithi031 bash[22709]: cluster 2024-09-13T22:11:55.868584+0000 mgr.a (mgr.14150) 276 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:11:59.435 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:11:59 smithi096 bash[23620]: cluster 2024-09-13T22:11:57.869195+0000 mgr.a (mgr.14150) 277 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:11:59.464 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:11:59 smithi138 bash[23295]: cluster 2024-09-13T22:11:57.869195+0000 mgr.a (mgr.14150) 277 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:11:59.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:11:59 smithi031 bash[22709]: cluster 2024-09-13T22:11:57.869195+0000 mgr.a (mgr.14150) 277 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:01.574 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:01 smithi138 bash[23295]: cluster 2024-09-13T22:11:59.869743+0000 mgr.a (mgr.14150) 278 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:01.574 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:01 smithi138 bash[23295]: audit 2024-09-13T22:12:00.269699+0000 mon.a (mon.0) 766 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:01.575 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:01 smithi138 bash[23295]: audit 2024-09-13T22:12:00.278030+0000 mon.a (mon.0) 767 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:01.575 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:01 smithi138 bash[23295]: audit 2024-09-13T22:12:00.287440+0000 mon.a (mon.0) 768 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:01.575 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:01 smithi138 bash[23295]: audit 2024-09-13T22:12:00.514923+0000 mon.a (mon.0) 769 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:01.575 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:01 smithi138 bash[23295]: audit 2024-09-13T22:12:00.522831+0000 mon.a (mon.0) 770 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:01.575 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:01 smithi138 bash[23295]: audit 2024-09-13T22:12:00.532286+0000 mon.a (mon.0) 771 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:01.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:01 smithi096 bash[23620]: cluster 2024-09-13T22:11:59.869743+0000 mgr.a (mgr.14150) 278 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:01.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:01 smithi096 bash[23620]: audit 2024-09-13T22:12:00.269699+0000 mon.a (mon.0) 766 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:01.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:01 smithi096 bash[23620]: audit 2024-09-13T22:12:00.278030+0000 mon.a (mon.0) 767 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:01.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:01 smithi096 bash[23620]: audit 2024-09-13T22:12:00.287440+0000 mon.a (mon.0) 768 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:01.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:01 smithi096 bash[23620]: audit 2024-09-13T22:12:00.514923+0000 mon.a (mon.0) 769 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:01.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:01 smithi096 bash[23620]: audit 2024-09-13T22:12:00.522831+0000 mon.a (mon.0) 770 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:01.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:01 smithi096 bash[23620]: audit 2024-09-13T22:12:00.532286+0000 mon.a (mon.0) 771 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:01.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:01 smithi031 bash[22709]: cluster 2024-09-13T22:11:59.869743+0000 mgr.a (mgr.14150) 278 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:01.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:01 smithi031 bash[22709]: audit 2024-09-13T22:12:00.269699+0000 mon.a (mon.0) 766 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:01.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:01 smithi031 bash[22709]: audit 2024-09-13T22:12:00.278030+0000 mon.a (mon.0) 767 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:01.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:01 smithi031 bash[22709]: audit 2024-09-13T22:12:00.287440+0000 mon.a (mon.0) 768 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:01.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:01 smithi031 bash[22709]: audit 2024-09-13T22:12:00.514923+0000 mon.a (mon.0) 769 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:01.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:01 smithi031 bash[22709]: audit 2024-09-13T22:12:00.522831+0000 mon.a (mon.0) 770 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:01.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:01 smithi031 bash[22709]: audit 2024-09-13T22:12:00.532286+0000 mon.a (mon.0) 771 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:02.574 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:02 smithi138 bash[23295]: audit 2024-09-13T22:12:01.565481+0000 mon.c (mon.1) 9 : audit [INF] from='client.? 172.21.15.138:0/441132199' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "1ec288e5-8267-4172-bc44-ac66eb029268"}]: dispatch 2024-09-13T22:12:02.575 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:02 smithi138 bash[23295]: audit 2024-09-13T22:12:01.565606+0000 mon.a (mon.0) 772 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "1ec288e5-8267-4172-bc44-ac66eb029268"}]: dispatch 2024-09-13T22:12:02.575 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:02 smithi138 bash[23295]: audit 2024-09-13T22:12:01.569364+0000 mon.a (mon.0) 773 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "1ec288e5-8267-4172-bc44-ac66eb029268"}]': finished 2024-09-13T22:12:02.575 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:02 smithi138 bash[23295]: cluster 2024-09-13T22:12:01.574432+0000 mon.a (mon.0) 774 : cluster [DBG] osdmap e38: 6 total, 5 up, 6 in 2024-09-13T22:12:02.575 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:02 smithi138 bash[23295]: audit 2024-09-13T22:12:01.574833+0000 mon.a (mon.0) 775 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-13T22:12:02.575 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:02 smithi138 bash[23295]: audit 2024-09-13T22:12:02.194868+0000 mon.c (mon.1) 10 : audit [DBG] from='client.? 172.21.15.138:0/3793385822' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-13T22:12:02.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:02 smithi096 bash[23620]: audit 2024-09-13T22:12:01.565481+0000 mon.c (mon.1) 9 : audit [INF] from='client.? 172.21.15.138:0/441132199' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "1ec288e5-8267-4172-bc44-ac66eb029268"}]: dispatch 2024-09-13T22:12:02.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:02 smithi096 bash[23620]: audit 2024-09-13T22:12:01.565606+0000 mon.a (mon.0) 772 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "1ec288e5-8267-4172-bc44-ac66eb029268"}]: dispatch 2024-09-13T22:12:02.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:02 smithi096 bash[23620]: audit 2024-09-13T22:12:01.569364+0000 mon.a (mon.0) 773 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "1ec288e5-8267-4172-bc44-ac66eb029268"}]': finished 2024-09-13T22:12:02.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:02 smithi096 bash[23620]: cluster 2024-09-13T22:12:01.574432+0000 mon.a (mon.0) 774 : cluster [DBG] osdmap e38: 6 total, 5 up, 6 in 2024-09-13T22:12:02.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:02 smithi096 bash[23620]: audit 2024-09-13T22:12:01.574833+0000 mon.a (mon.0) 775 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-13T22:12:02.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:02 smithi096 bash[23620]: audit 2024-09-13T22:12:02.194868+0000 mon.c (mon.1) 10 : audit [DBG] from='client.? 172.21.15.138:0/3793385822' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-13T22:12:02.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:02 smithi031 bash[22709]: audit 2024-09-13T22:12:01.565481+0000 mon.c (mon.1) 9 : audit [INF] from='client.? 172.21.15.138:0/441132199' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "1ec288e5-8267-4172-bc44-ac66eb029268"}]: dispatch 2024-09-13T22:12:02.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:02 smithi031 bash[22709]: audit 2024-09-13T22:12:01.565606+0000 mon.a (mon.0) 772 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "1ec288e5-8267-4172-bc44-ac66eb029268"}]: dispatch 2024-09-13T22:12:02.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:02 smithi031 bash[22709]: audit 2024-09-13T22:12:01.569364+0000 mon.a (mon.0) 773 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "1ec288e5-8267-4172-bc44-ac66eb029268"}]': finished 2024-09-13T22:12:02.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:02 smithi031 bash[22709]: cluster 2024-09-13T22:12:01.574432+0000 mon.a (mon.0) 774 : cluster [DBG] osdmap e38: 6 total, 5 up, 6 in 2024-09-13T22:12:02.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:02 smithi031 bash[22709]: audit 2024-09-13T22:12:01.574833+0000 mon.a (mon.0) 775 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-13T22:12:02.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:02 smithi031 bash[22709]: audit 2024-09-13T22:12:02.194868+0000 mon.c (mon.1) 10 : audit [DBG] from='client.? 172.21.15.138:0/3793385822' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-13T22:12:03.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:03 smithi138 bash[23295]: cluster 2024-09-13T22:12:01.870283+0000 mgr.a (mgr.14150) 279 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:03.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:03 smithi138 bash[23295]: audit 2024-09-13T22:12:02.495431+0000 mon.a (mon.0) 776 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:03.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:03 smithi138 bash[23295]: audit 2024-09-13T22:12:02.504296+0000 mon.a (mon.0) 777 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:03.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:03 smithi138 bash[23295]: audit 2024-09-13T22:12:02.515447+0000 mon.a (mon.0) 778 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:03.936 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:03 smithi096 bash[23620]: cluster 2024-09-13T22:12:01.870283+0000 mgr.a (mgr.14150) 279 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:03.936 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:03 smithi096 bash[23620]: audit 2024-09-13T22:12:02.495431+0000 mon.a (mon.0) 776 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:03.936 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:03 smithi096 bash[23620]: audit 2024-09-13T22:12:02.504296+0000 mon.a (mon.0) 777 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:03.936 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:03 smithi096 bash[23620]: audit 2024-09-13T22:12:02.515447+0000 mon.a (mon.0) 778 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:03.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:03 smithi031 bash[22709]: cluster 2024-09-13T22:12:01.870283+0000 mgr.a (mgr.14150) 279 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:03.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:03 smithi031 bash[22709]: audit 2024-09-13T22:12:02.495431+0000 mon.a (mon.0) 776 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:03.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:03 smithi031 bash[22709]: audit 2024-09-13T22:12:02.504296+0000 mon.a (mon.0) 777 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:03.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:03 smithi031 bash[22709]: audit 2024-09-13T22:12:02.515447+0000 mon.a (mon.0) 778 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:05.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:05 smithi031 bash[22709]: cluster 2024-09-13T22:12:03.870819+0000 mgr.a (mgr.14150) 280 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:05.821 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:05 smithi138 bash[23295]: cluster 2024-09-13T22:12:03.870819+0000 mgr.a (mgr.14150) 280 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:05.936 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:05 smithi096 bash[23620]: cluster 2024-09-13T22:12:03.870819+0000 mgr.a (mgr.14150) 280 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:07.813 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:07 smithi031 bash[22709]: cluster 2024-09-13T22:12:05.871356+0000 mgr.a (mgr.14150) 281 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:07.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:07 smithi138 bash[23295]: cluster 2024-09-13T22:12:05.871356+0000 mgr.a (mgr.14150) 281 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:07.936 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:07 smithi096 bash[23620]: cluster 2024-09-13T22:12:05.871356+0000 mgr.a (mgr.14150) 281 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:09.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:09 smithi138 bash[23295]: cluster 2024-09-13T22:12:07.871778+0000 mgr.a (mgr.14150) 282 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:09.936 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:09 smithi096 bash[23620]: cluster 2024-09-13T22:12:07.871778+0000 mgr.a (mgr.14150) 282 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:09.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:09 smithi031 bash[22709]: cluster 2024-09-13T22:12:07.871778+0000 mgr.a (mgr.14150) 282 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:11.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:11 smithi138 bash[23295]: cluster 2024-09-13T22:12:09.872271+0000 mgr.a (mgr.14150) 283 : cluster [DBG] pgmap v235: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:11.936 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:11 smithi096 bash[23620]: cluster 2024-09-13T22:12:09.872271+0000 mgr.a (mgr.14150) 283 : cluster [DBG] pgmap v235: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:11.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:11 smithi031 bash[22709]: cluster 2024-09-13T22:12:09.872271+0000 mgr.a (mgr.14150) 283 : cluster [DBG] pgmap v235: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:13.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:13 smithi138 bash[23295]: cluster 2024-09-13T22:12:11.872850+0000 mgr.a (mgr.14150) 284 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:13.936 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:13 smithi096 bash[23620]: cluster 2024-09-13T22:12:11.872850+0000 mgr.a (mgr.14150) 284 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:13.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:13 smithi031 bash[22709]: cluster 2024-09-13T22:12:11.872850+0000 mgr.a (mgr.14150) 284 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:15.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:15 smithi138 bash[23295]: cluster 2024-09-13T22:12:13.873537+0000 mgr.a (mgr.14150) 285 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:15.936 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:15 smithi096 bash[23620]: cluster 2024-09-13T22:12:13.873537+0000 mgr.a (mgr.14150) 285 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:15.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:15 smithi031 bash[22709]: cluster 2024-09-13T22:12:13.873537+0000 mgr.a (mgr.14150) 285 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:16.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:16 smithi138 bash[23295]: audit 2024-09-13T22:12:15.589703+0000 mon.a (mon.0) 779 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-09-13T22:12:16.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:16 smithi138 bash[23295]: audit 2024-09-13T22:12:15.591683+0000 mon.a (mon.0) 780 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:12:16.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:16 smithi138 bash[23295]: cephadm 2024-09-13T22:12:15.593431+0000 mgr.a (mgr.14150) 286 : cephadm [INF] Deploying daemon osd.5 on smithi138 2024-09-13T22:12:16.936 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:16 smithi096 bash[23620]: audit 2024-09-13T22:12:15.589703+0000 mon.a (mon.0) 779 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-09-13T22:12:16.936 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:16 smithi096 bash[23620]: audit 2024-09-13T22:12:15.591683+0000 mon.a (mon.0) 780 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:12:16.936 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:16 smithi096 bash[23620]: cephadm 2024-09-13T22:12:15.593431+0000 mgr.a (mgr.14150) 286 : cephadm [INF] Deploying daemon osd.5 on smithi138 2024-09-13T22:12:16.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:16 smithi031 bash[22709]: audit 2024-09-13T22:12:15.589703+0000 mon.a (mon.0) 779 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-09-13T22:12:16.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:16 smithi031 bash[22709]: audit 2024-09-13T22:12:15.591683+0000 mon.a (mon.0) 780 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:12:16.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:16 smithi031 bash[22709]: cephadm 2024-09-13T22:12:15.593431+0000 mgr.a (mgr.14150) 286 : cephadm [INF] Deploying daemon osd.5 on smithi138 2024-09-13T22:12:17.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:17 smithi096 bash[23620]: cluster 2024-09-13T22:12:15.874186+0000 mgr.a (mgr.14150) 287 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:17.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:17 smithi138 bash[23295]: cluster 2024-09-13T22:12:15.874186+0000 mgr.a (mgr.14150) 287 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:17.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:17 smithi031 bash[22709]: cluster 2024-09-13T22:12:15.874186+0000 mgr.a (mgr.14150) 287 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:19.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:19 smithi138 bash[23295]: cluster 2024-09-13T22:12:17.874791+0000 mgr.a (mgr.14150) 288 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:19.878 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:19 smithi096 bash[23620]: cluster 2024-09-13T22:12:17.874791+0000 mgr.a (mgr.14150) 288 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:19.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:19 smithi031 bash[22709]: cluster 2024-09-13T22:12:17.874791+0000 mgr.a (mgr.14150) 288 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:21.791 INFO:journalctl@ceph.osd.4.smithi138.stdout:Sep 13 22:12:21 smithi138 systemd[1]: /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-13T22:12:21.791 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:21 smithi138 bash[23295]: cluster 2024-09-13T22:12:19.875395+0000 mgr.a (mgr.14150) 289 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:21.791 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:21 smithi138 bash[23295]: audit 2024-09-13T22:12:20.496465+0000 mon.a (mon.0) 781 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:21.791 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:21 smithi138 bash[23295]: audit 2024-09-13T22:12:20.503606+0000 mon.a (mon.0) 782 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:21.791 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:21 smithi138 bash[23295]: audit 2024-09-13T22:12:20.513026+0000 mon.a (mon.0) 783 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:21.792 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:21 smithi138 bash[23295]: audit 2024-09-13T22:12:20.675756+0000 mon.a (mon.0) 784 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:21.792 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:21 smithi138 bash[23295]: audit 2024-09-13T22:12:20.684682+0000 mon.a (mon.0) 785 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:21.792 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:21 smithi138 bash[23295]: cephadm 2024-09-13T22:12:20.687361+0000 mgr.a (mgr.14150) 290 : cephadm [INF] Detected new or changed devices on smithi138 2024-09-13T22:12:21.792 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:21 smithi138 bash[23295]: audit 2024-09-13T22:12:20.694523+0000 mon.a (mon.0) 786 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:21.792 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:21 smithi138 systemd[1]: /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-13T22:12:21.936 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:21 smithi096 bash[23620]: cluster 2024-09-13T22:12:19.875395+0000 mgr.a (mgr.14150) 289 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:21.936 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:21 smithi096 bash[23620]: audit 2024-09-13T22:12:20.496465+0000 mon.a (mon.0) 781 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:21.936 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:21 smithi096 bash[23620]: audit 2024-09-13T22:12:20.503606+0000 mon.a (mon.0) 782 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:21.936 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:21 smithi096 bash[23620]: audit 2024-09-13T22:12:20.513026+0000 mon.a (mon.0) 783 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:21.936 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:21 smithi096 bash[23620]: audit 2024-09-13T22:12:20.675756+0000 mon.a (mon.0) 784 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:21.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:21 smithi096 bash[23620]: audit 2024-09-13T22:12:20.684682+0000 mon.a (mon.0) 785 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:21.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:21 smithi096 bash[23620]: cephadm 2024-09-13T22:12:20.687361+0000 mgr.a (mgr.14150) 290 : cephadm [INF] Detected new or changed devices on smithi138 2024-09-13T22:12:21.937 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:21 smithi096 bash[23620]: audit 2024-09-13T22:12:20.694523+0000 mon.a (mon.0) 786 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:21.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:21 smithi031 bash[22709]: cluster 2024-09-13T22:12:19.875395+0000 mgr.a (mgr.14150) 289 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:21.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:21 smithi031 bash[22709]: audit 2024-09-13T22:12:20.496465+0000 mon.a (mon.0) 781 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:21.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:21 smithi031 bash[22709]: audit 2024-09-13T22:12:20.503606+0000 mon.a (mon.0) 782 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:21.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:21 smithi031 bash[22709]: audit 2024-09-13T22:12:20.513026+0000 mon.a (mon.0) 783 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:21.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:21 smithi031 bash[22709]: audit 2024-09-13T22:12:20.675756+0000 mon.a (mon.0) 784 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:21.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:21 smithi031 bash[22709]: audit 2024-09-13T22:12:20.684682+0000 mon.a (mon.0) 785 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:21.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:21 smithi031 bash[22709]: cephadm 2024-09-13T22:12:20.687361+0000 mgr.a (mgr.14150) 290 : cephadm [INF] Detected new or changed devices on smithi138 2024-09-13T22:12:21.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:21 smithi031 bash[22709]: audit 2024-09-13T22:12:20.694523+0000 mon.a (mon.0) 786 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:22.074 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:21 smithi138 systemd[1]: /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-13T22:12:22.074 INFO:journalctl@ceph.osd.4.smithi138.stdout:Sep 13 22:12:21 smithi138 systemd[1]: /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-13T22:12:22.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:22 smithi138 bash[23295]: audit 2024-09-13T22:12:22.073055+0000 mon.a (mon.0) 787 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:12:22.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:22 smithi138 bash[23295]: audit 2024-09-13T22:12:22.081309+0000 mon.a (mon.0) 788 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:22.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:22 smithi138 bash[23295]: audit 2024-09-13T22:12:22.082256+0000 mon.a (mon.0) 789 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:12:22.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:22 smithi138 bash[23295]: audit 2024-09-13T22:12:22.085573+0000 mon.a (mon.0) 790 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:12:22.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:22 smithi138 bash[23295]: audit 2024-09-13T22:12:22.090454+0000 mon.a (mon.0) 791 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:22.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:22 smithi138 bash[23295]: audit 2024-09-13T22:12:22.097427+0000 mon.a (mon.0) 792 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:22.936 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:22 smithi096 bash[23620]: audit 2024-09-13T22:12:22.073055+0000 mon.a (mon.0) 787 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:12:22.936 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:22 smithi096 bash[23620]: audit 2024-09-13T22:12:22.081309+0000 mon.a (mon.0) 788 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:22.936 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:22 smithi096 bash[23620]: audit 2024-09-13T22:12:22.082256+0000 mon.a (mon.0) 789 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:12:22.936 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:22 smithi096 bash[23620]: audit 2024-09-13T22:12:22.085573+0000 mon.a (mon.0) 790 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:12:22.936 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:22 smithi096 bash[23620]: audit 2024-09-13T22:12:22.090454+0000 mon.a (mon.0) 791 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:22.936 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:22 smithi096 bash[23620]: audit 2024-09-13T22:12:22.097427+0000 mon.a (mon.0) 792 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:22.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:22 smithi031 bash[22709]: audit 2024-09-13T22:12:22.073055+0000 mon.a (mon.0) 787 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:12:22.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:22 smithi031 bash[22709]: audit 2024-09-13T22:12:22.081309+0000 mon.a (mon.0) 788 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:22.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:22 smithi031 bash[22709]: audit 2024-09-13T22:12:22.082256+0000 mon.a (mon.0) 789 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:12:22.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:22 smithi031 bash[22709]: audit 2024-09-13T22:12:22.085573+0000 mon.a (mon.0) 790 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:12:22.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:22 smithi031 bash[22709]: audit 2024-09-13T22:12:22.090454+0000 mon.a (mon.0) 791 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:22.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:22 smithi031 bash[22709]: audit 2024-09-13T22:12:22.097427+0000 mon.a (mon.0) 792 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:24.074 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:23 smithi138 bash[23295]: cluster 2024-09-13T22:12:21.875948+0000 mgr.a (mgr.14150) 291 : cluster [DBG] pgmap v241: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:24.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:23 smithi138 bash[23295]: audit 2024-09-13T22:12:22.726564+0000 mon.a (mon.0) 793 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:24.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:23 smithi138 bash[23295]: audit 2024-09-13T22:12:22.735186+0000 mon.a (mon.0) 794 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:24.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:23 smithi138 bash[23295]: audit 2024-09-13T22:12:22.744919+0000 mon.a (mon.0) 795 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:24.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:23 smithi096 bash[23620]: cluster 2024-09-13T22:12:21.875948+0000 mgr.a (mgr.14150) 291 : cluster [DBG] pgmap v241: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:24.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:23 smithi096 bash[23620]: audit 2024-09-13T22:12:22.726564+0000 mon.a (mon.0) 793 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:24.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:23 smithi096 bash[23620]: audit 2024-09-13T22:12:22.735186+0000 mon.a (mon.0) 794 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:24.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:23 smithi096 bash[23620]: audit 2024-09-13T22:12:22.744919+0000 mon.a (mon.0) 795 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:24.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:23 smithi031 bash[22709]: cluster 2024-09-13T22:12:21.875948+0000 mgr.a (mgr.14150) 291 : cluster [DBG] pgmap v241: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:24.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:23 smithi031 bash[22709]: audit 2024-09-13T22:12:22.726564+0000 mon.a (mon.0) 793 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:24.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:23 smithi031 bash[22709]: audit 2024-09-13T22:12:22.735186+0000 mon.a (mon.0) 794 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:24.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:23 smithi031 bash[22709]: audit 2024-09-13T22:12:22.744919+0000 mon.a (mon.0) 795 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:26.074 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:25 smithi138 bash[23295]: cluster 2024-09-13T22:12:23.876480+0000 mgr.a (mgr.14150) 292 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:26.175 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:25 smithi031 bash[22709]: cluster 2024-09-13T22:12:23.876480+0000 mgr.a (mgr.14150) 292 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:26.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:25 smithi096 bash[23620]: cluster 2024-09-13T22:12:23.876480+0000 mgr.a (mgr.14150) 292 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:28.005 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:27 smithi138 bash[23295]: cluster 2024-09-13T22:12:25.877012+0000 mgr.a (mgr.14150) 293 : cluster [DBG] pgmap v243: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:28.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:27 smithi096 bash[23620]: cluster 2024-09-13T22:12:25.877012+0000 mgr.a (mgr.14150) 293 : cluster [DBG] pgmap v243: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:28.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:27 smithi031 bash[22709]: cluster 2024-09-13T22:12:25.877012+0000 mgr.a (mgr.14150) 293 : cluster [DBG] pgmap v243: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:30.025 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:29 smithi138 bash[23295]: cluster 2024-09-13T22:12:27.877590+0000 mgr.a (mgr.14150) 294 : cluster [DBG] pgmap v244: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:30.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:29 smithi096 bash[23620]: cluster 2024-09-13T22:12:27.877590+0000 mgr.a (mgr.14150) 294 : cluster [DBG] pgmap v244: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:30.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:29 smithi031 bash[22709]: cluster 2024-09-13T22:12:27.877590+0000 mgr.a (mgr.14150) 294 : cluster [DBG] pgmap v244: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:31.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:31 smithi138 bash[23295]: cluster 2024-09-13T22:12:29.878127+0000 mgr.a (mgr.14150) 295 : cluster [DBG] pgmap v245: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:31.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:31 smithi138 bash[23295]: audit 2024-09-13T22:12:31.504948+0000 mon.c (mon.1) 11 : audit [INF] from='osd.5 [v2:172.21.15.138:6808/2369719595,v1:172.21.15.138:6809/2369719595]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-13T22:12:31.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:31 smithi138 bash[23295]: audit 2024-09-13T22:12:31.505025+0000 mon.a (mon.0) 796 : audit [INF] from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-13T22:12:32.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:31 smithi096 bash[23620]: cluster 2024-09-13T22:12:29.878127+0000 mgr.a (mgr.14150) 295 : cluster [DBG] pgmap v245: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:32.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:31 smithi096 bash[23620]: audit 2024-09-13T22:12:31.504948+0000 mon.c (mon.1) 11 : audit [INF] from='osd.5 [v2:172.21.15.138:6808/2369719595,v1:172.21.15.138:6809/2369719595]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-13T22:12:32.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:31 smithi096 bash[23620]: audit 2024-09-13T22:12:31.505025+0000 mon.a (mon.0) 796 : audit [INF] from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-13T22:12:32.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:31 smithi031 bash[22709]: cluster 2024-09-13T22:12:29.878127+0000 mgr.a (mgr.14150) 295 : cluster [DBG] pgmap v245: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:32.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:31 smithi031 bash[22709]: audit 2024-09-13T22:12:31.504948+0000 mon.c (mon.1) 11 : audit [INF] from='osd.5 [v2:172.21.15.138:6808/2369719595,v1:172.21.15.138:6809/2369719595]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-13T22:12:32.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:31 smithi031 bash[22709]: audit 2024-09-13T22:12:31.505025+0000 mon.a (mon.0) 796 : audit [INF] from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-13T22:12:32.692 INFO:teuthology.orchestra.run.smithi138.stdout:Created osd(s) 5 on host 'smithi138' 2024-09-13T22:12:32.998 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:32 smithi138 bash[23295]: audit 2024-09-13T22:12:31.742538+0000 mon.a (mon.0) 797 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-13T22:12:32.998 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:32 smithi138 bash[23295]: cluster 2024-09-13T22:12:31.748007+0000 mon.a (mon.0) 798 : cluster [DBG] osdmap e39: 6 total, 5 up, 6 in 2024-09-13T22:12:32.998 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:32 smithi138 bash[23295]: audit 2024-09-13T22:12:31.748856+0000 mon.a (mon.0) 799 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-13T22:12:32.998 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:32 smithi138 bash[23295]: audit 2024-09-13T22:12:31.749705+0000 mon.c (mon.1) 12 : audit [INF] from='osd.5 [v2:172.21.15.138:6808/2369719595,v1:172.21.15.138:6809/2369719595]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi138", "root=default"]}]: dispatch 2024-09-13T22:12:32.998 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:32 smithi138 bash[23295]: audit 2024-09-13T22:12:31.755874+0000 mon.a (mon.0) 800 : 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-09-13T22:12:32.998 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:32 smithi138 bash[23295]: audit 2024-09-13T22:12:32.675195+0000 mon.a (mon.0) 801 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:12:32.998 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:32 smithi138 bash[23295]: audit 2024-09-13T22:12:32.683492+0000 mon.a (mon.0) 802 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:32.998 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:32 smithi138 bash[23295]: audit 2024-09-13T22:12:32.684404+0000 mon.a (mon.0) 803 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-13T22:12:32.999 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:32 smithi138 bash[23295]: audit 2024-09-13T22:12:32.686680+0000 mon.a (mon.0) 804 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-09-13T22:12:32.999 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:32 smithi138 bash[23295]: audit 2024-09-13T22:12:32.693381+0000 mon.a (mon.0) 805 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:32.999 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:32 smithi138 bash[23295]: audit 2024-09-13T22:12:32.703419+0000 mon.a (mon.0) 806 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:32.999 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:32 smithi138 bash[23295]: audit 2024-09-13T22:12:32.707400+0000 mon.a (mon.0) 807 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:12:32.999 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:32 smithi138 bash[23295]: audit 2024-09-13T22:12:32.709423+0000 mon.a (mon.0) 808 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:12:32.999 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:32 smithi138 bash[23295]: audit 2024-09-13T22:12:32.721098+0000 mon.a (mon.0) 809 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:33.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:32 smithi096 bash[23620]: audit 2024-09-13T22:12:31.742538+0000 mon.a (mon.0) 797 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-13T22:12:33.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:32 smithi096 bash[23620]: cluster 2024-09-13T22:12:31.748007+0000 mon.a (mon.0) 798 : cluster [DBG] osdmap e39: 6 total, 5 up, 6 in 2024-09-13T22:12:33.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:32 smithi096 bash[23620]: audit 2024-09-13T22:12:31.748856+0000 mon.a (mon.0) 799 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-13T22:12:33.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:32 smithi096 bash[23620]: audit 2024-09-13T22:12:31.749705+0000 mon.c (mon.1) 12 : audit [INF] from='osd.5 [v2:172.21.15.138:6808/2369719595,v1:172.21.15.138:6809/2369719595]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi138", "root=default"]}]: dispatch 2024-09-13T22:12:33.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:32 smithi096 bash[23620]: audit 2024-09-13T22:12:31.755874+0000 mon.a (mon.0) 800 : 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-09-13T22:12:33.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:32 smithi096 bash[23620]: audit 2024-09-13T22:12:32.675195+0000 mon.a (mon.0) 801 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:12:33.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:32 smithi096 bash[23620]: audit 2024-09-13T22:12:32.683492+0000 mon.a (mon.0) 802 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:33.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:32 smithi096 bash[23620]: audit 2024-09-13T22:12:32.684404+0000 mon.a (mon.0) 803 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-13T22:12:33.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:32 smithi096 bash[23620]: audit 2024-09-13T22:12:32.686680+0000 mon.a (mon.0) 804 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-09-13T22:12:33.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:32 smithi096 bash[23620]: audit 2024-09-13T22:12:32.693381+0000 mon.a (mon.0) 805 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:33.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:32 smithi096 bash[23620]: audit 2024-09-13T22:12:32.703419+0000 mon.a (mon.0) 806 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:33.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:32 smithi096 bash[23620]: audit 2024-09-13T22:12:32.707400+0000 mon.a (mon.0) 807 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:12:33.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:32 smithi096 bash[23620]: audit 2024-09-13T22:12:32.709423+0000 mon.a (mon.0) 808 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:12:33.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:32 smithi096 bash[23620]: audit 2024-09-13T22:12:32.721098+0000 mon.a (mon.0) 809 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:33.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:32 smithi031 bash[22709]: audit 2024-09-13T22:12:31.742538+0000 mon.a (mon.0) 797 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-13T22:12:33.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:32 smithi031 bash[22709]: cluster 2024-09-13T22:12:31.748007+0000 mon.a (mon.0) 798 : cluster [DBG] osdmap e39: 6 total, 5 up, 6 in 2024-09-13T22:12:33.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:32 smithi031 bash[22709]: audit 2024-09-13T22:12:31.748856+0000 mon.a (mon.0) 799 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-13T22:12:33.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:32 smithi031 bash[22709]: audit 2024-09-13T22:12:31.749705+0000 mon.c (mon.1) 12 : audit [INF] from='osd.5 [v2:172.21.15.138:6808/2369719595,v1:172.21.15.138:6809/2369719595]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi138", "root=default"]}]: dispatch 2024-09-13T22:12:33.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:32 smithi031 bash[22709]: audit 2024-09-13T22:12:31.755874+0000 mon.a (mon.0) 800 : 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-09-13T22:12:33.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:32 smithi031 bash[22709]: audit 2024-09-13T22:12:32.675195+0000 mon.a (mon.0) 801 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:12:33.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:32 smithi031 bash[22709]: audit 2024-09-13T22:12:32.683492+0000 mon.a (mon.0) 802 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:33.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:32 smithi031 bash[22709]: audit 2024-09-13T22:12:32.684404+0000 mon.a (mon.0) 803 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-13T22:12:33.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:32 smithi031 bash[22709]: audit 2024-09-13T22:12:32.686680+0000 mon.a (mon.0) 804 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-09-13T22:12:33.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:32 smithi031 bash[22709]: audit 2024-09-13T22:12:32.693381+0000 mon.a (mon.0) 805 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:33.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:32 smithi031 bash[22709]: audit 2024-09-13T22:12:32.703419+0000 mon.a (mon.0) 806 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:33.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:32 smithi031 bash[22709]: audit 2024-09-13T22:12:32.707400+0000 mon.a (mon.0) 807 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:12:33.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:32 smithi031 bash[22709]: audit 2024-09-13T22:12:32.709423+0000 mon.a (mon.0) 808 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:12:33.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:32 smithi031 bash[22709]: audit 2024-09-13T22:12:32.721098+0000 mon.a (mon.0) 809 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:33.710 DEBUG:teuthology.orchestra.run.smithi138:osd.5> sudo journalctl -f -n 0 -u ceph-89616338-721b-11ef-bceb-c7b262605968@osd.5.service 2024-09-13T22:12:33.713 INFO:tasks.cephadm:Waiting for 6 OSDs to come up... 2024-09-13T22:12:33.713 DEBUG:teuthology.orchestra.run.smithi031:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 89616338-721b-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-13T22:12:34.074 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:33 smithi138 bash[23295]: cluster 2024-09-13T22:12:31.878651+0000 mgr.a (mgr.14150) 296 : cluster [DBG] pgmap v247: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:34.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:33 smithi138 bash[23295]: cephadm 2024-09-13T22:12:32.695592+0000 mgr.a (mgr.14150) 297 : cephadm [INF] Adjusting osd_memory_target on smithi138 to 10168M 2024-09-13T22:12:34.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:33 smithi138 bash[23295]: audit 2024-09-13T22:12:32.760548+0000 mon.a (mon.0) 810 : 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-09-13T22:12:34.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:33 smithi138 bash[23295]: cluster 2024-09-13T22:12:32.766247+0000 mon.a (mon.0) 811 : cluster [DBG] osdmap e40: 6 total, 5 up, 6 in 2024-09-13T22:12:34.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:33 smithi138 bash[23295]: audit 2024-09-13T22:12:32.766843+0000 mon.a (mon.0) 812 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-13T22:12:34.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:33 smithi138 bash[23295]: audit 2024-09-13T22:12:32.768033+0000 mon.a (mon.0) 813 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-13T22:12:34.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:33 smithi096 bash[23620]: cluster 2024-09-13T22:12:31.878651+0000 mgr.a (mgr.14150) 296 : cluster [DBG] pgmap v247: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:34.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:33 smithi096 bash[23620]: cephadm 2024-09-13T22:12:32.695592+0000 mgr.a (mgr.14150) 297 : cephadm [INF] Adjusting osd_memory_target on smithi138 to 10168M 2024-09-13T22:12:34.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:33 smithi096 bash[23620]: audit 2024-09-13T22:12:32.760548+0000 mon.a (mon.0) 810 : 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-09-13T22:12:34.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:33 smithi096 bash[23620]: cluster 2024-09-13T22:12:32.766247+0000 mon.a (mon.0) 811 : cluster [DBG] osdmap e40: 6 total, 5 up, 6 in 2024-09-13T22:12:34.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:33 smithi096 bash[23620]: audit 2024-09-13T22:12:32.766843+0000 mon.a (mon.0) 812 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-13T22:12:34.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:33 smithi096 bash[23620]: audit 2024-09-13T22:12:32.768033+0000 mon.a (mon.0) 813 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-13T22:12:34.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:33 smithi031 bash[22709]: cluster 2024-09-13T22:12:31.878651+0000 mgr.a (mgr.14150) 296 : cluster [DBG] pgmap v247: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:34.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:33 smithi031 bash[22709]: cephadm 2024-09-13T22:12:32.695592+0000 mgr.a (mgr.14150) 297 : cephadm [INF] Adjusting osd_memory_target on smithi138 to 10168M 2024-09-13T22:12:34.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:33 smithi031 bash[22709]: audit 2024-09-13T22:12:32.760548+0000 mon.a (mon.0) 810 : 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-09-13T22:12:34.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:33 smithi031 bash[22709]: cluster 2024-09-13T22:12:32.766247+0000 mon.a (mon.0) 811 : cluster [DBG] osdmap e40: 6 total, 5 up, 6 in 2024-09-13T22:12:34.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:33 smithi031 bash[22709]: audit 2024-09-13T22:12:32.766843+0000 mon.a (mon.0) 812 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-13T22:12:34.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:33 smithi031 bash[22709]: audit 2024-09-13T22:12:32.768033+0000 mon.a (mon.0) 813 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-13T22:12:34.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:34 smithi138 bash[23295]: cluster 2024-09-13T22:12:32.533349+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-13T22:12:34.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:34 smithi138 bash[23295]: cluster 2024-09-13T22:12:32.533484+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-13T22:12:34.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:34 smithi138 bash[23295]: cluster 2024-09-13T22:12:33.768947+0000 mon.a (mon.0) 814 : cluster [INF] osd.5 [v2:172.21.15.138:6808/2369719595,v1:172.21.15.138:6809/2369719595] boot 2024-09-13T22:12:34.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:34 smithi138 bash[23295]: cluster 2024-09-13T22:12:33.769021+0000 mon.a (mon.0) 815 : cluster [DBG] osdmap e41: 6 total, 6 up, 6 in 2024-09-13T22:12:34.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:34 smithi138 bash[23295]: audit 2024-09-13T22:12:33.769587+0000 mon.a (mon.0) 816 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-13T22:12:35.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:34 smithi096 bash[23620]: cluster 2024-09-13T22:12:32.533349+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-13T22:12:35.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:34 smithi096 bash[23620]: cluster 2024-09-13T22:12:32.533484+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-13T22:12:35.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:34 smithi096 bash[23620]: cluster 2024-09-13T22:12:33.768947+0000 mon.a (mon.0) 814 : cluster [INF] osd.5 [v2:172.21.15.138:6808/2369719595,v1:172.21.15.138:6809/2369719595] boot 2024-09-13T22:12:35.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:34 smithi096 bash[23620]: cluster 2024-09-13T22:12:33.769021+0000 mon.a (mon.0) 815 : cluster [DBG] osdmap e41: 6 total, 6 up, 6 in 2024-09-13T22:12:35.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:34 smithi096 bash[23620]: audit 2024-09-13T22:12:33.769587+0000 mon.a (mon.0) 816 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-13T22:12:35.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:34 smithi031 bash[22709]: cluster 2024-09-13T22:12:32.533349+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-13T22:12:35.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:34 smithi031 bash[22709]: cluster 2024-09-13T22:12:32.533484+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-13T22:12:35.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:34 smithi031 bash[22709]: cluster 2024-09-13T22:12:33.768947+0000 mon.a (mon.0) 814 : cluster [INF] osd.5 [v2:172.21.15.138:6808/2369719595,v1:172.21.15.138:6809/2369719595] boot 2024-09-13T22:12:35.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:34 smithi031 bash[22709]: cluster 2024-09-13T22:12:33.769021+0000 mon.a (mon.0) 815 : cluster [DBG] osdmap e41: 6 total, 6 up, 6 in 2024-09-13T22:12:35.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:34 smithi031 bash[22709]: audit 2024-09-13T22:12:33.769587+0000 mon.a (mon.0) 816 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-13T22:12:36.074 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:35 smithi138 bash[23295]: cluster 2024-09-13T22:12:33.879163+0000 mgr.a (mgr.14150) 298 : cluster [DBG] pgmap v250: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:36.074 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:35 smithi138 bash[23295]: cluster 2024-09-13T22:12:34.787472+0000 mon.a (mon.0) 817 : cluster [DBG] osdmap e42: 6 total, 6 up, 6 in 2024-09-13T22:12:36.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:35 smithi096 bash[23620]: cluster 2024-09-13T22:12:33.879163+0000 mgr.a (mgr.14150) 298 : cluster [DBG] pgmap v250: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:36.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:35 smithi096 bash[23620]: cluster 2024-09-13T22:12:34.787472+0000 mon.a (mon.0) 817 : cluster [DBG] osdmap e42: 6 total, 6 up, 6 in 2024-09-13T22:12:36.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:35 smithi031 bash[22709]: cluster 2024-09-13T22:12:33.879163+0000 mgr.a (mgr.14150) 298 : cluster [DBG] pgmap v250: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-13T22:12:36.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:35 smithi031 bash[22709]: cluster 2024-09-13T22:12:34.787472+0000 mon.a (mon.0) 817 : cluster [DBG] osdmap e42: 6 total, 6 up, 6 in 2024-09-13T22:12:37.074 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:36 smithi138 bash[23295]: cluster 2024-09-13T22:12:35.790555+0000 mon.a (mon.0) 818 : cluster [DBG] osdmap e43: 6 total, 6 up, 6 in 2024-09-13T22:12:37.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:36 smithi138 bash[23295]: cluster 2024-09-13T22:12:36.407719+0000 mon.a (mon.0) 819 : cluster [DBG] osdmap e44: 6 total, 6 up, 6 in 2024-09-13T22:12:37.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:36 smithi096 bash[23620]: cluster 2024-09-13T22:12:35.790555+0000 mon.a (mon.0) 818 : cluster [DBG] osdmap e43: 6 total, 6 up, 6 in 2024-09-13T22:12:37.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:36 smithi096 bash[23620]: cluster 2024-09-13T22:12:36.407719+0000 mon.a (mon.0) 819 : cluster [DBG] osdmap e44: 6 total, 6 up, 6 in 2024-09-13T22:12:37.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:36 smithi031 bash[22709]: cluster 2024-09-13T22:12:35.790555+0000 mon.a (mon.0) 818 : cluster [DBG] osdmap e43: 6 total, 6 up, 6 in 2024-09-13T22:12:37.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:36 smithi031 bash[22709]: cluster 2024-09-13T22:12:36.407719+0000 mon.a (mon.0) 819 : cluster [DBG] osdmap e44: 6 total, 6 up, 6 in 2024-09-13T22:12:38.074 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:37 smithi138 bash[23295]: cluster 2024-09-13T22:12:35.879710+0000 mgr.a (mgr.14150) 299 : cluster [DBG] pgmap v253: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:12:38.074 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:37 smithi138 bash[23295]: cluster 2024-09-13T22:12:37.412436+0000 mon.a (mon.0) 820 : cluster [DBG] osdmap e45: 6 total, 6 up, 6 in 2024-09-13T22:12:38.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:37 smithi096 bash[23620]: cluster 2024-09-13T22:12:35.879710+0000 mgr.a (mgr.14150) 299 : cluster [DBG] pgmap v253: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:12:38.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:37 smithi096 bash[23620]: cluster 2024-09-13T22:12:37.412436+0000 mon.a (mon.0) 820 : cluster [DBG] osdmap e45: 6 total, 6 up, 6 in 2024-09-13T22:12:38.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:37 smithi031 bash[22709]: cluster 2024-09-13T22:12:35.879710+0000 mgr.a (mgr.14150) 299 : cluster [DBG] pgmap v253: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:12:38.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:37 smithi031 bash[22709]: cluster 2024-09-13T22:12:37.412436+0000 mon.a (mon.0) 820 : cluster [DBG] osdmap e45: 6 total, 6 up, 6 in 2024-09-13T22:12:38.468 INFO:teuthology.orchestra.run.smithi031.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T22:12:39.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:38 smithi096 bash[23620]: cluster 2024-09-13T22:12:37.880285+0000 mgr.a (mgr.14150) 300 : cluster [DBG] pgmap v256: 1 pgs: 1 peering; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-09-13T22:12:39.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:38 smithi031 bash[22709]: cluster 2024-09-13T22:12:37.880285+0000 mgr.a (mgr.14150) 300 : cluster [DBG] pgmap v256: 1 pgs: 1 peering; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-09-13T22:12:39.324 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:38 smithi138 bash[23295]: cluster 2024-09-13T22:12:37.880285+0000 mgr.a (mgr.14150) 300 : cluster [DBG] pgmap v256: 1 pgs: 1 peering; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-09-13T22:12:39.962 INFO:teuthology.orchestra.run.smithi031.stdout: 2024-09-13T22:12:40.577 INFO:teuthology.orchestra.run.smithi031.stdout:{"epoch":45,"num_osds":6,"num_up_osds":6,"osd_up_since":1726265553,"num_in_osds":6,"osd_in_since":1726265521,"num_remapped_pgs":0} 2024-09-13T22:12:40.578 DEBUG:teuthology.orchestra.run.smithi031:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 shell --fsid 89616338-721b-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-13T22:12:41.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:40 smithi096 bash[23620]: cluster 2024-09-13T22:12:39.880788+0000 mgr.a (mgr.14150) 301 : cluster [DBG] pgmap v257: 1 pgs: 1 peering; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 113 KiB/s, 0 objects/s recovering 2024-09-13T22:12:41.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:40 smithi096 bash[23620]: audit 2024-09-13T22:12:39.965194+0000 mon.a (mon.0) 821 : audit [DBG] from='client.? 172.21.15.31:0/2555913557' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-13T22:12:41.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:40 smithi096 bash[23620]: audit 2024-09-13T22:12:40.672912+0000 mon.a (mon.0) 822 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:41.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:40 smithi096 bash[23620]: audit 2024-09-13T22:12:40.679115+0000 mon.a (mon.0) 823 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:41.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:40 smithi096 bash[23620]: audit 2024-09-13T22:12:40.686755+0000 mon.a (mon.0) 824 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:41.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:40 smithi096 bash[23620]: audit 2024-09-13T22:12:40.903186+0000 mon.a (mon.0) 825 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:41.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:40 smithi096 bash[23620]: audit 2024-09-13T22:12:40.910398+0000 mon.a (mon.0) 826 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:41.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:40 smithi096 bash[23620]: audit 2024-09-13T22:12:40.914928+0000 mon.a (mon.0) 827 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:12:41.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:40 smithi096 bash[23620]: audit 2024-09-13T22:12:40.919828+0000 mon.a (mon.0) 828 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:41.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:40 smithi096 bash[23620]: audit 2024-09-13T22:12:40.925629+0000 mon.a (mon.0) 829 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:12:41.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:40 smithi096 bash[23620]: audit 2024-09-13T22:12:40.927516+0000 mon.a (mon.0) 830 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:12:41.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:40 smithi031 bash[22709]: cluster 2024-09-13T22:12:39.880788+0000 mgr.a (mgr.14150) 301 : cluster [DBG] pgmap v257: 1 pgs: 1 peering; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 113 KiB/s, 0 objects/s recovering 2024-09-13T22:12:41.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:40 smithi031 bash[22709]: audit 2024-09-13T22:12:39.965194+0000 mon.a (mon.0) 821 : audit [DBG] from='client.? 172.21.15.31:0/2555913557' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-13T22:12:41.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:40 smithi031 bash[22709]: audit 2024-09-13T22:12:40.672912+0000 mon.a (mon.0) 822 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:41.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:40 smithi031 bash[22709]: audit 2024-09-13T22:12:40.679115+0000 mon.a (mon.0) 823 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:41.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:40 smithi031 bash[22709]: audit 2024-09-13T22:12:40.686755+0000 mon.a (mon.0) 824 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:41.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:40 smithi031 bash[22709]: audit 2024-09-13T22:12:40.903186+0000 mon.a (mon.0) 825 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:41.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:40 smithi031 bash[22709]: audit 2024-09-13T22:12:40.910398+0000 mon.a (mon.0) 826 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:41.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:40 smithi031 bash[22709]: audit 2024-09-13T22:12:40.914928+0000 mon.a (mon.0) 827 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:12:41.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:40 smithi031 bash[22709]: audit 2024-09-13T22:12:40.919828+0000 mon.a (mon.0) 828 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:41.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:40 smithi031 bash[22709]: audit 2024-09-13T22:12:40.925629+0000 mon.a (mon.0) 829 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:12:41.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:40 smithi031 bash[22709]: audit 2024-09-13T22:12:40.927516+0000 mon.a (mon.0) 830 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:12:41.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:40 smithi138 bash[23295]: cluster 2024-09-13T22:12:39.880788+0000 mgr.a (mgr.14150) 301 : cluster [DBG] pgmap v257: 1 pgs: 1 peering; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 113 KiB/s, 0 objects/s recovering 2024-09-13T22:12:41.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:40 smithi138 bash[23295]: audit 2024-09-13T22:12:39.965194+0000 mon.a (mon.0) 821 : audit [DBG] from='client.? 172.21.15.31:0/2555913557' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-13T22:12:41.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:40 smithi138 bash[23295]: audit 2024-09-13T22:12:40.672912+0000 mon.a (mon.0) 822 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:41.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:40 smithi138 bash[23295]: audit 2024-09-13T22:12:40.679115+0000 mon.a (mon.0) 823 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:41.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:40 smithi138 bash[23295]: audit 2024-09-13T22:12:40.686755+0000 mon.a (mon.0) 824 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:41.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:40 smithi138 bash[23295]: audit 2024-09-13T22:12:40.903186+0000 mon.a (mon.0) 825 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:41.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:40 smithi138 bash[23295]: audit 2024-09-13T22:12:40.910398+0000 mon.a (mon.0) 826 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:41.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:40 smithi138 bash[23295]: audit 2024-09-13T22:12:40.914928+0000 mon.a (mon.0) 827 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:12:41.325 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:40 smithi138 bash[23295]: audit 2024-09-13T22:12:40.919828+0000 mon.a (mon.0) 828 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:41.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:40 smithi138 bash[23295]: audit 2024-09-13T22:12:40.925629+0000 mon.a (mon.0) 829 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:12:41.326 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:40 smithi138 bash[23295]: audit 2024-09-13T22:12:40.927516+0000 mon.a (mon.0) 830 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:12:42.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:41 smithi031 bash[22709]: audit 2024-09-13T22:12:40.937514+0000 mon.a (mon.0) 831 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:42.324 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:41 smithi138 bash[23295]: audit 2024-09-13T22:12:40.937514+0000 mon.a (mon.0) 831 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:42.435 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:41 smithi096 bash[23620]: audit 2024-09-13T22:12:40.937514+0000 mon.a (mon.0) 831 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:43.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:43 smithi096 bash[23620]: cluster 2024-09-13T22:12:41.881349+0000 mgr.a (mgr.14150) 302 : cluster [DBG] pgmap v258: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 95 KiB/s, 0 objects/s recovering 2024-09-13T22:12:43.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:43 smithi096 bash[23620]: audit 2024-09-13T22:12:42.419342+0000 mon.a (mon.0) 832 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:43.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:43 smithi096 bash[23620]: audit 2024-09-13T22:12:42.427488+0000 mon.a (mon.0) 833 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:43.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:43 smithi096 bash[23620]: audit 2024-09-13T22:12:42.432098+0000 mon.a (mon.0) 834 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:12:43.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:43 smithi096 bash[23620]: audit 2024-09-13T22:12:42.436804+0000 mon.a (mon.0) 835 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:43.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:43 smithi096 bash[23620]: audit 2024-09-13T22:12:42.442517+0000 mon.a (mon.0) 836 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:12:43.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:43 smithi096 bash[23620]: audit 2024-09-13T22:12:42.444247+0000 mon.a (mon.0) 837 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:12:43.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:43 smithi096 bash[23620]: audit 2024-09-13T22:12:42.453700+0000 mon.a (mon.0) 838 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:43.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:43 smithi096 bash[23620]: audit 2024-09-13T22:12:42.948936+0000 mon.a (mon.0) 839 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:43.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:43 smithi096 bash[23620]: audit 2024-09-13T22:12:42.957151+0000 mon.a (mon.0) 840 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:43.687 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:43 smithi096 bash[23620]: audit 2024-09-13T22:12:42.966980+0000 mon.a (mon.0) 841 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:43.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:43 smithi031 bash[22709]: cluster 2024-09-13T22:12:41.881349+0000 mgr.a (mgr.14150) 302 : cluster [DBG] pgmap v258: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 95 KiB/s, 0 objects/s recovering 2024-09-13T22:12:43.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:43 smithi031 bash[22709]: audit 2024-09-13T22:12:42.419342+0000 mon.a (mon.0) 832 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:43.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:43 smithi031 bash[22709]: audit 2024-09-13T22:12:42.427488+0000 mon.a (mon.0) 833 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:43.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:43 smithi031 bash[22709]: audit 2024-09-13T22:12:42.432098+0000 mon.a (mon.0) 834 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:12:43.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:43 smithi031 bash[22709]: audit 2024-09-13T22:12:42.436804+0000 mon.a (mon.0) 835 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:43.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:43 smithi031 bash[22709]: audit 2024-09-13T22:12:42.442517+0000 mon.a (mon.0) 836 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:12:43.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:43 smithi031 bash[22709]: audit 2024-09-13T22:12:42.444247+0000 mon.a (mon.0) 837 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:12:43.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:43 smithi031 bash[22709]: audit 2024-09-13T22:12:42.453700+0000 mon.a (mon.0) 838 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:43.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:43 smithi031 bash[22709]: audit 2024-09-13T22:12:42.948936+0000 mon.a (mon.0) 839 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:43.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:43 smithi031 bash[22709]: audit 2024-09-13T22:12:42.957151+0000 mon.a (mon.0) 840 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:43.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:43 smithi031 bash[22709]: audit 2024-09-13T22:12:42.966980+0000 mon.a (mon.0) 841 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:43.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:43 smithi138 bash[23295]: cluster 2024-09-13T22:12:41.881349+0000 mgr.a (mgr.14150) 302 : cluster [DBG] pgmap v258: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 95 KiB/s, 0 objects/s recovering 2024-09-13T22:12:43.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:43 smithi138 bash[23295]: audit 2024-09-13T22:12:42.419342+0000 mon.a (mon.0) 832 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:43.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:43 smithi138 bash[23295]: audit 2024-09-13T22:12:42.427488+0000 mon.a (mon.0) 833 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:43.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:43 smithi138 bash[23295]: audit 2024-09-13T22:12:42.432098+0000 mon.a (mon.0) 834 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:12:43.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:43 smithi138 bash[23295]: audit 2024-09-13T22:12:42.436804+0000 mon.a (mon.0) 835 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:43.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:43 smithi138 bash[23295]: audit 2024-09-13T22:12:42.442517+0000 mon.a (mon.0) 836 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:12:43.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:43 smithi138 bash[23295]: audit 2024-09-13T22:12:42.444247+0000 mon.a (mon.0) 837 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:12:43.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:43 smithi138 bash[23295]: audit 2024-09-13T22:12:42.453700+0000 mon.a (mon.0) 838 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:43.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:43 smithi138 bash[23295]: audit 2024-09-13T22:12:42.948936+0000 mon.a (mon.0) 839 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:43.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:43 smithi138 bash[23295]: audit 2024-09-13T22:12:42.957151+0000 mon.a (mon.0) 840 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:43.826 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:43 smithi138 bash[23295]: audit 2024-09-13T22:12:42.966980+0000 mon.a (mon.0) 841 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:12:45.344 INFO:teuthology.orchestra.run.smithi031.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T22:12:45.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:45 smithi096 bash[23620]: cluster 2024-09-13T22:12:43.881941+0000 mgr.a (mgr.14150) 303 : cluster [DBG] pgmap v259: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-13T22:12:45.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:45 smithi031 bash[22709]: cluster 2024-09-13T22:12:43.881941+0000 mgr.a (mgr.14150) 303 : cluster [DBG] pgmap v259: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-13T22:12:45.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:45 smithi138 bash[23295]: cluster 2024-09-13T22:12:43.881941+0000 mgr.a (mgr.14150) 303 : cluster [DBG] pgmap v259: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-13T22:12:46.769 INFO:teuthology.orchestra.run.smithi031.stdout: 2024-09-13T22:12:46.769 INFO:teuthology.orchestra.run.smithi031.stdout:{"epoch":45,"fsid":"89616338-721b-11ef-bceb-c7b262605968","created":"2024-09-13T22:04:15.023665+0000","modified":"2024-09-13T22:12:37.404945+0000","last_up_change":"2024-09-13T22:12:33.760542+0000","last_in_change":"2024-09-13T22:12:01.566714+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":6,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-13T22:09:52.417798+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"is_stretch_pool":false,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"21","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":6,"score_stable":6,"optimal_score":0.5,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"49a6c717-a095-4433-904b-3adf4b60aa21","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":27,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.31:6802","nonce":3485172371},{"type":"v1","addr":"172.21.15.31:6803","nonce":3485172371}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.31:6804","nonce":3485172371},{"type":"v1","addr":"172.21.15.31:6805","nonce":3485172371}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.31:6808","nonce":3485172371},{"type":"v1","addr":"172.21.15.31:6809","nonce":3485172371}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.31:6806","nonce":3485172371},{"type":"v1","addr":"172.21.15.31:6807","nonce":3485172371}]},"public_addr":"172.21.15.31:6803/3485172371","cluster_addr":"172.21.15.31:6805/3485172371","heartbeat_back_addr":"172.21.15.31:6809/3485172371","heartbeat_front_addr":"172.21.15.31:6807/3485172371","state":["exists","up"]},{"osd":1,"uuid":"24a85b1e-3285-497c-875f-c10b45ddae30","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.31:6810","nonce":2077429465},{"type":"v1","addr":"172.21.15.31:6811","nonce":2077429465}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.31:6812","nonce":2077429465},{"type":"v1","addr":"172.21.15.31:6813","nonce":2077429465}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.31:6816","nonce":2077429465},{"type":"v1","addr":"172.21.15.31:6817","nonce":2077429465}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.31:6814","nonce":2077429465},{"type":"v1","addr":"172.21.15.31:6815","nonce":2077429465}]},"public_addr":"172.21.15.31:6811/2077429465","cluster_addr":"172.21.15.31:6813/2077429465","heartbeat_back_addr":"172.21.15.31:6817/2077429465","heartbeat_front_addr":"172.21.15.31:6815/2077429465","state":["exists","up"]},{"osd":2,"uuid":"84e3f22b-25fb-4b63-a817-b363830eae5f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":19,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6800","nonce":2180576982},{"type":"v1","addr":"172.21.15.96:6801","nonce":2180576982}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6802","nonce":2180576982},{"type":"v1","addr":"172.21.15.96:6803","nonce":2180576982}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6806","nonce":2180576982},{"type":"v1","addr":"172.21.15.96:6807","nonce":2180576982}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6804","nonce":2180576982},{"type":"v1","addr":"172.21.15.96:6805","nonce":2180576982}]},"public_addr":"172.21.15.96:6801/2180576982","cluster_addr":"172.21.15.96:6803/2180576982","heartbeat_back_addr":"172.21.15.96:6807/2180576982","heartbeat_front_addr":"172.21.15.96:6805/2180576982","state":["exists","up"]},{"osd":3,"uuid":"5de93f24-edd7-411c-928f-a62010e3334e","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":44,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6808","nonce":1682499796},{"type":"v1","addr":"172.21.15.96:6809","nonce":1682499796}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6810","nonce":1682499796},{"type":"v1","addr":"172.21.15.96:6811","nonce":1682499796}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6814","nonce":1682499796},{"type":"v1","addr":"172.21.15.96:6815","nonce":1682499796}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6812","nonce":1682499796},{"type":"v1","addr":"172.21.15.96:6813","nonce":1682499796}]},"public_addr":"172.21.15.96:6809/1682499796","cluster_addr":"172.21.15.96:6811/1682499796","heartbeat_back_addr":"172.21.15.96:6815/1682499796","heartbeat_front_addr":"172.21.15.96:6813/1682499796","state":["exists","up"]},{"osd":4,"uuid":"e0ced60b-a3d3-4e90-bee5-7201aed78c8a","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":33,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6800","nonce":2288005517},{"type":"v1","addr":"172.21.15.138:6801","nonce":2288005517}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6802","nonce":2288005517},{"type":"v1","addr":"172.21.15.138:6803","nonce":2288005517}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6806","nonce":2288005517},{"type":"v1","addr":"172.21.15.138:6807","nonce":2288005517}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6804","nonce":2288005517},{"type":"v1","addr":"172.21.15.138:6805","nonce":2288005517}]},"public_addr":"172.21.15.138:6801/2288005517","cluster_addr":"172.21.15.138:6803/2288005517","heartbeat_back_addr":"172.21.15.138:6807/2288005517","heartbeat_front_addr":"172.21.15.138:6805/2288005517","state":["exists","up"]},{"osd":5,"uuid":"1ec288e5-8267-4172-bc44-ac66eb029268","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":41,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6808","nonce":2369719595},{"type":"v1","addr":"172.21.15.138:6809","nonce":2369719595}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6810","nonce":2369719595},{"type":"v1","addr":"172.21.15.138:6811","nonce":2369719595}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6814","nonce":2369719595},{"type":"v1","addr":"172.21.15.138:6815","nonce":2369719595}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6812","nonce":2369719595},{"type":"v1","addr":"172.21.15.138:6813","nonce":2369719595}]},"public_addr":"172.21.15.138:6809/2369719595","cluster_addr":"172.21.15.138:6811/2369719595","heartbeat_back_addr":"172.21.15.138:6815/2369719595","heartbeat_front_addr":"172.21.15.138:6813/2369719595","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-09-13T22:08:01.098335+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-09-13T22:08:55.995534+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-09-13T22:09:50.020534+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-09-13T22:10:44.698823+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-09-13T22:11:34.392355+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-09-13T22:12:32.533489+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.31:6801/3323828487":"2024-09-14T22:05:15.764715+0000","172.21.15.31:6800/3323828487":"2024-09-14T22:05:15.764715+0000","172.21.15.31:0/3130481153":"2024-09-14T22:05:15.764715+0000","172.21.15.31:6801/2175406034":"2024-09-14T22:04:42.768337+0000","172.21.15.31:0/1230411784":"2024-09-14T22:05:15.764715+0000","172.21.15.31:6800/2175406034":"2024-09-14T22:04:42.768337+0000","172.21.15.31:0/2481453468":"2024-09-14T22:04:42.768337+0000","172.21.15.31:0/3781404525":"2024-09-14T22:04:42.768337+0000","172.21.15.31:0/1019911558":"2024-09-14T22:05:15.764715+0000","172.21.15.31:0/4183869786":"2024-09-14T22:04:42.768337+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-09-13T22:12:47.633 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:47 smithi031 bash[22709]: cluster 2024-09-13T22:12:45.882518+0000 mgr.a (mgr.14150) 304 : cluster [DBG] pgmap v260: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 61 KiB/s, 0 objects/s recovering 2024-09-13T22:12:47.633 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:47 smithi031 bash[22709]: audit 2024-09-13T22:12:46.770908+0000 mon.a (mon.0) 842 : audit [DBG] from='client.? 172.21.15.31:0/50413083' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-13T22:12:47.635 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2024-09-13T22:09:52.417798+0000', 'flags': 1, 'flags_names': 'hashpspool', 'type': 1, 'size': 3, 'min_size': 2, 'crush_rule': 0, 'peering_crush_bucket_count': 0, 'peering_crush_bucket_target': 0, 'peering_crush_bucket_barrier': 0, 'peering_crush_bucket_mandatory_member': 2147483647, 'is_stretch_pool': False, 'object_hash': 2, 'pg_autoscale_mode': 'off', 'pg_num': 1, 'pg_placement_num': 1, 'pg_placement_num_target': 1, 'pg_num_target': 1, 'pg_num_pending': 1, 'last_pg_merge_meta': {'source_pgid': '0.0', 'ready_epoch': 0, 'last_epoch_started': 0, 'last_epoch_clean': 0, 'source_version': "0'0", 'target_version': "0'0"}, 'last_change': '21', 'last_force_op_resend': '0', 'last_force_op_resend_prenautilus': '0', 'last_force_op_resend_preluminous': '0', 'auid': 0, 'snap_mode': 'selfmanaged', 'snap_seq': 0, 'snap_epoch': 0, 'pool_snaps': [], 'removed_snaps': '[]', 'quota_max_bytes': 0, 'quota_max_objects': 0, 'tiers': [], 'tier_of': -1, 'read_tier': -1, 'write_tier': -1, 'cache_mode': 'none', 'target_max_bytes': 0, 'target_max_objects': 0, 'cache_target_dirty_ratio_micro': 400000, 'cache_target_dirty_high_ratio_micro': 600000, 'cache_target_full_ratio_micro': 800000, 'cache_min_flush_age': 0, 'cache_min_evict_age': 0, 'erasure_code_profile': '', 'hit_set_params': {'type': 'none'}, 'hit_set_period': 0, 'hit_set_count': 0, 'use_gmt_hitset': True, 'min_read_recency_for_promote': 0, 'min_write_recency_for_promote': 0, 'hit_set_grade_decay_rate': 0, 'hit_set_search_last_n': 0, 'grade_table': [], 'stripe_width': 0, 'expected_num_objects': 0, 'fast_read': False, 'options': {'pg_num_max': 32, 'pg_num_min': 1}, 'application_metadata': {'mgr': {}}, 'read_balance': {'score_type': 'Fair distribution', 'score_acting': 6, 'score_stable': 6, 'optimal_score': 0.5, 'raw_score_acting': 3, 'raw_score_stable': 3, 'primary_affinity_weighted': 1, 'average_primary_affinity': 1, 'average_primary_affinity_weighted': 1}}] 2024-09-13T22:12:47.635 DEBUG:teuthology.orchestra.run.smithi031:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 shell --fsid 89616338-721b-11ef-bceb-c7b262605968 -- ceph osd pool get .mgr pg_num 2024-09-13T22:12:47.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:47 smithi096 bash[23620]: cluster 2024-09-13T22:12:45.882518+0000 mgr.a (mgr.14150) 304 : cluster [DBG] pgmap v260: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 61 KiB/s, 0 objects/s recovering 2024-09-13T22:12:47.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:47 smithi096 bash[23620]: audit 2024-09-13T22:12:46.770908+0000 mon.a (mon.0) 842 : audit [DBG] from='client.? 172.21.15.31:0/50413083' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-13T22:12:47.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:47 smithi138 bash[23295]: cluster 2024-09-13T22:12:45.882518+0000 mgr.a (mgr.14150) 304 : cluster [DBG] pgmap v260: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 61 KiB/s, 0 objects/s recovering 2024-09-13T22:12:47.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:47 smithi138 bash[23295]: audit 2024-09-13T22:12:46.770908+0000 mon.a (mon.0) 842 : audit [DBG] from='client.? 172.21.15.31:0/50413083' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-13T22:12:49.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:49 smithi031 bash[22709]: cluster 2024-09-13T22:12:47.882862+0000 mgr.a (mgr.14150) 305 : cluster [DBG] pgmap v261: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:12:49.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:49 smithi096 bash[23620]: cluster 2024-09-13T22:12:47.882862+0000 mgr.a (mgr.14150) 305 : cluster [DBG] pgmap v261: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:12:49.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:49 smithi138 bash[23295]: cluster 2024-09-13T22:12:47.882862+0000 mgr.a (mgr.14150) 305 : cluster [DBG] pgmap v261: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:12:51.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:51 smithi096 bash[23620]: cluster 2024-09-13T22:12:49.883363+0000 mgr.a (mgr.14150) 306 : cluster [DBG] pgmap v262: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:12:51.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:51 smithi031 bash[22709]: cluster 2024-09-13T22:12:49.883363+0000 mgr.a (mgr.14150) 306 : cluster [DBG] pgmap v262: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:12:51.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:51 smithi138 bash[23295]: cluster 2024-09-13T22:12:49.883363+0000 mgr.a (mgr.14150) 306 : cluster [DBG] pgmap v262: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:12:52.872 INFO:teuthology.orchestra.run.smithi031.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T22:12:53.685 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:53 smithi096 bash[23620]: cluster 2024-09-13T22:12:51.884027+0000 mgr.a (mgr.14150) 307 : cluster [DBG] pgmap v263: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:12:53.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:53 smithi031 bash[22709]: cluster 2024-09-13T22:12:51.884027+0000 mgr.a (mgr.14150) 307 : cluster [DBG] pgmap v263: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:12:53.765 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:53 smithi138 bash[23295]: cluster 2024-09-13T22:12:51.884027+0000 mgr.a (mgr.14150) 307 : cluster [DBG] pgmap v263: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:12:54.165 INFO:teuthology.orchestra.run.smithi031.stdout:pg_num: 1 2024-09-13T22:12:54.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:54 smithi031 bash[22709]: audit 2024-09-13T22:12:54.167833+0000 mon.a (mon.0) 843 : audit [DBG] from='client.? 172.21.15.31:0/2126777569' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-09-13T22:12:54.793 INFO:tasks.cephadm:Setting up client nodes... 2024-09-13T22:12:54.794 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-09-13T22:12:54.794 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-09-13T22:12:54.794 DEBUG:teuthology.orchestra.run.smithi031:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 shell --fsid 89616338-721b-11ef-bceb-c7b262605968 -- ceph mgr dump --format=json 2024-09-13T22:12:54.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:54 smithi138 bash[23295]: audit 2024-09-13T22:12:54.167833+0000 mon.a (mon.0) 843 : audit [DBG] from='client.? 172.21.15.31:0/2126777569' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-09-13T22:12:54.935 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:54 smithi096 bash[23620]: audit 2024-09-13T22:12:54.167833+0000 mon.a (mon.0) 843 : audit [DBG] from='client.? 172.21.15.31:0/2126777569' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-09-13T22:12:55.574 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:55 smithi138 bash[23295]: cluster 2024-09-13T22:12:53.884468+0000 mgr.a (mgr.14150) 308 : cluster [DBG] pgmap v264: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:12:55.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:55 smithi031 bash[22709]: cluster 2024-09-13T22:12:53.884468+0000 mgr.a (mgr.14150) 308 : cluster [DBG] pgmap v264: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:12:55.935 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:55 smithi096 bash[23620]: cluster 2024-09-13T22:12:53.884468+0000 mgr.a (mgr.14150) 308 : cluster [DBG] pgmap v264: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:12:57.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:57 smithi031 bash[22709]: cluster 2024-09-13T22:12:55.885006+0000 mgr.a (mgr.14150) 309 : cluster [DBG] pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:12:57.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:57 smithi138 bash[23295]: cluster 2024-09-13T22:12:55.885006+0000 mgr.a (mgr.14150) 309 : cluster [DBG] pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:12:57.935 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:57 smithi096 bash[23620]: cluster 2024-09-13T22:12:55.885006+0000 mgr.a (mgr.14150) 309 : cluster [DBG] pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:12:59.547 INFO:teuthology.orchestra.run.smithi031.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T22:12:59.685 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:12:59 smithi096 bash[23620]: cluster 2024-09-13T22:12:57.885586+0000 mgr.a (mgr.14150) 310 : cluster [DBG] pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:12:59.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:12:59 smithi031 bash[22709]: cluster 2024-09-13T22:12:57.885586+0000 mgr.a (mgr.14150) 310 : cluster [DBG] pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:12:59.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:12:59 smithi138 bash[23295]: cluster 2024-09-13T22:12:57.885586+0000 mgr.a (mgr.14150) 310 : cluster [DBG] pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:00.984 INFO:teuthology.orchestra.run.smithi031.stdout: 2024-09-13T22:13:01.677 INFO:teuthology.orchestra.run.smithi031.stdout:{"epoch":15,"flags":0,"active_gid":14150,"active_name":"a","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.31:6800","nonce":1043977516},{"type":"v1","addr":"172.21.15.31:6801","nonce":1043977516}]},"active_addr":"172.21.15.31:6801/1043977516","active_change":"2024-09-13T22:05:15.764919+0000","active_mgr_features":4540701547738038271,"available":true,"standbys":[{"gid":24107,"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:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.5.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.2.5","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:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:devbuilds-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB container image","long_desc":"","tags":[],"see_also":[]},"container_image_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":[]},"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":[]},"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":[]},"secondary_zone_period_retry_limit":{"name":"secondary_zone_period_retry_limit","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"RGW module period update retry limit for secondary site","long_desc":"","tags":[],"see_also":[]}}},{"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:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.5.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.2.5","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:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:devbuilds-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB container image","long_desc":"","tags":[],"see_also":[]},"container_image_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":[]},"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":[]},"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":[]},"secondary_zone_period_retry_limit":{"name":"secondary_zone_period_retry_limit","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"RGW module period update retry limit for secondary site","long_desc":"","tags":[],"see_also":[]}}},{"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.31: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.31:0","nonce":957227636}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"172.21.15.31:0","nonce":85104506}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.31:0","nonce":2654420036}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.31:0","nonce":702007096}]}]} 2024-09-13T22:13:01.682 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-09-13T22:13:01.682 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-09-13T22:13:01.682 DEBUG:teuthology.orchestra.run.smithi031:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 shell --fsid 89616338-721b-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-13T22:13:01.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:01 smithi031 bash[22709]: cluster 2024-09-13T22:12:59.886122+0000 mgr.a (mgr.14150) 311 : cluster [DBG] pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:01.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:01 smithi031 bash[22709]: audit 2024-09-13T22:13:00.812879+0000 mon.a (mon.0) 844 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:01.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:01 smithi031 bash[22709]: audit 2024-09-13T22:13:00.816906+0000 mon.a (mon.0) 845 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:01.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:01 smithi031 bash[22709]: audit 2024-09-13T22:13:00.822485+0000 mon.a (mon.0) 846 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:01.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:01 smithi031 bash[22709]: audit 2024-09-13T22:13:00.974806+0000 mon.a (mon.0) 847 : audit [DBG] from='client.? 172.21.15.31:0/2301934884' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-09-13T22:13:01.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:01 smithi031 bash[22709]: audit 2024-09-13T22:13:01.001428+0000 mon.a (mon.0) 848 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:01.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:01 smithi031 bash[22709]: audit 2024-09-13T22:13:01.007289+0000 mon.a (mon.0) 849 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:01.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:01 smithi031 bash[22709]: audit 2024-09-13T22:13:01.011970+0000 mon.a (mon.0) 850 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:02.074 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:01 smithi138 bash[23295]: cluster 2024-09-13T22:12:59.886122+0000 mgr.a (mgr.14150) 311 : cluster [DBG] pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:02.074 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:01 smithi138 bash[23295]: audit 2024-09-13T22:13:00.812879+0000 mon.a (mon.0) 844 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:02.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:01 smithi138 bash[23295]: audit 2024-09-13T22:13:00.816906+0000 mon.a (mon.0) 845 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:02.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:01 smithi138 bash[23295]: audit 2024-09-13T22:13:00.822485+0000 mon.a (mon.0) 846 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:02.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:01 smithi138 bash[23295]: audit 2024-09-13T22:13:00.974806+0000 mon.a (mon.0) 847 : audit [DBG] from='client.? 172.21.15.31:0/2301934884' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-09-13T22:13:02.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:01 smithi138 bash[23295]: audit 2024-09-13T22:13:01.001428+0000 mon.a (mon.0) 848 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:02.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:01 smithi138 bash[23295]: audit 2024-09-13T22:13:01.007289+0000 mon.a (mon.0) 849 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:02.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:01 smithi138 bash[23295]: audit 2024-09-13T22:13:01.011970+0000 mon.a (mon.0) 850 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:02.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:01 smithi096 bash[23620]: cluster 2024-09-13T22:12:59.886122+0000 mgr.a (mgr.14150) 311 : cluster [DBG] pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:02.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:01 smithi096 bash[23620]: audit 2024-09-13T22:13:00.812879+0000 mon.a (mon.0) 844 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:02.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:01 smithi096 bash[23620]: audit 2024-09-13T22:13:00.816906+0000 mon.a (mon.0) 845 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:02.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:01 smithi096 bash[23620]: audit 2024-09-13T22:13:00.822485+0000 mon.a (mon.0) 846 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:02.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:01 smithi096 bash[23620]: audit 2024-09-13T22:13:00.974806+0000 mon.a (mon.0) 847 : audit [DBG] from='client.? 172.21.15.31:0/2301934884' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-09-13T22:13:02.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:01 smithi096 bash[23620]: audit 2024-09-13T22:13:01.001428+0000 mon.a (mon.0) 848 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:02.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:01 smithi096 bash[23620]: audit 2024-09-13T22:13:01.007289+0000 mon.a (mon.0) 849 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:02.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:01 smithi096 bash[23620]: audit 2024-09-13T22:13:01.011970+0000 mon.a (mon.0) 850 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:03.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:02 smithi096 bash[23620]: cluster 2024-09-13T22:13:01.886529+0000 mgr.a (mgr.14150) 312 : cluster [DBG] pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:03.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:02 smithi031 bash[22709]: cluster 2024-09-13T22:13:01.886529+0000 mgr.a (mgr.14150) 312 : cluster [DBG] pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:03.324 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:02 smithi138 bash[23295]: cluster 2024-09-13T22:13:01.886529+0000 mgr.a (mgr.14150) 312 : cluster [DBG] pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:04.435 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:04 smithi096 bash[23620]: audit 2024-09-13T22:13:03.168092+0000 mon.a (mon.0) 851 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:04.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:04 smithi096 bash[23620]: audit 2024-09-13T22:13:03.176627+0000 mon.a (mon.0) 852 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:04.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:04 smithi096 bash[23620]: audit 2024-09-13T22:13:03.186220+0000 mon.a (mon.0) 853 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:04.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:04 smithi031 bash[22709]: audit 2024-09-13T22:13:03.168092+0000 mon.a (mon.0) 851 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:04.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:04 smithi031 bash[22709]: audit 2024-09-13T22:13:03.176627+0000 mon.a (mon.0) 852 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:04.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:04 smithi031 bash[22709]: audit 2024-09-13T22:13:03.186220+0000 mon.a (mon.0) 853 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:04.574 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:04 smithi138 bash[23295]: audit 2024-09-13T22:13:03.168092+0000 mon.a (mon.0) 851 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:04.574 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:04 smithi138 bash[23295]: audit 2024-09-13T22:13:03.176627+0000 mon.a (mon.0) 852 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:04.574 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:04 smithi138 bash[23295]: audit 2024-09-13T22:13:03.186220+0000 mon.a (mon.0) 853 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:05.435 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:05 smithi096 bash[23620]: cluster 2024-09-13T22:13:03.887127+0000 mgr.a (mgr.14150) 313 : cluster [DBG] pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:05.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:05 smithi031 bash[22709]: cluster 2024-09-13T22:13:03.887127+0000 mgr.a (mgr.14150) 313 : cluster [DBG] pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:05.574 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:05 smithi138 bash[23295]: cluster 2024-09-13T22:13:03.887127+0000 mgr.a (mgr.14150) 313 : cluster [DBG] pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:06.435 INFO:teuthology.orchestra.run.smithi031.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T22:13:07.483 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:07 smithi031 bash[22709]: cluster 2024-09-13T22:13:05.887701+0000 mgr.a (mgr.14150) 314 : cluster [DBG] pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:07.574 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:07 smithi138 bash[23295]: cluster 2024-09-13T22:13:05.887701+0000 mgr.a (mgr.14150) 314 : cluster [DBG] pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:07.685 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:07 smithi096 bash[23620]: cluster 2024-09-13T22:13:05.887701+0000 mgr.a (mgr.14150) 314 : cluster [DBG] pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:08.020 INFO:teuthology.orchestra.run.smithi031.stdout: 2024-09-13T22:13:08.020 INFO:teuthology.orchestra.run.smithi031.stdout:{"epoch":45,"fsid":"89616338-721b-11ef-bceb-c7b262605968","created":"2024-09-13T22:04:15.023665+0000","modified":"2024-09-13T22:12:37.404945+0000","last_up_change":"2024-09-13T22:12:33.760542+0000","last_in_change":"2024-09-13T22:12:01.566714+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":6,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-13T22:09:52.417798+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"is_stretch_pool":false,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"21","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":6,"score_stable":6,"optimal_score":0.5,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"49a6c717-a095-4433-904b-3adf4b60aa21","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":27,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.31:6802","nonce":3485172371},{"type":"v1","addr":"172.21.15.31:6803","nonce":3485172371}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.31:6804","nonce":3485172371},{"type":"v1","addr":"172.21.15.31:6805","nonce":3485172371}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.31:6808","nonce":3485172371},{"type":"v1","addr":"172.21.15.31:6809","nonce":3485172371}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.31:6806","nonce":3485172371},{"type":"v1","addr":"172.21.15.31:6807","nonce":3485172371}]},"public_addr":"172.21.15.31:6803/3485172371","cluster_addr":"172.21.15.31:6805/3485172371","heartbeat_back_addr":"172.21.15.31:6809/3485172371","heartbeat_front_addr":"172.21.15.31:6807/3485172371","state":["exists","up"]},{"osd":1,"uuid":"24a85b1e-3285-497c-875f-c10b45ddae30","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.31:6810","nonce":2077429465},{"type":"v1","addr":"172.21.15.31:6811","nonce":2077429465}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.31:6812","nonce":2077429465},{"type":"v1","addr":"172.21.15.31:6813","nonce":2077429465}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.31:6816","nonce":2077429465},{"type":"v1","addr":"172.21.15.31:6817","nonce":2077429465}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.31:6814","nonce":2077429465},{"type":"v1","addr":"172.21.15.31:6815","nonce":2077429465}]},"public_addr":"172.21.15.31:6811/2077429465","cluster_addr":"172.21.15.31:6813/2077429465","heartbeat_back_addr":"172.21.15.31:6817/2077429465","heartbeat_front_addr":"172.21.15.31:6815/2077429465","state":["exists","up"]},{"osd":2,"uuid":"84e3f22b-25fb-4b63-a817-b363830eae5f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":19,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6800","nonce":2180576982},{"type":"v1","addr":"172.21.15.96:6801","nonce":2180576982}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6802","nonce":2180576982},{"type":"v1","addr":"172.21.15.96:6803","nonce":2180576982}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6806","nonce":2180576982},{"type":"v1","addr":"172.21.15.96:6807","nonce":2180576982}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6804","nonce":2180576982},{"type":"v1","addr":"172.21.15.96:6805","nonce":2180576982}]},"public_addr":"172.21.15.96:6801/2180576982","cluster_addr":"172.21.15.96:6803/2180576982","heartbeat_back_addr":"172.21.15.96:6807/2180576982","heartbeat_front_addr":"172.21.15.96:6805/2180576982","state":["exists","up"]},{"osd":3,"uuid":"5de93f24-edd7-411c-928f-a62010e3334e","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":44,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6808","nonce":1682499796},{"type":"v1","addr":"172.21.15.96:6809","nonce":1682499796}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6810","nonce":1682499796},{"type":"v1","addr":"172.21.15.96:6811","nonce":1682499796}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6814","nonce":1682499796},{"type":"v1","addr":"172.21.15.96:6815","nonce":1682499796}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6812","nonce":1682499796},{"type":"v1","addr":"172.21.15.96:6813","nonce":1682499796}]},"public_addr":"172.21.15.96:6809/1682499796","cluster_addr":"172.21.15.96:6811/1682499796","heartbeat_back_addr":"172.21.15.96:6815/1682499796","heartbeat_front_addr":"172.21.15.96:6813/1682499796","state":["exists","up"]},{"osd":4,"uuid":"e0ced60b-a3d3-4e90-bee5-7201aed78c8a","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":33,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6800","nonce":2288005517},{"type":"v1","addr":"172.21.15.138:6801","nonce":2288005517}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6802","nonce":2288005517},{"type":"v1","addr":"172.21.15.138:6803","nonce":2288005517}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6806","nonce":2288005517},{"type":"v1","addr":"172.21.15.138:6807","nonce":2288005517}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6804","nonce":2288005517},{"type":"v1","addr":"172.21.15.138:6805","nonce":2288005517}]},"public_addr":"172.21.15.138:6801/2288005517","cluster_addr":"172.21.15.138:6803/2288005517","heartbeat_back_addr":"172.21.15.138:6807/2288005517","heartbeat_front_addr":"172.21.15.138:6805/2288005517","state":["exists","up"]},{"osd":5,"uuid":"1ec288e5-8267-4172-bc44-ac66eb029268","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":41,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6808","nonce":2369719595},{"type":"v1","addr":"172.21.15.138:6809","nonce":2369719595}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6810","nonce":2369719595},{"type":"v1","addr":"172.21.15.138:6811","nonce":2369719595}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6814","nonce":2369719595},{"type":"v1","addr":"172.21.15.138:6815","nonce":2369719595}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6812","nonce":2369719595},{"type":"v1","addr":"172.21.15.138:6813","nonce":2369719595}]},"public_addr":"172.21.15.138:6809/2369719595","cluster_addr":"172.21.15.138:6811/2369719595","heartbeat_back_addr":"172.21.15.138:6815/2369719595","heartbeat_front_addr":"172.21.15.138:6813/2369719595","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-09-13T22:08:01.098335+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-09-13T22:08:55.995534+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-09-13T22:09:50.020534+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-09-13T22:10:44.698823+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-09-13T22:11:34.392355+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-09-13T22:12:32.533489+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.31:6801/3323828487":"2024-09-14T22:05:15.764715+0000","172.21.15.31:6800/3323828487":"2024-09-14T22:05:15.764715+0000","172.21.15.31:0/3130481153":"2024-09-14T22:05:15.764715+0000","172.21.15.31:6801/2175406034":"2024-09-14T22:04:42.768337+0000","172.21.15.31:0/1230411784":"2024-09-14T22:05:15.764715+0000","172.21.15.31:6800/2175406034":"2024-09-14T22:04:42.768337+0000","172.21.15.31:0/2481453468":"2024-09-14T22:04:42.768337+0000","172.21.15.31:0/3781404525":"2024-09-14T22:04:42.768337+0000","172.21.15.31:0/1019911558":"2024-09-14T22:05:15.764715+0000","172.21.15.31:0/4183869786":"2024-09-14T22:04:42.768337+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-09-13T22:13:08.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:08 smithi031 bash[22709]: audit 2024-09-13T22:13:08.021729+0000 mon.a (mon.0) 854 : audit [DBG] from='client.? 172.21.15.31:0/3593525038' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-13T22:13:08.575 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:08 smithi138 bash[23295]: audit 2024-09-13T22:13:08.021729+0000 mon.a (mon.0) 854 : audit [DBG] from='client.? 172.21.15.31:0/3593525038' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-13T22:13:08.685 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:08 smithi096 bash[23620]: audit 2024-09-13T22:13:08.021729+0000 mon.a (mon.0) 854 : audit [DBG] from='client.? 172.21.15.31:0/3593525038' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-13T22:13:08.977 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-09-13T22:13:08.977 DEBUG:teuthology.orchestra.run.smithi031:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 shell --fsid 89616338-721b-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-13T22:13:09.317 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:09 smithi031 bash[22709]: cluster 2024-09-13T22:13:07.888054+0000 mgr.a (mgr.14150) 315 : cluster [DBG] pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:09.574 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:09 smithi138 bash[23295]: cluster 2024-09-13T22:13:07.888054+0000 mgr.a (mgr.14150) 315 : cluster [DBG] pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:09.685 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:09 smithi096 bash[23620]: cluster 2024-09-13T22:13:07.888054+0000 mgr.a (mgr.14150) 315 : cluster [DBG] pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:11.460 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:11 smithi031 bash[22709]: cluster 2024-09-13T22:13:09.888445+0000 mgr.a (mgr.14150) 316 : cluster [DBG] pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:11.574 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:11 smithi138 bash[23295]: cluster 2024-09-13T22:13:09.888445+0000 mgr.a (mgr.14150) 316 : cluster [DBG] pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:11.685 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:11 smithi096 bash[23620]: cluster 2024-09-13T22:13:09.888445+0000 mgr.a (mgr.14150) 316 : cluster [DBG] pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:13.467 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:13 smithi138 bash[23295]: cluster 2024-09-13T22:13:11.888993+0000 mgr.a (mgr.14150) 317 : cluster [DBG] pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:13.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:13 smithi031 bash[22709]: cluster 2024-09-13T22:13:11.888993+0000 mgr.a (mgr.14150) 317 : cluster [DBG] pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:13.685 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:13 smithi096 bash[23620]: cluster 2024-09-13T22:13:11.888993+0000 mgr.a (mgr.14150) 317 : cluster [DBG] pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:15.041 INFO:teuthology.orchestra.run.smithi031.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T22:13:15.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:15 smithi031 bash[22709]: cluster 2024-09-13T22:13:13.889578+0000 mgr.a (mgr.14150) 318 : cluster [DBG] pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:15.574 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:15 smithi138 bash[23295]: cluster 2024-09-13T22:13:13.889578+0000 mgr.a (mgr.14150) 318 : cluster [DBG] pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:15.685 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:15 smithi096 bash[23620]: cluster 2024-09-13T22:13:13.889578+0000 mgr.a (mgr.14150) 318 : cluster [DBG] pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:16.479 INFO:teuthology.orchestra.run.smithi031.stdout: 2024-09-13T22:13:16.479 INFO:teuthology.orchestra.run.smithi031.stdout:{"epoch":45,"fsid":"89616338-721b-11ef-bceb-c7b262605968","created":"2024-09-13T22:04:15.023665+0000","modified":"2024-09-13T22:12:37.404945+0000","last_up_change":"2024-09-13T22:12:33.760542+0000","last_in_change":"2024-09-13T22:12:01.566714+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":6,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-13T22:09:52.417798+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"is_stretch_pool":false,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"21","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":6,"score_stable":6,"optimal_score":0.5,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"49a6c717-a095-4433-904b-3adf4b60aa21","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":27,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.31:6802","nonce":3485172371},{"type":"v1","addr":"172.21.15.31:6803","nonce":3485172371}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.31:6804","nonce":3485172371},{"type":"v1","addr":"172.21.15.31:6805","nonce":3485172371}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.31:6808","nonce":3485172371},{"type":"v1","addr":"172.21.15.31:6809","nonce":3485172371}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.31:6806","nonce":3485172371},{"type":"v1","addr":"172.21.15.31:6807","nonce":3485172371}]},"public_addr":"172.21.15.31:6803/3485172371","cluster_addr":"172.21.15.31:6805/3485172371","heartbeat_back_addr":"172.21.15.31:6809/3485172371","heartbeat_front_addr":"172.21.15.31:6807/3485172371","state":["exists","up"]},{"osd":1,"uuid":"24a85b1e-3285-497c-875f-c10b45ddae30","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.31:6810","nonce":2077429465},{"type":"v1","addr":"172.21.15.31:6811","nonce":2077429465}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.31:6812","nonce":2077429465},{"type":"v1","addr":"172.21.15.31:6813","nonce":2077429465}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.31:6816","nonce":2077429465},{"type":"v1","addr":"172.21.15.31:6817","nonce":2077429465}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.31:6814","nonce":2077429465},{"type":"v1","addr":"172.21.15.31:6815","nonce":2077429465}]},"public_addr":"172.21.15.31:6811/2077429465","cluster_addr":"172.21.15.31:6813/2077429465","heartbeat_back_addr":"172.21.15.31:6817/2077429465","heartbeat_front_addr":"172.21.15.31:6815/2077429465","state":["exists","up"]},{"osd":2,"uuid":"84e3f22b-25fb-4b63-a817-b363830eae5f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":19,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6800","nonce":2180576982},{"type":"v1","addr":"172.21.15.96:6801","nonce":2180576982}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6802","nonce":2180576982},{"type":"v1","addr":"172.21.15.96:6803","nonce":2180576982}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6806","nonce":2180576982},{"type":"v1","addr":"172.21.15.96:6807","nonce":2180576982}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6804","nonce":2180576982},{"type":"v1","addr":"172.21.15.96:6805","nonce":2180576982}]},"public_addr":"172.21.15.96:6801/2180576982","cluster_addr":"172.21.15.96:6803/2180576982","heartbeat_back_addr":"172.21.15.96:6807/2180576982","heartbeat_front_addr":"172.21.15.96:6805/2180576982","state":["exists","up"]},{"osd":3,"uuid":"5de93f24-edd7-411c-928f-a62010e3334e","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":44,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6808","nonce":1682499796},{"type":"v1","addr":"172.21.15.96:6809","nonce":1682499796}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6810","nonce":1682499796},{"type":"v1","addr":"172.21.15.96:6811","nonce":1682499796}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6814","nonce":1682499796},{"type":"v1","addr":"172.21.15.96:6815","nonce":1682499796}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6812","nonce":1682499796},{"type":"v1","addr":"172.21.15.96:6813","nonce":1682499796}]},"public_addr":"172.21.15.96:6809/1682499796","cluster_addr":"172.21.15.96:6811/1682499796","heartbeat_back_addr":"172.21.15.96:6815/1682499796","heartbeat_front_addr":"172.21.15.96:6813/1682499796","state":["exists","up"]},{"osd":4,"uuid":"e0ced60b-a3d3-4e90-bee5-7201aed78c8a","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":33,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6800","nonce":2288005517},{"type":"v1","addr":"172.21.15.138:6801","nonce":2288005517}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6802","nonce":2288005517},{"type":"v1","addr":"172.21.15.138:6803","nonce":2288005517}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6806","nonce":2288005517},{"type":"v1","addr":"172.21.15.138:6807","nonce":2288005517}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6804","nonce":2288005517},{"type":"v1","addr":"172.21.15.138:6805","nonce":2288005517}]},"public_addr":"172.21.15.138:6801/2288005517","cluster_addr":"172.21.15.138:6803/2288005517","heartbeat_back_addr":"172.21.15.138:6807/2288005517","heartbeat_front_addr":"172.21.15.138:6805/2288005517","state":["exists","up"]},{"osd":5,"uuid":"1ec288e5-8267-4172-bc44-ac66eb029268","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":41,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6808","nonce":2369719595},{"type":"v1","addr":"172.21.15.138:6809","nonce":2369719595}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6810","nonce":2369719595},{"type":"v1","addr":"172.21.15.138:6811","nonce":2369719595}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6814","nonce":2369719595},{"type":"v1","addr":"172.21.15.138:6815","nonce":2369719595}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.138:6812","nonce":2369719595},{"type":"v1","addr":"172.21.15.138:6813","nonce":2369719595}]},"public_addr":"172.21.15.138:6809/2369719595","cluster_addr":"172.21.15.138:6811/2369719595","heartbeat_back_addr":"172.21.15.138:6815/2369719595","heartbeat_front_addr":"172.21.15.138:6813/2369719595","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-09-13T22:08:01.098335+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-09-13T22:08:55.995534+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-09-13T22:09:50.020534+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-09-13T22:10:44.698823+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-09-13T22:11:34.392355+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-09-13T22:12:32.533489+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.31:6801/3323828487":"2024-09-14T22:05:15.764715+0000","172.21.15.31:6800/3323828487":"2024-09-14T22:05:15.764715+0000","172.21.15.31:0/3130481153":"2024-09-14T22:05:15.764715+0000","172.21.15.31:6801/2175406034":"2024-09-14T22:04:42.768337+0000","172.21.15.31:0/1230411784":"2024-09-14T22:05:15.764715+0000","172.21.15.31:6800/2175406034":"2024-09-14T22:04:42.768337+0000","172.21.15.31:0/2481453468":"2024-09-14T22:04:42.768337+0000","172.21.15.31:0/3781404525":"2024-09-14T22:04:42.768337+0000","172.21.15.31:0/1019911558":"2024-09-14T22:05:15.764715+0000","172.21.15.31:0/4183869786":"2024-09-14T22:04:42.768337+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-09-13T22:13:17.214 DEBUG:teuthology.orchestra.run.smithi031:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 shell --fsid 89616338-721b-11ef-bceb-c7b262605968 -- ceph tell osd.0 flush_pg_stats 2024-09-13T22:13:17.214 DEBUG:teuthology.orchestra.run.smithi031:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 shell --fsid 89616338-721b-11ef-bceb-c7b262605968 -- ceph tell osd.1 flush_pg_stats 2024-09-13T22:13:17.215 DEBUG:teuthology.orchestra.run.smithi031:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 shell --fsid 89616338-721b-11ef-bceb-c7b262605968 -- ceph tell osd.2 flush_pg_stats 2024-09-13T22:13:17.215 DEBUG:teuthology.orchestra.run.smithi031:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 shell --fsid 89616338-721b-11ef-bceb-c7b262605968 -- ceph tell osd.3 flush_pg_stats 2024-09-13T22:13:17.216 DEBUG:teuthology.orchestra.run.smithi031:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 shell --fsid 89616338-721b-11ef-bceb-c7b262605968 -- ceph tell osd.4 flush_pg_stats 2024-09-13T22:13:17.217 DEBUG:teuthology.orchestra.run.smithi031:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 shell --fsid 89616338-721b-11ef-bceb-c7b262605968 -- ceph tell osd.5 flush_pg_stats 2024-09-13T22:13:17.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:17 smithi031 bash[22709]: cluster 2024-09-13T22:13:15.890134+0000 mgr.a (mgr.14150) 319 : cluster [DBG] pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:17.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:17 smithi031 bash[22709]: audit 2024-09-13T22:13:16.481321+0000 mon.a (mon.0) 855 : audit [DBG] from='client.? 172.21.15.31:0/2566694052' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-13T22:13:17.574 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:17 smithi138 bash[23295]: cluster 2024-09-13T22:13:15.890134+0000 mgr.a (mgr.14150) 319 : cluster [DBG] pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:17.574 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:17 smithi138 bash[23295]: audit 2024-09-13T22:13:16.481321+0000 mon.a (mon.0) 855 : audit [DBG] from='client.? 172.21.15.31:0/2566694052' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-13T22:13:17.685 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:17 smithi096 bash[23620]: cluster 2024-09-13T22:13:15.890134+0000 mgr.a (mgr.14150) 319 : cluster [DBG] pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:17.685 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:17 smithi096 bash[23620]: audit 2024-09-13T22:13:16.481321+0000 mon.a (mon.0) 855 : audit [DBG] from='client.? 172.21.15.31:0/2566694052' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-13T22:13:19.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:19 smithi031 bash[22709]: cluster 2024-09-13T22:13:17.890733+0000 mgr.a (mgr.14150) 320 : cluster [DBG] pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:19.574 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:19 smithi138 bash[23295]: cluster 2024-09-13T22:13:17.890733+0000 mgr.a (mgr.14150) 320 : cluster [DBG] pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:19.685 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:19 smithi096 bash[23620]: cluster 2024-09-13T22:13:17.890733+0000 mgr.a (mgr.14150) 320 : cluster [DBG] pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:21.166 INFO:teuthology.orchestra.run.smithi031.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T22:13:21.166 INFO:teuthology.orchestra.run.smithi031.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T22:13:21.167 INFO:teuthology.orchestra.run.smithi031.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T22:13:21.167 INFO:teuthology.orchestra.run.smithi031.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T22:13:21.169 INFO:teuthology.orchestra.run.smithi031.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T22:13:21.170 INFO:teuthology.orchestra.run.smithi031.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T22:13:21.335 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:21 smithi031 bash[22709]: cluster 2024-09-13T22:13:19.891332+0000 mgr.a (mgr.14150) 321 : cluster [DBG] pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:21.335 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:21 smithi031 bash[22709]: audit 2024-09-13T22:13:21.016397+0000 mon.a (mon.0) 856 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:21.335 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:21 smithi031 bash[22709]: audit 2024-09-13T22:13:21.024798+0000 mon.a (mon.0) 857 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:21.335 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:21 smithi031 bash[22709]: audit 2024-09-13T22:13:21.034357+0000 mon.a (mon.0) 858 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:21.335 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:21 smithi031 bash[22709]: audit 2024-09-13T22:13:21.200661+0000 mon.a (mon.0) 859 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:21.335 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:21 smithi031 bash[22709]: audit 2024-09-13T22:13:21.206130+0000 mon.a (mon.0) 860 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:21.335 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:21 smithi031 bash[22709]: audit 2024-09-13T22:13:21.212531+0000 mon.a (mon.0) 861 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:21.574 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:21 smithi138 bash[23295]: cluster 2024-09-13T22:13:19.891332+0000 mgr.a (mgr.14150) 321 : cluster [DBG] pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:21.574 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:21 smithi138 bash[23295]: audit 2024-09-13T22:13:21.016397+0000 mon.a (mon.0) 856 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:21.574 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:21 smithi138 bash[23295]: audit 2024-09-13T22:13:21.024798+0000 mon.a (mon.0) 857 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:21.575 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:21 smithi138 bash[23295]: audit 2024-09-13T22:13:21.034357+0000 mon.a (mon.0) 858 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:21.575 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:21 smithi138 bash[23295]: audit 2024-09-13T22:13:21.200661+0000 mon.a (mon.0) 859 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:21.575 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:21 smithi138 bash[23295]: audit 2024-09-13T22:13:21.206130+0000 mon.a (mon.0) 860 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:21.575 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:21 smithi138 bash[23295]: audit 2024-09-13T22:13:21.212531+0000 mon.a (mon.0) 861 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:21.688 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:21 smithi096 bash[23620]: cluster 2024-09-13T22:13:19.891332+0000 mgr.a (mgr.14150) 321 : cluster [DBG] pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:21.688 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:21 smithi096 bash[23620]: audit 2024-09-13T22:13:21.016397+0000 mon.a (mon.0) 856 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:21.688 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:21 smithi096 bash[23620]: audit 2024-09-13T22:13:21.024798+0000 mon.a (mon.0) 857 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:21.688 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:21 smithi096 bash[23620]: audit 2024-09-13T22:13:21.034357+0000 mon.a (mon.0) 858 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:21.688 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:21 smithi096 bash[23620]: audit 2024-09-13T22:13:21.200661+0000 mon.a (mon.0) 859 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:21.688 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:21 smithi096 bash[23620]: audit 2024-09-13T22:13:21.206130+0000 mon.a (mon.0) 860 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:21.688 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:21 smithi096 bash[23620]: audit 2024-09-13T22:13:21.212531+0000 mon.a (mon.0) 861 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:23.574 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:23 smithi138 bash[23295]: cluster 2024-09-13T22:13:21.891907+0000 mgr.a (mgr.14150) 322 : cluster [DBG] pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:23.593 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:23 smithi031 bash[22709]: cluster 2024-09-13T22:13:21.891907+0000 mgr.a (mgr.14150) 322 : cluster [DBG] pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:23.685 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:23 smithi096 bash[23620]: cluster 2024-09-13T22:13:21.891907+0000 mgr.a (mgr.14150) 322 : cluster [DBG] pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:24.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:24 smithi031 bash[22709]: audit 2024-09-13T22:13:23.360188+0000 mon.a (mon.0) 862 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:24.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:24 smithi031 bash[22709]: audit 2024-09-13T22:13:23.369784+0000 mon.a (mon.0) 863 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:24.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:24 smithi031 bash[22709]: audit 2024-09-13T22:13:23.378338+0000 mon.a (mon.0) 864 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:24.541 INFO:teuthology.orchestra.run.smithi031.stdout:176093659148 2024-09-13T22:13:24.542 DEBUG:teuthology.orchestra.run.smithi031:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 shell --fsid 89616338-721b-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.5 2024-09-13T22:13:24.685 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:24 smithi096 bash[23620]: audit 2024-09-13T22:13:23.360188+0000 mon.a (mon.0) 862 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:24.685 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:24 smithi096 bash[23620]: audit 2024-09-13T22:13:23.369784+0000 mon.a (mon.0) 863 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:24.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:24 smithi096 bash[23620]: audit 2024-09-13T22:13:23.378338+0000 mon.a (mon.0) 864 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:24.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:24 smithi138 bash[23295]: audit 2024-09-13T22:13:23.360188+0000 mon.a (mon.0) 862 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:24.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:24 smithi138 bash[23295]: audit 2024-09-13T22:13:23.369784+0000 mon.a (mon.0) 863 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:24.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:24 smithi138 bash[23295]: audit 2024-09-13T22:13:23.378338+0000 mon.a (mon.0) 864 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:25.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:25 smithi031 bash[22709]: cluster 2024-09-13T22:13:23.892279+0000 mgr.a (mgr.14150) 323 : cluster [DBG] pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:25.685 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:25 smithi096 bash[23620]: cluster 2024-09-13T22:13:23.892279+0000 mgr.a (mgr.14150) 323 : cluster [DBG] pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:25.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:25 smithi138 bash[23295]: cluster 2024-09-13T22:13:23.892279+0000 mgr.a (mgr.14150) 323 : cluster [DBG] pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:26.351 INFO:teuthology.orchestra.run.smithi031.stdout:77309411374 2024-09-13T22:13:26.352 DEBUG:teuthology.orchestra.run.smithi031:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 shell --fsid 89616338-721b-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.2 2024-09-13T22:13:26.425 INFO:teuthology.orchestra.run.smithi031.stdout:34359738435 2024-09-13T22:13:26.426 DEBUG:teuthology.orchestra.run.smithi031:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 shell --fsid 89616338-721b-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.0 2024-09-13T22:13:27.389 INFO:teuthology.orchestra.run.smithi031.stdout:55834574904 2024-09-13T22:13:27.389 DEBUG:teuthology.orchestra.run.smithi031:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 shell --fsid 89616338-721b-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.1 2024-09-13T22:13:27.406 INFO:teuthology.orchestra.run.smithi031.stdout:107374182434 2024-09-13T22:13:27.406 DEBUG:teuthology.orchestra.run.smithi031:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 shell --fsid 89616338-721b-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.3 2024-09-13T22:13:27.453 INFO:teuthology.orchestra.run.smithi031.stdout:141733920793 2024-09-13T22:13:27.453 DEBUG:teuthology.orchestra.run.smithi031:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 shell --fsid 89616338-721b-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.4 2024-09-13T22:13:27.685 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:27 smithi096 bash[23620]: cluster 2024-09-13T22:13:25.892816+0000 mgr.a (mgr.14150) 324 : cluster [DBG] pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:27.718 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:27 smithi031 bash[22709]: cluster 2024-09-13T22:13:25.892816+0000 mgr.a (mgr.14150) 324 : cluster [DBG] pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:27.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:27 smithi138 bash[23295]: cluster 2024-09-13T22:13:25.892816+0000 mgr.a (mgr.14150) 324 : cluster [DBG] pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:29.685 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:29 smithi096 bash[23620]: cluster 2024-09-13T22:13:27.893394+0000 mgr.a (mgr.14150) 325 : cluster [DBG] pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:29.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:29 smithi031 bash[22709]: cluster 2024-09-13T22:13:27.893394+0000 mgr.a (mgr.14150) 325 : cluster [DBG] pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:29.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:29 smithi138 bash[23295]: cluster 2024-09-13T22:13:27.893394+0000 mgr.a (mgr.14150) 325 : cluster [DBG] pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:30.294 INFO:teuthology.orchestra.run.smithi031.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T22:13:30.295 INFO:teuthology.orchestra.run.smithi031.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T22:13:30.295 INFO:teuthology.orchestra.run.smithi031.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T22:13:31.305 INFO:teuthology.orchestra.run.smithi031.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T22:13:31.305 INFO:teuthology.orchestra.run.smithi031.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T22:13:31.306 INFO:teuthology.orchestra.run.smithi031.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T22:13:31.685 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:31 smithi096 bash[23620]: cluster 2024-09-13T22:13:29.893941+0000 mgr.a (mgr.14150) 326 : cluster [DBG] pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:31.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:31 smithi031 bash[22709]: cluster 2024-09-13T22:13:29.893941+0000 mgr.a (mgr.14150) 326 : cluster [DBG] pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:31.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:31 smithi138 bash[23295]: cluster 2024-09-13T22:13:29.893941+0000 mgr.a (mgr.14150) 326 : cluster [DBG] pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:33.453 INFO:teuthology.orchestra.run.smithi031.stdout:176093659150 2024-09-13T22:13:33.583 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:33 smithi031 bash[22709]: cluster 2024-09-13T22:13:31.894353+0000 mgr.a (mgr.14150) 327 : cluster [DBG] pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:33.639 INFO:teuthology.orchestra.run.smithi031.stdout:77309411375 2024-09-13T22:13:33.654 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:33 smithi138 bash[23295]: cluster 2024-09-13T22:13:31.894353+0000 mgr.a (mgr.14150) 327 : cluster [DBG] pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:33.685 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:33 smithi096 bash[23620]: cluster 2024-09-13T22:13:31.894353+0000 mgr.a (mgr.14150) 327 : cluster [DBG] pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:34.469 INFO:teuthology.orchestra.run.smithi031.stdout:34359738437 2024-09-13T22:13:34.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:34 smithi031 bash[22709]: audit 2024-09-13T22:13:33.456524+0000 mon.a (mon.0) 865 : audit [DBG] from='client.? 172.21.15.31:0/3806646369' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-09-13T22:13:34.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:34 smithi031 bash[22709]: audit 2024-09-13T22:13:33.642320+0000 mon.a (mon.0) 866 : audit [DBG] from='client.? 172.21.15.31:0/3934156674' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-09-13T22:13:34.685 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:34 smithi096 bash[23620]: audit 2024-09-13T22:13:33.456524+0000 mon.a (mon.0) 865 : audit [DBG] from='client.? 172.21.15.31:0/3806646369' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-09-13T22:13:34.685 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:34 smithi096 bash[23620]: audit 2024-09-13T22:13:33.642320+0000 mon.a (mon.0) 866 : audit [DBG] from='client.? 172.21.15.31:0/3934156674' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-09-13T22:13:34.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:34 smithi138 bash[23295]: audit 2024-09-13T22:13:33.456524+0000 mon.a (mon.0) 865 : audit [DBG] from='client.? 172.21.15.31:0/3806646369' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-09-13T22:13:34.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:34 smithi138 bash[23295]: audit 2024-09-13T22:13:33.642320+0000 mon.a (mon.0) 866 : audit [DBG] from='client.? 172.21.15.31:0/3934156674' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-09-13T22:13:35.116 INFO:teuthology.orchestra.run.smithi031.stdout:55834574906 2024-09-13T22:13:35.574 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:35 smithi138 bash[23295]: cluster 2024-09-13T22:13:33.894863+0000 mgr.a (mgr.14150) 328 : cluster [DBG] pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:35.574 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:35 smithi138 bash[23295]: audit 2024-09-13T22:13:34.472126+0000 mon.a (mon.0) 867 : audit [DBG] from='client.? 172.21.15.31:0/3754741966' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-09-13T22:13:35.574 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:35 smithi138 bash[23295]: audit 2024-09-13T22:13:35.119285+0000 mon.a (mon.0) 868 : audit [DBG] from='client.? 172.21.15.31:0/1718180821' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-09-13T22:13:35.685 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:35 smithi096 bash[23620]: cluster 2024-09-13T22:13:33.894863+0000 mgr.a (mgr.14150) 328 : cluster [DBG] pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:35.685 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:35 smithi096 bash[23620]: audit 2024-09-13T22:13:34.472126+0000 mon.a (mon.0) 867 : audit [DBG] from='client.? 172.21.15.31:0/3754741966' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-09-13T22:13:35.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:35 smithi096 bash[23620]: audit 2024-09-13T22:13:35.119285+0000 mon.a (mon.0) 868 : audit [DBG] from='client.? 172.21.15.31:0/1718180821' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-09-13T22:13:35.710 INFO:teuthology.orchestra.run.smithi031.stdout:107374182436 2024-09-13T22:13:35.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:35 smithi031 bash[22709]: cluster 2024-09-13T22:13:33.894863+0000 mgr.a (mgr.14150) 328 : cluster [DBG] pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:35.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:35 smithi031 bash[22709]: audit 2024-09-13T22:13:34.472126+0000 mon.a (mon.0) 867 : audit [DBG] from='client.? 172.21.15.31:0/3754741966' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-09-13T22:13:35.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:35 smithi031 bash[22709]: audit 2024-09-13T22:13:35.119285+0000 mon.a (mon.0) 868 : audit [DBG] from='client.? 172.21.15.31:0/1718180821' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-09-13T22:13:36.136 INFO:tasks.cephadm.ceph_manager.ceph:need seq 176093659148 got 176093659150 for osd.5 2024-09-13T22:13:36.136 DEBUG:teuthology.parallel:result is None 2024-09-13T22:13:36.184 INFO:teuthology.orchestra.run.smithi031.stdout:141733920795 2024-09-13T22:13:36.685 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:36 smithi096 bash[23620]: audit 2024-09-13T22:13:35.713108+0000 mon.a (mon.0) 869 : audit [DBG] from='client.? 172.21.15.31:0/436660643' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-09-13T22:13:36.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:36 smithi096 bash[23620]: audit 2024-09-13T22:13:36.187984+0000 mon.a (mon.0) 870 : audit [DBG] from='client.? 172.21.15.31:0/2402799600' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-09-13T22:13:36.705 INFO:tasks.cephadm.ceph_manager.ceph:need seq 77309411374 got 77309411375 for osd.2 2024-09-13T22:13:36.705 DEBUG:teuthology.parallel:result is None 2024-09-13T22:13:36.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:36 smithi031 bash[22709]: audit 2024-09-13T22:13:35.713108+0000 mon.a (mon.0) 869 : audit [DBG] from='client.? 172.21.15.31:0/436660643' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-09-13T22:13:36.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:36 smithi031 bash[22709]: audit 2024-09-13T22:13:36.187984+0000 mon.a (mon.0) 870 : audit [DBG] from='client.? 172.21.15.31:0/2402799600' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-09-13T22:13:36.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:36 smithi138 bash[23295]: audit 2024-09-13T22:13:35.713108+0000 mon.a (mon.0) 869 : audit [DBG] from='client.? 172.21.15.31:0/436660643' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-09-13T22:13:36.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:36 smithi138 bash[23295]: audit 2024-09-13T22:13:36.187984+0000 mon.a (mon.0) 870 : audit [DBG] from='client.? 172.21.15.31:0/2402799600' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-09-13T22:13:37.029 INFO:tasks.cephadm.ceph_manager.ceph:need seq 34359738435 got 34359738437 for osd.0 2024-09-13T22:13:37.029 DEBUG:teuthology.parallel:result is None 2024-09-13T22:13:37.685 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:37 smithi096 bash[23620]: cluster 2024-09-13T22:13:35.895200+0000 mgr.a (mgr.14150) 329 : cluster [DBG] pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:37.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:37 smithi031 bash[22709]: cluster 2024-09-13T22:13:35.895200+0000 mgr.a (mgr.14150) 329 : cluster [DBG] pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:37.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:37 smithi138 bash[23295]: cluster 2024-09-13T22:13:35.895200+0000 mgr.a (mgr.14150) 329 : cluster [DBG] pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:37.976 INFO:tasks.cephadm.ceph_manager.ceph:need seq 55834574904 got 55834574906 for osd.1 2024-09-13T22:13:37.977 DEBUG:teuthology.parallel:result is None 2024-09-13T22:13:38.119 INFO:tasks.cephadm.ceph_manager.ceph:need seq 107374182434 got 107374182436 for osd.3 2024-09-13T22:13:38.120 DEBUG:teuthology.parallel:result is None 2024-09-13T22:13:38.141 INFO:tasks.cephadm.ceph_manager.ceph:need seq 141733920793 got 141733920795 for osd.4 2024-09-13T22:13:38.141 DEBUG:teuthology.parallel:result is None 2024-09-13T22:13:38.141 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-09-13T22:13:38.142 DEBUG:teuthology.orchestra.run.smithi031:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 shell --fsid 89616338-721b-11ef-bceb-c7b262605968 -- ceph pg dump --format=json 2024-09-13T22:13:39.685 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:39 smithi096 bash[23620]: cluster 2024-09-13T22:13:37.895739+0000 mgr.a (mgr.14150) 330 : cluster [DBG] pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:39.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:39 smithi031 bash[22709]: cluster 2024-09-13T22:13:37.895739+0000 mgr.a (mgr.14150) 330 : cluster [DBG] pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:39.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:39 smithi138 bash[23295]: cluster 2024-09-13T22:13:37.895739+0000 mgr.a (mgr.14150) 330 : cluster [DBG] pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:41.685 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:41 smithi096 bash[23620]: cluster 2024-09-13T22:13:39.896160+0000 mgr.a (mgr.14150) 331 : cluster [DBG] pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:41.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:41 smithi096 bash[23620]: audit 2024-09-13T22:13:41.247075+0000 mon.a (mon.0) 871 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:41.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:41 smithi096 bash[23620]: audit 2024-09-13T22:13:41.256702+0000 mon.a (mon.0) 872 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:41.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:41 smithi096 bash[23620]: audit 2024-09-13T22:13:41.267562+0000 mon.a (mon.0) 873 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:41.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:41 smithi031 bash[22709]: cluster 2024-09-13T22:13:39.896160+0000 mgr.a (mgr.14150) 331 : cluster [DBG] pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:41.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:41 smithi031 bash[22709]: audit 2024-09-13T22:13:41.247075+0000 mon.a (mon.0) 871 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:41.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:41 smithi031 bash[22709]: audit 2024-09-13T22:13:41.256702+0000 mon.a (mon.0) 872 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:41.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:41 smithi031 bash[22709]: audit 2024-09-13T22:13:41.267562+0000 mon.a (mon.0) 873 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:41.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:41 smithi138 bash[23295]: cluster 2024-09-13T22:13:39.896160+0000 mgr.a (mgr.14150) 331 : cluster [DBG] pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:41.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:41 smithi138 bash[23295]: audit 2024-09-13T22:13:41.247075+0000 mon.a (mon.0) 871 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:41.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:41 smithi138 bash[23295]: audit 2024-09-13T22:13:41.256702+0000 mon.a (mon.0) 872 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:41.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:41 smithi138 bash[23295]: audit 2024-09-13T22:13:41.267562+0000 mon.a (mon.0) 873 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:42.435 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:42 smithi096 bash[23620]: audit 2024-09-13T22:13:41.420811+0000 mon.a (mon.0) 874 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:42.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:42 smithi096 bash[23620]: audit 2024-09-13T22:13:41.437960+0000 mon.a (mon.0) 875 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:42.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:42 smithi096 bash[23620]: audit 2024-09-13T22:13:41.448884+0000 mon.a (mon.0) 876 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:42.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:42 smithi031 bash[22709]: audit 2024-09-13T22:13:41.420811+0000 mon.a (mon.0) 874 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:42.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:42 smithi031 bash[22709]: audit 2024-09-13T22:13:41.437960+0000 mon.a (mon.0) 875 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:42.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:42 smithi031 bash[22709]: audit 2024-09-13T22:13:41.448884+0000 mon.a (mon.0) 876 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:42.797 INFO:teuthology.orchestra.run.smithi031.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T22:13:42.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:42 smithi138 bash[23295]: audit 2024-09-13T22:13:41.420811+0000 mon.a (mon.0) 874 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:42.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:42 smithi138 bash[23295]: audit 2024-09-13T22:13:41.437960+0000 mon.a (mon.0) 875 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:42.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:42 smithi138 bash[23295]: audit 2024-09-13T22:13:41.448884+0000 mon.a (mon.0) 876 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:43.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:43 smithi031 bash[22709]: cluster 2024-09-13T22:13:41.896664+0000 mgr.a (mgr.14150) 332 : cluster [DBG] pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:43.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:43 smithi031 bash[22709]: audit 2024-09-13T22:13:42.550360+0000 mon.a (mon.0) 877 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:13:43.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:43 smithi031 bash[22709]: audit 2024-09-13T22:13:42.555589+0000 mon.a (mon.0) 878 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:13:43.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:43 smithi031 bash[22709]: audit 2024-09-13T22:13:42.557403+0000 mon.a (mon.0) 879 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:13:43.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:43 smithi031 bash[22709]: audit 2024-09-13T22:13:42.567385+0000 mon.a (mon.0) 880 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:43.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:43 smithi138 bash[23295]: cluster 2024-09-13T22:13:41.896664+0000 mgr.a (mgr.14150) 332 : cluster [DBG] pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:43.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:43 smithi138 bash[23295]: audit 2024-09-13T22:13:42.550360+0000 mon.a (mon.0) 877 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:13:43.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:43 smithi138 bash[23295]: audit 2024-09-13T22:13:42.555589+0000 mon.a (mon.0) 878 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:13:43.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:43 smithi138 bash[23295]: audit 2024-09-13T22:13:42.557403+0000 mon.a (mon.0) 879 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:13:43.825 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:43 smithi138 bash[23295]: audit 2024-09-13T22:13:42.567385+0000 mon.a (mon.0) 880 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:43.935 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:43 smithi096 bash[23620]: cluster 2024-09-13T22:13:41.896664+0000 mgr.a (mgr.14150) 332 : cluster [DBG] pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:43.935 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:43 smithi096 bash[23620]: audit 2024-09-13T22:13:42.550360+0000 mon.a (mon.0) 877 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:13:43.935 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:43 smithi096 bash[23620]: audit 2024-09-13T22:13:42.555589+0000 mon.a (mon.0) 878 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:13:43.935 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:43 smithi096 bash[23620]: audit 2024-09-13T22:13:42.557403+0000 mon.a (mon.0) 879 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:13:43.936 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:43 smithi096 bash[23620]: audit 2024-09-13T22:13:42.567385+0000 mon.a (mon.0) 880 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:44.194 INFO:teuthology.orchestra.run.smithi031.stdout: 2024-09-13T22:13:44.194 INFO:teuthology.orchestra.run.smithi031.stderr:dumped all 2024-09-13T22:13:44.685 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:44 smithi096 bash[23620]: audit 2024-09-13T22:13:43.556869+0000 mon.a (mon.0) 881 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:44.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:44 smithi096 bash[23620]: audit 2024-09-13T22:13:43.564977+0000 mon.a (mon.0) 882 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:44.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:44 smithi096 bash[23620]: audit 2024-09-13T22:13:43.574342+0000 mon.a (mon.0) 883 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:44.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:44 smithi138 bash[23295]: audit 2024-09-13T22:13:43.556869+0000 mon.a (mon.0) 881 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:44.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:44 smithi138 bash[23295]: audit 2024-09-13T22:13:43.564977+0000 mon.a (mon.0) 882 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:44.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:44 smithi138 bash[23295]: audit 2024-09-13T22:13:43.574342+0000 mon.a (mon.0) 883 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:44.918 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:44 smithi031 bash[22709]: audit 2024-09-13T22:13:43.556869+0000 mon.a (mon.0) 881 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:44.918 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:44 smithi031 bash[22709]: audit 2024-09-13T22:13:43.564977+0000 mon.a (mon.0) 882 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:44.918 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:44 smithi031 bash[22709]: audit 2024-09-13T22:13:43.574342+0000 mon.a (mon.0) 883 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:13:44.919 INFO:teuthology.orchestra.run.smithi031.stdout:{"pg_ready":true,"pg_map":{"version":289,"stamp":"2024-09-13T22:13:43.896991+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":174648,"kb_used_data":4140,"kb_used_omap":9,"kb_used_meta":170358,"kb_avail":562296264,"statfs":{"total":575970213888,"available":575791374336,"internally_reserved":0,"allocated":4239360,"data_stored":2732460,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9568,"internal_metadata":174447264},"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.002825"},"pg_stats":[{"pgid":"1.0","version":"21'137","reported_seq":261,"reported_epoch":45,"state":"active+clean","last_fresh":"2024-09-13T22:12:37.418900+0000","last_change":"2024-09-13T22:12:37.418173+0000","last_active":"2024-09-13T22:12:37.418900+0000","last_peered":"2024-09-13T22:12:37.418900+0000","last_clean":"2024-09-13T22:12:37.418900+0000","last_became_active":"2024-09-13T22:12:37.417424+0000","last_became_peered":"2024-09-13T22:12:37.417424+0000","last_unstale":"2024-09-13T22:12:37.418900+0000","last_undegraded":"2024-09-13T22:12:37.418900+0000","last_fullsized":"2024-09-13T22:12:37.418900+0000","mapping_epoch":44,"log_start":"0'0","ondisk_log_start":"0'0","created":19,"last_epoch_clean":45,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-13T22:09:52.889333+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-13T22:09:52.889333+0000","last_clean_scrub_stamp":"2024-09-13T22:09:52.889333+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-09-15T09:44:38.113159+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":3563520,"data_stored":3542208,"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":41,"seq":176093659152,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28020,"kb_used_data":980,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717132,"statfs":{"total":95995035648,"available":95966343168,"internally_reserved":0,"allocated":1003520,"data_stored":750594,"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":33,"seq":141733920797,"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":400,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717724,"statfs":{"total":95995035648,"available":95966949376,"internally_reserved":0,"allocated":409600,"data_stored":160226,"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":25,"seq":107374182438,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":32168,"kb_used_data":980,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93712984,"statfs":{"total":95995035648,"available":95962095616,"internally_reserved":0,"allocated":1003520,"data_stored":750594,"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":77309411378,"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":980,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717144,"statfs":{"total":95995035648,"available":95966355456,"internally_reserved":0,"allocated":1003520,"data_stored":750594,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":1,"up_from":13,"seq":55834574908,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27428,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717724,"statfs":{"total":95995035648,"available":95966949376,"internally_reserved":0,"allocated":409600,"data_stored":160226,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":0,"up_from":8,"seq":34359738439,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":31596,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93713556,"statfs":{"total":95995035648,"available":95962681344,"internally_reserved":0,"allocated":409600,"data_stored":160226,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[1,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":4,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":5,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2024-09-13T22:13:44.920 DEBUG:teuthology.orchestra.run.smithi031:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 shell --fsid 89616338-721b-11ef-bceb-c7b262605968 -- ceph pg dump --format=json 2024-09-13T22:13:45.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:45 smithi138 bash[23295]: cluster 2024-09-13T22:13:43.897161+0000 mgr.a (mgr.14150) 333 : cluster [DBG] pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:45.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:45 smithi138 bash[23295]: audit 2024-09-13T22:13:44.196622+0000 mgr.a (mgr.14150) 334 : audit [DBG] from='client.14439 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-13T22:13:45.935 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:45 smithi096 bash[23620]: cluster 2024-09-13T22:13:43.897161+0000 mgr.a (mgr.14150) 333 : cluster [DBG] pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:45.935 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:45 smithi096 bash[23620]: audit 2024-09-13T22:13:44.196622+0000 mgr.a (mgr.14150) 334 : audit [DBG] from='client.14439 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-13T22:13:45.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:45 smithi031 bash[22709]: cluster 2024-09-13T22:13:43.897161+0000 mgr.a (mgr.14150) 333 : cluster [DBG] pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:45.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:45 smithi031 bash[22709]: audit 2024-09-13T22:13:44.196622+0000 mgr.a (mgr.14150) 334 : audit [DBG] from='client.14439 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-13T22:13:47.935 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:47 smithi096 bash[23620]: cluster 2024-09-13T22:13:45.897669+0000 mgr.a (mgr.14150) 335 : cluster [DBG] pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:47.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:47 smithi031 bash[22709]: cluster 2024-09-13T22:13:45.897669+0000 mgr.a (mgr.14150) 335 : cluster [DBG] pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:48.074 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:47 smithi138 bash[23295]: cluster 2024-09-13T22:13:45.897669+0000 mgr.a (mgr.14150) 335 : cluster [DBG] pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:49.678 INFO:teuthology.orchestra.run.smithi031.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T22:13:49.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:49 smithi031 bash[22709]: cluster 2024-09-13T22:13:47.898215+0000 mgr.a (mgr.14150) 336 : cluster [DBG] pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:49.936 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:49 smithi096 bash[23620]: cluster 2024-09-13T22:13:47.898215+0000 mgr.a (mgr.14150) 336 : cluster [DBG] pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:50.074 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:49 smithi138 bash[23295]: cluster 2024-09-13T22:13:47.898215+0000 mgr.a (mgr.14150) 336 : cluster [DBG] pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:51.728 INFO:teuthology.orchestra.run.smithi031.stdout: 2024-09-13T22:13:51.729 INFO:teuthology.orchestra.run.smithi031.stderr:dumped all 2024-09-13T22:13:51.856 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:51 smithi031 bash[22709]: cluster 2024-09-13T22:13:49.898824+0000 mgr.a (mgr.14150) 337 : cluster [DBG] pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:51.935 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:51 smithi096 bash[23620]: cluster 2024-09-13T22:13:49.898824+0000 mgr.a (mgr.14150) 337 : cluster [DBG] pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:52.074 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:51 smithi138 bash[23295]: cluster 2024-09-13T22:13:49.898824+0000 mgr.a (mgr.14150) 337 : cluster [DBG] pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:52.822 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:52 smithi031 bash[22709]: audit 2024-09-13T22:13:51.729841+0000 mgr.a (mgr.14150) 338 : audit [DBG] from='client.14445 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-13T22:13:52.823 INFO:teuthology.orchestra.run.smithi031.stdout:{"pg_ready":true,"pg_map":{"version":292,"stamp":"2024-09-13T22:13:49.898556+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":174648,"kb_used_data":4140,"kb_used_omap":9,"kb_used_meta":170358,"kb_avail":562296264,"statfs":{"total":575970213888,"available":575791374336,"internally_reserved":0,"allocated":4239360,"data_stored":2732460,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9568,"internal_metadata":174447264},"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.003094"},"pg_stats":[{"pgid":"1.0","version":"21'137","reported_seq":261,"reported_epoch":45,"state":"active+clean","last_fresh":"2024-09-13T22:12:37.418900+0000","last_change":"2024-09-13T22:12:37.418173+0000","last_active":"2024-09-13T22:12:37.418900+0000","last_peered":"2024-09-13T22:12:37.418900+0000","last_clean":"2024-09-13T22:12:37.418900+0000","last_became_active":"2024-09-13T22:12:37.417424+0000","last_became_peered":"2024-09-13T22:12:37.417424+0000","last_unstale":"2024-09-13T22:12:37.418900+0000","last_undegraded":"2024-09-13T22:12:37.418900+0000","last_fullsized":"2024-09-13T22:12:37.418900+0000","mapping_epoch":44,"log_start":"0'0","ondisk_log_start":"0'0","created":19,"last_epoch_clean":45,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-13T22:09:52.889333+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-13T22:09:52.889333+0000","last_clean_scrub_stamp":"2024-09-13T22:09:52.889333+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-09-15T09:44:38.113159+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":3563520,"data_stored":3542208,"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":41,"seq":176093659154,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28020,"kb_used_data":980,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717132,"statfs":{"total":95995035648,"available":95966343168,"internally_reserved":0,"allocated":1003520,"data_stored":750594,"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":33,"seq":141733920798,"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":400,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717724,"statfs":{"total":95995035648,"available":95966949376,"internally_reserved":0,"allocated":409600,"data_stored":160226,"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":25,"seq":107374182439,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":32168,"kb_used_data":980,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93712984,"statfs":{"total":95995035648,"available":95962095616,"internally_reserved":0,"allocated":1003520,"data_stored":750594,"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":77309411379,"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":980,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717144,"statfs":{"total":95995035648,"available":95966355456,"internally_reserved":0,"allocated":1003520,"data_stored":750594,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":1,"up_from":13,"seq":55834574909,"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":400,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717724,"statfs":{"total":95995035648,"available":95966949376,"internally_reserved":0,"allocated":409600,"data_stored":160226,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":0,"up_from":8,"seq":34359738440,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":31596,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93713556,"statfs":{"total":95995035648,"available":95962681344,"internally_reserved":0,"allocated":409600,"data_stored":160226,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[1,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":4,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":5,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2024-09-13T22:13:52.824 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-09-13T22:13:52.824 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-09-13T22:13:52.824 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-09-13T22:13:52.824 DEBUG:teuthology.orchestra.run.smithi031:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 shell --fsid 89616338-721b-11ef-bceb-c7b262605968 -- ceph health --format=json 2024-09-13T22:13:52.935 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:52 smithi096 bash[23620]: audit 2024-09-13T22:13:51.729841+0000 mgr.a (mgr.14150) 338 : audit [DBG] from='client.14445 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-13T22:13:53.074 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:52 smithi138 bash[23295]: audit 2024-09-13T22:13:51.729841+0000 mgr.a (mgr.14150) 338 : audit [DBG] from='client.14445 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-13T22:13:53.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:53 smithi031 bash[22709]: cluster 2024-09-13T22:13:51.899321+0000 mgr.a (mgr.14150) 339 : cluster [DBG] pgmap v293: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:53.824 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:53 smithi138 bash[23295]: cluster 2024-09-13T22:13:51.899321+0000 mgr.a (mgr.14150) 339 : cluster [DBG] pgmap v293: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:53.935 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:53 smithi096 bash[23620]: cluster 2024-09-13T22:13:51.899321+0000 mgr.a (mgr.14150) 339 : cluster [DBG] pgmap v293: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:55.935 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:55 smithi096 bash[23620]: cluster 2024-09-13T22:13:53.899892+0000 mgr.a (mgr.14150) 340 : cluster [DBG] pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:55.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:55 smithi031 bash[22709]: cluster 2024-09-13T22:13:53.899892+0000 mgr.a (mgr.14150) 340 : cluster [DBG] pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:56.074 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:55 smithi138 bash[23295]: cluster 2024-09-13T22:13:53.899892+0000 mgr.a (mgr.14150) 340 : cluster [DBG] pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:57.581 INFO:teuthology.orchestra.run.smithi031.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T22:13:57.935 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:57 smithi096 bash[23620]: cluster 2024-09-13T22:13:55.900468+0000 mgr.a (mgr.14150) 341 : cluster [DBG] pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:57.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:57 smithi031 bash[22709]: cluster 2024-09-13T22:13:55.900468+0000 mgr.a (mgr.14150) 341 : cluster [DBG] pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:58.074 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:57 smithi138 bash[23295]: cluster 2024-09-13T22:13:55.900468+0000 mgr.a (mgr.14150) 341 : cluster [DBG] pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:58.948 INFO:teuthology.orchestra.run.smithi031.stdout: 2024-09-13T22:13:58.949 INFO:teuthology.orchestra.run.smithi031.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-09-13T22:13:59.627 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-09-13T22:13:59.627 INFO:tasks.cephadm:Setup complete, yielding 2024-09-13T22:13:59.628 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-13T22:13:59.640 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi031.front.sepia.ceph.com 2024-09-13T22:13:59.641 DEBUG:teuthology.orchestra.run.smithi031:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ecab7be58963a5bd03910cd73eef66405d7fdd50 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 89616338-721b-11ef-bceb-c7b262605968 -- bash -c 'set -ex 2024-09-13T22:13:59.641 DEBUG:teuthology.orchestra.run.smithi031:> HOSTNAMES=$(ceph orch host ls --format json | jq -r '"'"'.[] | .hostname'"'"') 2024-09-13T22:13:59.641 DEBUG:teuthology.orchestra.run.smithi031:> for host in $HOSTNAMES; do 2024-09-13T22:13:59.641 DEBUG:teuthology.orchestra.run.smithi031:> # find the hostname for "host.c" which will have no mgr 2024-09-13T22:13:59.641 DEBUG:teuthology.orchestra.run.smithi031:> HAS_MGRS=$(ceph orch ps --hostname ${host} --format json | jq '"'"'any(.daemon_type == "mgr")'"'"') 2024-09-13T22:13:59.641 DEBUG:teuthology.orchestra.run.smithi031:> if [ "$HAS_MGRS" == "false" ]; then 2024-09-13T22:13:59.641 DEBUG:teuthology.orchestra.run.smithi031:> HOST_C="${host}" 2024-09-13T22:13:59.641 DEBUG:teuthology.orchestra.run.smithi031:> fi 2024-09-13T22:13:59.641 DEBUG:teuthology.orchestra.run.smithi031:> done 2024-09-13T22:13:59.641 DEBUG:teuthology.orchestra.run.smithi031:> # One last thing to worry about before draining the host 2024-09-13T22:13:59.642 DEBUG:teuthology.orchestra.run.smithi031:> # is that the teuthology test tends to put the explicit 2024-09-13T22:13:59.642 DEBUG:teuthology.orchestra.run.smithi031:> # hostnames in the placement for the mon service. 2024-09-13T22:13:59.642 DEBUG:teuthology.orchestra.run.smithi031:> # We want to make sure we can drain without providing 2024-09-13T22:13:59.642 DEBUG:teuthology.orchestra.run.smithi031:> # --force and there is a check for the host being removed 2024-09-13T22:13:59.642 DEBUG:teuthology.orchestra.run.smithi031:> # being listed explicitly in the placements. Therefore, 2024-09-13T22:13:59.642 DEBUG:teuthology.orchestra.run.smithi031:> # we should remove it from the mon placement. 2024-09-13T22:13:59.642 DEBUG:teuthology.orchestra.run.smithi031:> ceph orch ls mon --export > mon.yaml 2024-09-13T22:13:59.642 DEBUG:teuthology.orchestra.run.smithi031:> sed /"$HOST_C"/d mon.yaml > mon_adjusted.yaml 2024-09-13T22:13:59.642 DEBUG:teuthology.orchestra.run.smithi031:> ceph orch apply -i mon_adjusted.yaml 2024-09-13T22:13:59.642 DEBUG:teuthology.orchestra.run.smithi031:> # now drain that host 2024-09-13T22:13:59.642 DEBUG:teuthology.orchestra.run.smithi031:> ceph orch host drain $HOST_C --zap-osd-devices 2024-09-13T22:13:59.642 DEBUG:teuthology.orchestra.run.smithi031:> # wait for drain to complete 2024-09-13T22:13:59.642 DEBUG:teuthology.orchestra.run.smithi031:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2024-09-13T22:13:59.642 DEBUG:teuthology.orchestra.run.smithi031:> while [ "$HOST_C_DAEMONS" != "No daemons reported" ]; do 2024-09-13T22:13:59.642 DEBUG:teuthology.orchestra.run.smithi031:> sleep 15 2024-09-13T22:13:59.643 DEBUG:teuthology.orchestra.run.smithi031:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2024-09-13T22:13:59.643 DEBUG:teuthology.orchestra.run.smithi031:> done 2024-09-13T22:13:59.643 DEBUG:teuthology.orchestra.run.smithi031:> # we want to check the ability to remove the host from 2024-09-13T22:13:59.643 DEBUG:teuthology.orchestra.run.smithi031:> # the CRUSH map, so we should first verify the host is in 2024-09-13T22:13:59.643 DEBUG:teuthology.orchestra.run.smithi031:> # the CRUSH map. 2024-09-13T22:13:59.643 DEBUG:teuthology.orchestra.run.smithi031:> ceph osd getcrushmap -o compiled-crushmap 2024-09-13T22:13:59.643 DEBUG:teuthology.orchestra.run.smithi031:> crushtool -d compiled-crushmap -o crushmap.txt 2024-09-13T22:13:59.643 DEBUG:teuthology.orchestra.run.smithi031:> CRUSH_MAP=$(cat crushmap.txt) 2024-09-13T22:13:59.643 DEBUG:teuthology.orchestra.run.smithi031:> if ! grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2024-09-13T22:13:59.643 DEBUG:teuthology.orchestra.run.smithi031:> printf "Expected to see $HOST_C in CRUSH map. Saw:\n\n$CRUSH_MAP" 2024-09-13T22:13:59.643 DEBUG:teuthology.orchestra.run.smithi031:> exit 1 2024-09-13T22:13:59.643 DEBUG:teuthology.orchestra.run.smithi031:> fi 2024-09-13T22:13:59.643 DEBUG:teuthology.orchestra.run.smithi031:> # If the drain was successful, we should be able to remove the 2024-09-13T22:13:59.643 DEBUG:teuthology.orchestra.run.smithi031:> # host without force with no issues. If there are still daemons 2024-09-13T22:13:59.644 DEBUG:teuthology.orchestra.run.smithi031:> # we will get a response telling us to drain the host and a 2024-09-13T22:13:59.644 DEBUG:teuthology.orchestra.run.smithi031:> # non-zero return code 2024-09-13T22:13:59.644 DEBUG:teuthology.orchestra.run.smithi031:> ceph orch host rm $HOST_C --rm-crush-entry 2024-09-13T22:13:59.644 DEBUG:teuthology.orchestra.run.smithi031:> # verify we'"'"'ve successfully removed the host from the CRUSH map 2024-09-13T22:13:59.644 DEBUG:teuthology.orchestra.run.smithi031:> sleep 30 2024-09-13T22:13:59.644 DEBUG:teuthology.orchestra.run.smithi031:> ceph osd getcrushmap -o compiled-crushmap 2024-09-13T22:13:59.644 DEBUG:teuthology.orchestra.run.smithi031:> crushtool -d compiled-crushmap -o crushmap.txt 2024-09-13T22:13:59.644 DEBUG:teuthology.orchestra.run.smithi031:> CRUSH_MAP=$(cat crushmap.txt) 2024-09-13T22:13:59.644 DEBUG:teuthology.orchestra.run.smithi031:> if grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2024-09-13T22:13:59.644 DEBUG:teuthology.orchestra.run.smithi031:> printf "Saw $HOST_C in CRUSH map after it should have been removed.\n\n$CRUSH_MAP" 2024-09-13T22:13:59.644 DEBUG:teuthology.orchestra.run.smithi031:> exit 1 2024-09-13T22:13:59.644 DEBUG:teuthology.orchestra.run.smithi031:> fi 2024-09-13T22:13:59.644 DEBUG:teuthology.orchestra.run.smithi031:> ' 2024-09-13T22:13:59.935 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:59 smithi096 bash[23620]: cluster 2024-09-13T22:13:57.900972+0000 mgr.a (mgr.14150) 342 : cluster [DBG] pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:59.935 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:13:59 smithi096 bash[23620]: audit 2024-09-13T22:13:58.951748+0000 mon.a (mon.0) 884 : audit [DBG] from='client.? 172.21.15.31:0/1886032255' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-09-13T22:13:59.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:59 smithi031 bash[22709]: cluster 2024-09-13T22:13:57.900972+0000 mgr.a (mgr.14150) 342 : cluster [DBG] pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:13:59.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:13:59 smithi031 bash[22709]: audit 2024-09-13T22:13:58.951748+0000 mon.a (mon.0) 884 : audit [DBG] from='client.? 172.21.15.31:0/1886032255' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-09-13T22:14:00.074 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:59 smithi138 bash[23295]: cluster 2024-09-13T22:13:57.900972+0000 mgr.a (mgr.14150) 342 : cluster [DBG] pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:14:00.074 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:13:59 smithi138 bash[23295]: audit 2024-09-13T22:13:58.951748+0000 mon.a (mon.0) 884 : audit [DBG] from='client.? 172.21.15.31:0/1886032255' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-09-13T22:14:01.935 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:01 smithi096 bash[23620]: cluster 2024-09-13T22:13:59.901489+0000 mgr.a (mgr.14150) 343 : cluster [DBG] pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:14:01.935 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:01 smithi096 bash[23620]: audit 2024-09-13T22:14:01.466816+0000 mon.a (mon.0) 885 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:01.935 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:01 smithi096 bash[23620]: audit 2024-09-13T22:14:01.474182+0000 mon.a (mon.0) 886 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:01.935 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:01 smithi096 bash[23620]: audit 2024-09-13T22:14:01.483594+0000 mon.a (mon.0) 887 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:01.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:01 smithi031 bash[22709]: cluster 2024-09-13T22:13:59.901489+0000 mgr.a (mgr.14150) 343 : cluster [DBG] pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:14:01.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:01 smithi031 bash[22709]: audit 2024-09-13T22:14:01.466816+0000 mon.a (mon.0) 885 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:01.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:01 smithi031 bash[22709]: audit 2024-09-13T22:14:01.474182+0000 mon.a (mon.0) 886 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:01.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:01 smithi031 bash[22709]: audit 2024-09-13T22:14:01.483594+0000 mon.a (mon.0) 887 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:02.074 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:14:01 smithi138 bash[23295]: cluster 2024-09-13T22:13:59.901489+0000 mgr.a (mgr.14150) 343 : cluster [DBG] pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:14:02.074 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:14:01 smithi138 bash[23295]: audit 2024-09-13T22:14:01.466816+0000 mon.a (mon.0) 885 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:02.074 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:14:01 smithi138 bash[23295]: audit 2024-09-13T22:14:01.474182+0000 mon.a (mon.0) 886 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:02.075 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:14:01 smithi138 bash[23295]: audit 2024-09-13T22:14:01.483594+0000 mon.a (mon.0) 887 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:02.906 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:02 smithi096 bash[23620]: audit 2024-09-13T22:14:01.653805+0000 mon.a (mon.0) 888 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:02.906 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:02 smithi096 bash[23620]: audit 2024-09-13T22:14:01.662130+0000 mon.a (mon.0) 889 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:02.906 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:02 smithi096 bash[23620]: audit 2024-09-13T22:14:01.671852+0000 mon.a (mon.0) 890 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:02.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:02 smithi031 bash[22709]: audit 2024-09-13T22:14:01.653805+0000 mon.a (mon.0) 888 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:02.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:02 smithi031 bash[22709]: audit 2024-09-13T22:14:01.662130+0000 mon.a (mon.0) 889 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:02.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:02 smithi031 bash[22709]: audit 2024-09-13T22:14:01.671852+0000 mon.a (mon.0) 890 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:03.074 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:14:02 smithi138 bash[23295]: audit 2024-09-13T22:14:01.653805+0000 mon.a (mon.0) 888 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:03.074 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:14:02 smithi138 bash[23295]: audit 2024-09-13T22:14:01.662130+0000 mon.a (mon.0) 889 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:03.074 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:14:02 smithi138 bash[23295]: audit 2024-09-13T22:14:01.671852+0000 mon.a (mon.0) 890 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:03.935 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:03 smithi096 bash[23620]: cluster 2024-09-13T22:14:01.901994+0000 mgr.a (mgr.14150) 344 : cluster [DBG] pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:14:03.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:03 smithi031 bash[22709]: cluster 2024-09-13T22:14:01.901994+0000 mgr.a (mgr.14150) 344 : cluster [DBG] pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:14:04.074 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:14:03 smithi138 bash[23295]: cluster 2024-09-13T22:14:01.901994+0000 mgr.a (mgr.14150) 344 : cluster [DBG] pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:14:04.114 INFO:teuthology.orchestra.run.smithi031.stderr:Inferring config /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T22:14:05.074 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:14:04 smithi138 bash[23295]: audit 2024-09-13T22:14:03.738386+0000 mon.a (mon.0) 891 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:05.074 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:14:04 smithi138 bash[23295]: audit 2024-09-13T22:14:03.746890+0000 mon.a (mon.0) 892 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:05.074 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:14:04 smithi138 bash[23295]: audit 2024-09-13T22:14:03.756357+0000 mon.a (mon.0) 893 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:05.177 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:04 smithi031 bash[22709]: audit 2024-09-13T22:14:03.738386+0000 mon.a (mon.0) 891 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:05.177 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:04 smithi031 bash[22709]: audit 2024-09-13T22:14:03.746890+0000 mon.a (mon.0) 892 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:05.177 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:04 smithi031 bash[22709]: audit 2024-09-13T22:14:03.756357+0000 mon.a (mon.0) 893 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:05.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:04 smithi096 bash[23620]: audit 2024-09-13T22:14:03.738386+0000 mon.a (mon.0) 891 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:05.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:04 smithi096 bash[23620]: audit 2024-09-13T22:14:03.746890+0000 mon.a (mon.0) 892 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:05.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:04 smithi096 bash[23620]: audit 2024-09-13T22:14:03.756357+0000 mon.a (mon.0) 893 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:05.243 INFO:teuthology.orchestra.run.smithi031.stderr:++ ceph orch host ls --format json 2024-09-13T22:14:05.243 INFO:teuthology.orchestra.run.smithi031.stderr:++ jq -r '.[] | .hostname' 2024-09-13T22:14:05.548 INFO:teuthology.orchestra.run.smithi031.stderr:+ HOSTNAMES='smithi031 2024-09-13T22:14:05.548 INFO:teuthology.orchestra.run.smithi031.stderr:smithi096 2024-09-13T22:14:05.548 INFO:teuthology.orchestra.run.smithi031.stderr:smithi138' 2024-09-13T22:14:05.548 INFO:teuthology.orchestra.run.smithi031.stderr:+ for host in $HOSTNAMES 2024-09-13T22:14:05.548 INFO:teuthology.orchestra.run.smithi031.stderr:++ ceph orch ps --hostname smithi031 --format json 2024-09-13T22:14:05.549 INFO:teuthology.orchestra.run.smithi031.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-13T22:14:05.851 INFO:teuthology.orchestra.run.smithi031.stderr:+ HAS_MGRS=true 2024-09-13T22:14:05.851 INFO:teuthology.orchestra.run.smithi031.stderr:+ '[' true == false ']' 2024-09-13T22:14:05.852 INFO:teuthology.orchestra.run.smithi031.stderr:+ for host in $HOSTNAMES 2024-09-13T22:14:05.852 INFO:teuthology.orchestra.run.smithi031.stderr:++ ceph orch ps --hostname smithi096 --format json 2024-09-13T22:14:05.852 INFO:teuthology.orchestra.run.smithi031.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-13T22:14:06.074 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:14:05 smithi138 bash[23295]: cluster 2024-09-13T22:14:03.902569+0000 mgr.a (mgr.14150) 345 : cluster [DBG] pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:14:06.165 INFO:teuthology.orchestra.run.smithi031.stderr:+ HAS_MGRS=true 2024-09-13T22:14:06.165 INFO:teuthology.orchestra.run.smithi031.stderr:+ '[' true == false ']' 2024-09-13T22:14:06.165 INFO:teuthology.orchestra.run.smithi031.stderr:+ for host in $HOSTNAMES 2024-09-13T22:14:06.166 INFO:teuthology.orchestra.run.smithi031.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-13T22:14:06.166 INFO:teuthology.orchestra.run.smithi031.stderr:++ ceph orch ps --hostname smithi138 --format json 2024-09-13T22:14:06.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:05 smithi096 bash[23620]: cluster 2024-09-13T22:14:03.902569+0000 mgr.a (mgr.14150) 345 : cluster [DBG] pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:14:06.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:05 smithi031 bash[22709]: cluster 2024-09-13T22:14:03.902569+0000 mgr.a (mgr.14150) 345 : cluster [DBG] pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:14:06.476 INFO:teuthology.orchestra.run.smithi031.stderr:+ HAS_MGRS=false 2024-09-13T22:14:06.476 INFO:teuthology.orchestra.run.smithi031.stderr:+ '[' false == false ']' 2024-09-13T22:14:06.476 INFO:teuthology.orchestra.run.smithi031.stderr:+ HOST_C=smithi138 2024-09-13T22:14:06.476 INFO:teuthology.orchestra.run.smithi031.stderr:+ ceph orch ls mon --export 2024-09-13T22:14:06.772 INFO:teuthology.orchestra.run.smithi031.stderr:+ sed /smithi138/d mon.yaml 2024-09-13T22:14:06.773 INFO:teuthology.orchestra.run.smithi031.stderr:+ ceph orch apply -i mon_adjusted.yaml 2024-09-13T22:14:07.074 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:14:06 smithi138 bash[23295]: audit 2024-09-13T22:14:05.537312+0000 mgr.a (mgr.14150) 346 : audit [DBG] from='client.14457 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-13T22:14:07.077 INFO:teuthology.orchestra.run.smithi031.stdout:Scheduled mon update... 2024-09-13T22:14:07.091 INFO:teuthology.orchestra.run.smithi031.stderr:+ ceph orch host drain smithi138 --zap-osd-devices 2024-09-13T22:14:07.188 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:06 smithi096 bash[23620]: audit 2024-09-13T22:14:05.537312+0000 mgr.a (mgr.14150) 346 : audit [DBG] from='client.14457 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-13T22:14:07.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:06 smithi031 bash[22709]: audit 2024-09-13T22:14:05.537312+0000 mgr.a (mgr.14150) 346 : audit [DBG] from='client.14457 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-13T22:14:08.324 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:14:07 smithi138 systemd[1]: ceph-89616338-721b-11ef-bceb-c7b262605968@mon.c.service: Deactivated successfully. 2024-09-13T22:14:09.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:09 smithi096 bash[23620]: audit 2024-09-13T22:14:07.069372+0000 mgr.a (mgr.14150) 352 : audit [DBG] from='client.14487 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:14:09.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:09 smithi096 bash[23620]: cephadm 2024-09-13T22:14:07.075346+0000 mgr.a (mgr.14150) 353 : cephadm [INF] Saving service mon spec with placement smithi031:172.21.15.31=a;smithi096:172.21.15.96=b;count:3 2024-09-13T22:14:09.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:09 smithi096 bash[23620]: cephadm 2024-09-13T22:14:07.095318+0000 mgr.a (mgr.14150) 354 : cephadm [INF] Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-09-13T22:14:09.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:09 smithi096 bash[23620]: cephadm 2024-09-13T22:14:07.095401+0000 mgr.a (mgr.14150) 355 : cephadm [INF] Removing monitor c from monmap... 2024-09-13T22:14:09.437 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:09 smithi096 bash[23620]: audit 2024-09-13T22:14:07.097037+0000 mon.a (mon.0) 902 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd='[{"prefix": "mon rm", "name": "c"}]': finished 2024-09-13T22:14:09.437 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:09 smithi096 bash[23620]: audit 2024-09-13T22:14:07.100580+0000 mon.a (mon.0) 903 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-13T22:14:09.437 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:09 smithi096 bash[23620]: audit 2024-09-13T22:14:07.101728+0000 mon.a (mon.0) 904 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-13T22:14:09.437 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:09 smithi096 bash[23620]: cluster 2024-09-13T22:14:07.112325+0000 mon.b (mon.1) 16 : cluster [INF] mon.b calling monitor election 2024-09-13T22:14:09.437 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:09 smithi096 bash[23620]: cluster 2024-09-13T22:14:07.903426+0000 mgr.a (mgr.14150) 356 : cluster [DBG] pgmap v301: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:14:09.437 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:09 smithi096 bash[23620]: cluster 2024-09-13T22:14:09.101281+0000 mon.a (mon.0) 905 : cluster [INF] mon.a calling monitor election 2024-09-13T22:14:09.437 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:09 smithi096 bash[23620]: cluster 2024-09-13T22:14:09.122997+0000 mon.a (mon.0) 906 : cluster [INF] mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-09-13T22:14:09.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:09 smithi096 bash[23620]: cluster 2024-09-13T22:14:09.129296+0000 mon.a (mon.0) 907 : cluster [DBG] monmap epoch 4 2024-09-13T22:14:09.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:09 smithi096 bash[23620]: cluster 2024-09-13T22:14:09.129327+0000 mon.a (mon.0) 908 : cluster [DBG] fsid 89616338-721b-11ef-bceb-c7b262605968 2024-09-13T22:14:09.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:09 smithi096 bash[23620]: cluster 2024-09-13T22:14:09.129343+0000 mon.a (mon.0) 909 : cluster [DBG] last_changed 2024-09-13T22:14:07.095654+0000 2024-09-13T22:14:09.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:09 smithi096 bash[23620]: cluster 2024-09-13T22:14:09.129367+0000 mon.a (mon.0) 910 : cluster [DBG] created 2024-09-13T22:04:10.314756+0000 2024-09-13T22:14:09.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:09 smithi096 bash[23620]: cluster 2024-09-13T22:14:09.129385+0000 mon.a (mon.0) 911 : cluster [DBG] min_mon_release 19 (squid) 2024-09-13T22:14:09.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:09 smithi096 bash[23620]: cluster 2024-09-13T22:14:09.129400+0000 mon.a (mon.0) 912 : cluster [DBG] election_strategy: 1 2024-09-13T22:14:09.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:09 smithi096 bash[23620]: cluster 2024-09-13T22:14:09.129418+0000 mon.a (mon.0) 913 : cluster [DBG] 0: [v2:172.21.15.31:3300/0,v1:172.21.15.31:6789/0] mon.a 2024-09-13T22:14:09.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:09 smithi096 bash[23620]: cluster 2024-09-13T22:14:09.129436+0000 mon.a (mon.0) 914 : cluster [DBG] 1: [v2:172.21.15.96:3300/0,v1:172.21.15.96:6789/0] mon.b 2024-09-13T22:14:09.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:09 smithi096 bash[23620]: cluster 2024-09-13T22:14:09.130466+0000 mon.a (mon.0) 915 : cluster [DBG] fsmap 2024-09-13T22:14:09.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:09 smithi096 bash[23620]: cluster 2024-09-13T22:14:09.130517+0000 mon.a (mon.0) 916 : cluster [DBG] osdmap e45: 6 total, 6 up, 6 in 2024-09-13T22:14:09.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:09 smithi096 bash[23620]: cluster 2024-09-13T22:14:09.131073+0000 mon.a (mon.0) 917 : cluster [DBG] mgrmap e15: a(active, since 8m), standbys: b 2024-09-13T22:14:09.438 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:09 smithi096 bash[23620]: cluster 2024-09-13T22:14:09.131319+0000 mon.a (mon.0) 918 : cluster [INF] overall HEALTH_OK 2024-09-13T22:14:09.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:09 smithi031 bash[22709]: audit 2024-09-13T22:14:07.069372+0000 mgr.a (mgr.14150) 352 : audit [DBG] from='client.14487 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:14:09.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:09 smithi031 bash[22709]: cephadm 2024-09-13T22:14:07.075346+0000 mgr.a (mgr.14150) 353 : cephadm [INF] Saving service mon spec with placement smithi031:172.21.15.31=a;smithi096:172.21.15.96=b;count:3 2024-09-13T22:14:09.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:09 smithi031 bash[22709]: cephadm 2024-09-13T22:14:07.095318+0000 mgr.a (mgr.14150) 354 : cephadm [INF] Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-09-13T22:14:09.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:09 smithi031 bash[22709]: cephadm 2024-09-13T22:14:07.095401+0000 mgr.a (mgr.14150) 355 : cephadm [INF] Removing monitor c from monmap... 2024-09-13T22:14:09.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:09 smithi031 bash[22709]: audit 2024-09-13T22:14:07.097037+0000 mon.a (mon.0) 902 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd='[{"prefix": "mon rm", "name": "c"}]': finished 2024-09-13T22:14:09.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:09 smithi031 bash[22709]: audit 2024-09-13T22:14:07.100580+0000 mon.a (mon.0) 903 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-13T22:14:09.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:09 smithi031 bash[22709]: audit 2024-09-13T22:14:07.101728+0000 mon.a (mon.0) 904 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-13T22:14:09.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:09 smithi031 bash[22709]: cluster 2024-09-13T22:14:07.112325+0000 mon.b (mon.1) 16 : cluster [INF] mon.b calling monitor election 2024-09-13T22:14:09.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:09 smithi031 bash[22709]: cluster 2024-09-13T22:14:07.903426+0000 mgr.a (mgr.14150) 356 : cluster [DBG] pgmap v301: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:14:09.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:09 smithi031 bash[22709]: cluster 2024-09-13T22:14:09.101281+0000 mon.a (mon.0) 905 : cluster [INF] mon.a calling monitor election 2024-09-13T22:14:09.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:09 smithi031 bash[22709]: cluster 2024-09-13T22:14:09.122997+0000 mon.a (mon.0) 906 : cluster [INF] mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-09-13T22:14:09.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:09 smithi031 bash[22709]: cluster 2024-09-13T22:14:09.129296+0000 mon.a (mon.0) 907 : cluster [DBG] monmap epoch 4 2024-09-13T22:14:09.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:09 smithi031 bash[22709]: cluster 2024-09-13T22:14:09.129327+0000 mon.a (mon.0) 908 : cluster [DBG] fsid 89616338-721b-11ef-bceb-c7b262605968 2024-09-13T22:14:09.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:09 smithi031 bash[22709]: cluster 2024-09-13T22:14:09.129343+0000 mon.a (mon.0) 909 : cluster [DBG] last_changed 2024-09-13T22:14:07.095654+0000 2024-09-13T22:14:09.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:09 smithi031 bash[22709]: cluster 2024-09-13T22:14:09.129367+0000 mon.a (mon.0) 910 : cluster [DBG] created 2024-09-13T22:04:10.314756+0000 2024-09-13T22:14:09.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:09 smithi031 bash[22709]: cluster 2024-09-13T22:14:09.129385+0000 mon.a (mon.0) 911 : cluster [DBG] min_mon_release 19 (squid) 2024-09-13T22:14:09.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:09 smithi031 bash[22709]: cluster 2024-09-13T22:14:09.129400+0000 mon.a (mon.0) 912 : cluster [DBG] election_strategy: 1 2024-09-13T22:14:09.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:09 smithi031 bash[22709]: cluster 2024-09-13T22:14:09.129418+0000 mon.a (mon.0) 913 : cluster [DBG] 0: [v2:172.21.15.31:3300/0,v1:172.21.15.31:6789/0] mon.a 2024-09-13T22:14:09.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:09 smithi031 bash[22709]: cluster 2024-09-13T22:14:09.129436+0000 mon.a (mon.0) 914 : cluster [DBG] 1: [v2:172.21.15.96:3300/0,v1:172.21.15.96:6789/0] mon.b 2024-09-13T22:14:09.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:09 smithi031 bash[22709]: cluster 2024-09-13T22:14:09.130466+0000 mon.a (mon.0) 915 : cluster [DBG] fsmap 2024-09-13T22:14:09.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:09 smithi031 bash[22709]: cluster 2024-09-13T22:14:09.130517+0000 mon.a (mon.0) 916 : cluster [DBG] osdmap e45: 6 total, 6 up, 6 in 2024-09-13T22:14:09.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:09 smithi031 bash[22709]: cluster 2024-09-13T22:14:09.131073+0000 mon.a (mon.0) 917 : cluster [DBG] mgrmap e15: a(active, since 8m), standbys: b 2024-09-13T22:14:09.472 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:09 smithi031 bash[22709]: cluster 2024-09-13T22:14:09.131319+0000 mon.a (mon.0) 918 : cluster [INF] overall HEALTH_OK 2024-09-13T22:14:10.424 INFO:teuthology.orchestra.run.smithi031.stdout:Scheduled to remove the following daemons from host 'smithi138' 2024-09-13T22:14:10.424 INFO:teuthology.orchestra.run.smithi031.stdout:type id 2024-09-13T22:14:10.424 INFO:teuthology.orchestra.run.smithi031.stdout:-------------------- --------------- 2024-09-13T22:14:10.425 INFO:teuthology.orchestra.run.smithi031.stdout:agent smithi138 2024-09-13T22:14:10.425 INFO:teuthology.orchestra.run.smithi031.stdout:mon c 2024-09-13T22:14:10.425 INFO:teuthology.orchestra.run.smithi031.stdout:osd 4 2024-09-13T22:14:10.425 INFO:teuthology.orchestra.run.smithi031.stdout:osd 5 2024-09-13T22:14:10.437 INFO:teuthology.orchestra.run.smithi031.stderr:++ ceph orch ps --hostname smithi138 2024-09-13T22:14:10.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:10 smithi031 bash[22709]: cephadm 2024-09-13T22:14:09.133497+0000 mgr.a (mgr.14150) 357 : cephadm [INF] Removing daemon mon.c from smithi138 -- ports [] 2024-09-13T22:14:10.685 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:10 smithi096 bash[23620]: cephadm 2024-09-13T22:14:09.133497+0000 mgr.a (mgr.14150) 357 : cephadm [INF] Removing daemon mon.c from smithi138 -- ports [] 2024-09-13T22:14:10.746 INFO:teuthology.orchestra.run.smithi031.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-13T22:14:10.746 INFO:teuthology.orchestra.run.smithi031.stderr:agent.smithi138 smithi138 running 9s ago 7m - - 2024-09-13T22:14:10.746 INFO:teuthology.orchestra.run.smithi031.stderr:mon.c smithi138 running (7m) 9s ago 7m 34.6M 2048M 19.1.1-324-gecab7be5 0652ff2b5d78 c0bc679ba708 2024-09-13T22:14:10.746 INFO:teuthology.orchestra.run.smithi031.stderr:osd.4 smithi138 running (2m) 9s ago 2m 36.1M 9.93G 19.1.1-324-gecab7be5 0652ff2b5d78 7b44785546a0 2024-09-13T22:14:10.746 INFO:teuthology.orchestra.run.smithi031.stderr:osd.5 smithi138 running (105s) 9s ago 108s 36.9M 9.93G 19.1.1-324-gecab7be5 0652ff2b5d78 b0e4e642d297 ' 2024-09-13T22:14:10.746 INFO:teuthology.orchestra.run.smithi031.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-13T22:14:10.746 INFO:teuthology.orchestra.run.smithi031.stderr:agent.smithi138 smithi138 running 9s ago 7m - - 2024-09-13T22:14:10.746 INFO:teuthology.orchestra.run.smithi031.stderr:mon.c smithi138 running (7m) 9s ago 7m 34.6M 2048M 19.1.1-324-gecab7be5 0652ff2b5d78 c0bc679ba708 2024-09-13T22:14:10.746 INFO:teuthology.orchestra.run.smithi031.stderr:osd.4 smithi138 running (2m) 9s ago 2m 36.1M 9.93G 19.1.1-324-gecab7be5 0652ff2b5d78 7b44785546a0 2024-09-13T22:14:10.747 INFO:teuthology.orchestra.run.smithi031.stderr:osd.5 smithi138 running (105s) 9s ago 108s 36.9M 9.93G 19.1.1-324-gecab7be5 0652ff2b5d78 b0e4e642d297 ' '!=' 'No daemons reported' ']' 2024-09-13T22:14:10.747 INFO:teuthology.orchestra.run.smithi031.stderr:+ sleep 15 2024-09-13T22:14:11.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:11 smithi031 bash[22709]: cluster 2024-09-13T22:14:09.903998+0000 mgr.a (mgr.14150) 358 : cluster [DBG] pgmap v302: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:14:11.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:11 smithi031 bash[22709]: audit 2024-09-13T22:14:10.407969+0000 mgr.a (mgr.14150) 359 : audit [DBG] from='client.14490 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi138", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:14:11.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:11 smithi031 bash[22709]: audit 2024-09-13T22:14:10.414752+0000 mon.a (mon.0) 919 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:11.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:11 smithi031 bash[22709]: cephadm 2024-09-13T22:14:10.415527+0000 mgr.a (mgr.14150) 360 : cephadm [INF] Added label _no_schedule to host smithi138 2024-09-13T22:14:11.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:11 smithi031 bash[22709]: audit 2024-09-13T22:14:10.420898+0000 mon.a (mon.0) 920 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:11.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:11 smithi031 bash[22709]: cephadm 2024-09-13T22:14:10.421632+0000 mgr.a (mgr.14150) 361 : cephadm [INF] Added label _no_conf_keyring to host smithi138 2024-09-13T22:14:11.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:11 smithi031 bash[22709]: audit 2024-09-13T22:14:10.423490+0000 mon.a (mon.0) 921 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-13T22:14:11.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:11 smithi031 bash[22709]: cephadm 2024-09-13T22:14:10.424763+0000 mgr.a (mgr.14150) 362 : cephadm [INF] osd.4 crush weight is 0.0872955322265625 2024-09-13T22:14:11.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:11 smithi031 bash[22709]: audit 2024-09-13T22:14:10.426126+0000 mon.a (mon.0) 922 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-13T22:14:11.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:11 smithi031 bash[22709]: cephadm 2024-09-13T22:14:10.427234+0000 mgr.a (mgr.14150) 363 : cephadm [INF] osd.5 crush weight is 0.0872955322265625 2024-09-13T22:14:11.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:11 smithi031 bash[22709]: audit 2024-09-13T22:14:10.728188+0000 mgr.a (mgr.14150) 364 : audit [DBG] from='client.14494 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi138", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:14:11.685 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:11 smithi096 bash[23620]: cluster 2024-09-13T22:14:09.903998+0000 mgr.a (mgr.14150) 358 : cluster [DBG] pgmap v302: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:14:11.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:11 smithi096 bash[23620]: audit 2024-09-13T22:14:10.407969+0000 mgr.a (mgr.14150) 359 : audit [DBG] from='client.14490 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi138", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:14:11.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:11 smithi096 bash[23620]: audit 2024-09-13T22:14:10.414752+0000 mon.a (mon.0) 919 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:11.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:11 smithi096 bash[23620]: cephadm 2024-09-13T22:14:10.415527+0000 mgr.a (mgr.14150) 360 : cephadm [INF] Added label _no_schedule to host smithi138 2024-09-13T22:14:11.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:11 smithi096 bash[23620]: audit 2024-09-13T22:14:10.420898+0000 mon.a (mon.0) 920 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:11.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:11 smithi096 bash[23620]: cephadm 2024-09-13T22:14:10.421632+0000 mgr.a (mgr.14150) 361 : cephadm [INF] Added label _no_conf_keyring to host smithi138 2024-09-13T22:14:11.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:11 smithi096 bash[23620]: audit 2024-09-13T22:14:10.423490+0000 mon.a (mon.0) 921 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-13T22:14:11.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:11 smithi096 bash[23620]: cephadm 2024-09-13T22:14:10.424763+0000 mgr.a (mgr.14150) 362 : cephadm [INF] osd.4 crush weight is 0.0872955322265625 2024-09-13T22:14:11.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:11 smithi096 bash[23620]: audit 2024-09-13T22:14:10.426126+0000 mon.a (mon.0) 922 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-13T22:14:11.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:11 smithi096 bash[23620]: cephadm 2024-09-13T22:14:10.427234+0000 mgr.a (mgr.14150) 363 : cephadm [INF] osd.5 crush weight is 0.0872955322265625 2024-09-13T22:14:11.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:11 smithi096 bash[23620]: audit 2024-09-13T22:14:10.728188+0000 mgr.a (mgr.14150) 364 : audit [DBG] from='client.14494 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi138", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:14:13.685 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:13 smithi096 bash[23620]: cluster 2024-09-13T22:14:11.904536+0000 mgr.a (mgr.14150) 365 : cluster [DBG] pgmap v303: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:14:13.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:13 smithi031 bash[22709]: cluster 2024-09-13T22:14:11.904536+0000 mgr.a (mgr.14150) 365 : cluster [DBG] pgmap v303: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:14:14.574 INFO:journalctl@ceph.mon.c.smithi138.stdout:Sep 13 22:14:14 smithi138 systemd[1]: /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-13T22:14:14.574 INFO:journalctl@ceph.osd.4.smithi138.stdout:Sep 13 22:14:14 smithi138 systemd[1]: /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-13T22:14:14.575 INFO:journalctl@ceph.osd.5.smithi138.stdout:Sep 13 22:14:14 smithi138 systemd[1]: /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-13T22:14:15.935 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:15 smithi096 bash[23620]: cluster 2024-09-13T22:14:13.905105+0000 mgr.a (mgr.14150) 366 : cluster [DBG] pgmap v304: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:14:15.935 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:15 smithi096 bash[23620]: audit 2024-09-13T22:14:14.521548+0000 mon.a (mon.0) 923 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:15.935 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:15 smithi096 bash[23620]: audit 2024-09-13T22:14:14.528714+0000 mon.a (mon.0) 924 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:15.935 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:15 smithi096 bash[23620]: audit 2024-09-13T22:14:14.617948+0000 mon.a (mon.0) 925 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:14:15.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:15 smithi031 bash[22709]: cluster 2024-09-13T22:14:13.905105+0000 mgr.a (mgr.14150) 366 : cluster [DBG] pgmap v304: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:14:15.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:15 smithi031 bash[22709]: audit 2024-09-13T22:14:14.521548+0000 mon.a (mon.0) 923 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:15.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:15 smithi031 bash[22709]: audit 2024-09-13T22:14:14.528714+0000 mon.a (mon.0) 924 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:15.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:15 smithi031 bash[22709]: audit 2024-09-13T22:14:14.617948+0000 mon.a (mon.0) 925 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:14:17.935 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:17 smithi096 bash[23620]: cluster 2024-09-13T22:14:15.905638+0000 mgr.a (mgr.14150) 367 : cluster [DBG] pgmap v305: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:14:17.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:17 smithi031 bash[22709]: cluster 2024-09-13T22:14:15.905638+0000 mgr.a (mgr.14150) 367 : cluster [DBG] pgmap v305: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:14:19.435 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:18 smithi096 bash[23620]: cluster 2024-09-13T22:14:17.906180+0000 mgr.a (mgr.14150) 368 : cluster [DBG] pgmap v306: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:14:19.435 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:18 smithi096 bash[23620]: audit 2024-09-13T22:14:17.983285+0000 mon.a (mon.0) 926 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:19.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:18 smithi031 bash[22709]: cluster 2024-09-13T22:14:17.906180+0000 mgr.a (mgr.14150) 368 : cluster [DBG] pgmap v306: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:14:19.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:18 smithi031 bash[22709]: audit 2024-09-13T22:14:17.983285+0000 mon.a (mon.0) 926 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:21.435 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:20 smithi096 bash[23620]: cluster 2024-09-13T22:14:19.906732+0000 mgr.a (mgr.14150) 369 : cluster [DBG] pgmap v307: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:14:21.435 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:20 smithi096 bash[23620]: audit 2024-09-13T22:14:20.929240+0000 mon.a (mon.0) 927 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:21.435 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:20 smithi096 bash[23620]: audit 2024-09-13T22:14:20.937376+0000 mon.a (mon.0) 928 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:21.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:20 smithi031 bash[22709]: cluster 2024-09-13T22:14:19.906732+0000 mgr.a (mgr.14150) 369 : cluster [DBG] pgmap v307: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:14:21.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:20 smithi031 bash[22709]: audit 2024-09-13T22:14:20.929240+0000 mon.a (mon.0) 927 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:21.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:20 smithi031 bash[22709]: audit 2024-09-13T22:14:20.937376+0000 mon.a (mon.0) 928 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:22.685 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:22 smithi096 bash[23620]: audit 2024-09-13T22:14:21.430402+0000 mon.a (mon.0) 929 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:22.685 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:22 smithi096 bash[23620]: audit 2024-09-13T22:14:21.438635+0000 mon.a (mon.0) 930 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:22.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:22 smithi096 bash[23620]: audit 2024-09-13T22:14:21.687164+0000 mon.a (mon.0) 931 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:22.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:22 smithi096 bash[23620]: audit 2024-09-13T22:14:21.695201+0000 mon.a (mon.0) 932 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:22.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:22 smithi096 bash[23620]: audit 2024-09-13T22:14:21.704437+0000 mon.a (mon.0) 933 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:22.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:22 smithi096 bash[23620]: audit 2024-09-13T22:14:21.845607+0000 mon.a (mon.0) 934 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:22.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:22 smithi096 bash[23620]: audit 2024-09-13T22:14:21.853941+0000 mon.a (mon.0) 935 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:22.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:22 smithi096 bash[23620]: audit 2024-09-13T22:14:21.863814+0000 mon.a (mon.0) 936 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:22.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:22 smithi031 bash[22709]: audit 2024-09-13T22:14:21.430402+0000 mon.a (mon.0) 929 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:22.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:22 smithi031 bash[22709]: audit 2024-09-13T22:14:21.438635+0000 mon.a (mon.0) 930 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:22.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:22 smithi031 bash[22709]: audit 2024-09-13T22:14:21.687164+0000 mon.a (mon.0) 931 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:22.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:22 smithi031 bash[22709]: audit 2024-09-13T22:14:21.695201+0000 mon.a (mon.0) 932 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:22.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:22 smithi031 bash[22709]: audit 2024-09-13T22:14:21.704437+0000 mon.a (mon.0) 933 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:22.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:22 smithi031 bash[22709]: audit 2024-09-13T22:14:21.845607+0000 mon.a (mon.0) 934 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:22.721 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:22 smithi031 bash[22709]: audit 2024-09-13T22:14:21.853941+0000 mon.a (mon.0) 935 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:22.721 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:22 smithi031 bash[22709]: audit 2024-09-13T22:14:21.863814+0000 mon.a (mon.0) 936 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:23.685 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:23 smithi096 bash[23620]: cluster 2024-09-13T22:14:21.907278+0000 mgr.a (mgr.14150) 370 : cluster [DBG] pgmap v308: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:14:23.685 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:23 smithi096 bash[23620]: audit 2024-09-13T22:14:23.056278+0000 mon.a (mon.0) 937 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:23.685 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:23 smithi096 bash[23620]: audit 2024-09-13T22:14:23.063970+0000 mon.a (mon.0) 938 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:23.685 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:23 smithi096 bash[23620]: audit 2024-09-13T22:14:23.074959+0000 mon.a (mon.0) 939 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:23.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:23 smithi031 bash[22709]: cluster 2024-09-13T22:14:21.907278+0000 mgr.a (mgr.14150) 370 : cluster [DBG] pgmap v308: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:14:23.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:23 smithi031 bash[22709]: audit 2024-09-13T22:14:23.056278+0000 mon.a (mon.0) 937 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:23.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:23 smithi031 bash[22709]: audit 2024-09-13T22:14:23.063970+0000 mon.a (mon.0) 938 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:23.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:23 smithi031 bash[22709]: audit 2024-09-13T22:14:23.074959+0000 mon.a (mon.0) 939 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:25.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:24 smithi096 bash[23620]: audit 2024-09-13T22:14:23.883526+0000 mon.a (mon.0) 940 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:25.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:24 smithi096 bash[23620]: audit 2024-09-13T22:14:23.892919+0000 mon.a (mon.0) 941 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:25.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:24 smithi096 bash[23620]: audit 2024-09-13T22:14:23.902073+0000 mon.a (mon.0) 942 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:25.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:24 smithi096 bash[23620]: cluster 2024-09-13T22:14:23.907771+0000 mgr.a (mgr.14150) 371 : cluster [DBG] pgmap v309: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:14:25.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:24 smithi031 bash[22709]: audit 2024-09-13T22:14:23.883526+0000 mon.a (mon.0) 940 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:25.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:24 smithi031 bash[22709]: audit 2024-09-13T22:14:23.892919+0000 mon.a (mon.0) 941 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:25.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:24 smithi031 bash[22709]: audit 2024-09-13T22:14:23.902073+0000 mon.a (mon.0) 942 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:25.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:24 smithi031 bash[22709]: cluster 2024-09-13T22:14:23.907771+0000 mgr.a (mgr.14150) 371 : cluster [DBG] pgmap v309: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:14:25.749 INFO:teuthology.orchestra.run.smithi031.stderr:++ ceph orch ps --hostname smithi138 2024-09-13T22:14:26.069 INFO:teuthology.orchestra.run.smithi031.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-13T22:14:26.069 INFO:teuthology.orchestra.run.smithi031.stderr:agent.smithi138 smithi138 running 3s ago 8m - - 2024-09-13T22:14:26.070 INFO:teuthology.orchestra.run.smithi031.stderr:osd.4 smithi138 running (2m) 3s ago 3m 36.4M 9.93G 19.1.1-324-gecab7be5 0652ff2b5d78 7b44785546a0 2024-09-13T22:14:26.070 INFO:teuthology.orchestra.run.smithi031.stderr:osd.5 smithi138 running (2m) 3s ago 2m 37.2M 9.93G 19.1.1-324-gecab7be5 0652ff2b5d78 b0e4e642d297 ' 2024-09-13T22:14:26.070 INFO:teuthology.orchestra.run.smithi031.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-13T22:14:26.070 INFO:teuthology.orchestra.run.smithi031.stderr:agent.smithi138 smithi138 running 3s ago 8m - - 2024-09-13T22:14:26.070 INFO:teuthology.orchestra.run.smithi031.stderr:osd.4 smithi138 running (2m) 3s ago 3m 36.4M 9.93G 19.1.1-324-gecab7be5 0652ff2b5d78 7b44785546a0 2024-09-13T22:14:26.070 INFO:teuthology.orchestra.run.smithi031.stderr:osd.5 smithi138 running (2m) 3s ago 2m 37.2M 9.93G 19.1.1-324-gecab7be5 0652ff2b5d78 b0e4e642d297 ' '!=' 'No daemons reported' ']' 2024-09-13T22:14:26.070 INFO:teuthology.orchestra.run.smithi031.stderr:+ sleep 15 2024-09-13T22:14:27.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:26 smithi031 bash[22709]: cluster 2024-09-13T22:14:25.908115+0000 mgr.a (mgr.14150) 372 : cluster [DBG] pgmap v310: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:14:27.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:26 smithi031 bash[22709]: audit 2024-09-13T22:14:26.052956+0000 mgr.a (mgr.14150) 373 : audit [DBG] from='client.14498 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi138", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:14:27.435 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:26 smithi096 bash[23620]: cluster 2024-09-13T22:14:25.908115+0000 mgr.a (mgr.14150) 372 : cluster [DBG] pgmap v310: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:14:27.435 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:26 smithi096 bash[23620]: audit 2024-09-13T22:14:26.052956+0000 mgr.a (mgr.14150) 373 : audit [DBG] from='client.14498 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi138", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:14:29.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:28 smithi031 bash[22709]: cluster 2024-09-13T22:14:27.908681+0000 mgr.a (mgr.14150) 374 : cluster [DBG] pgmap v311: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:14:29.435 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:28 smithi096 bash[23620]: cluster 2024-09-13T22:14:27.908681+0000 mgr.a (mgr.14150) 374 : cluster [DBG] pgmap v311: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:14:31.173 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:30 smithi031 bash[22709]: cephadm 2024-09-13T22:14:29.747888+0000 mgr.a (mgr.14150) 375 : cephadm [INF] Detected new or changed devices on smithi138 2024-09-13T22:14:31.173 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:30 smithi031 bash[22709]: audit 2024-09-13T22:14:29.756474+0000 mon.a (mon.0) 943 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:31.173 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:30 smithi031 bash[22709]: audit 2024-09-13T22:14:29.764327+0000 mon.a (mon.0) 944 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:31.173 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:30 smithi031 bash[22709]: audit 2024-09-13T22:14:29.765937+0000 mon.a (mon.0) 945 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:14:31.174 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:30 smithi031 bash[22709]: audit 2024-09-13T22:14:29.767828+0000 mon.a (mon.0) 946 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:14:31.174 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:30 smithi031 bash[22709]: cephadm 2024-09-13T22:14:29.770122+0000 mgr.a (mgr.14150) 376 : cephadm [INF] Updating smithi031:/etc/ceph/ceph.conf 2024-09-13T22:14:31.174 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:30 smithi031 bash[22709]: cephadm 2024-09-13T22:14:29.771013+0000 mgr.a (mgr.14150) 377 : cephadm [INF] Updating smithi096:/etc/ceph/ceph.conf 2024-09-13T22:14:31.174 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:30 smithi031 bash[22709]: cephadm 2024-09-13T22:14:29.772515+0000 mgr.a (mgr.14150) 378 : cephadm [INF] Removing smithi138:/var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T22:14:31.174 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:30 smithi031 bash[22709]: audit 2024-09-13T22:14:29.934986+0000 mon.a (mon.0) 947 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:31.174 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:30 smithi031 bash[22709]: audit 2024-09-13T22:14:29.940605+0000 mon.a (mon.0) 948 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:31.174 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:30 smithi031 bash[22709]: audit 2024-09-13T22:14:30.117170+0000 mon.a (mon.0) 949 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:31.174 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:30 smithi031 bash[22709]: audit 2024-09-13T22:14:30.122161+0000 mon.a (mon.0) 950 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:31.174 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:30 smithi031 bash[22709]: audit 2024-09-13T22:14:30.153671+0000 mon.a (mon.0) 951 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:31.174 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:30 smithi031 bash[22709]: audit 2024-09-13T22:14:30.159503+0000 mon.a (mon.0) 952 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:31.174 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:30 smithi031 bash[22709]: audit 2024-09-13T22:14:30.161948+0000 mon.a (mon.0) 953 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-13T22:14:31.174 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:30 smithi031 bash[22709]: audit 2024-09-13T22:14:30.163395+0000 mon.a (mon.0) 954 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-13T22:14:31.175 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:30 smithi031 bash[22709]: audit 2024-09-13T22:14:30.164675+0000 mon.a (mon.0) 955 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-13T22:14:31.175 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:30 smithi031 bash[22709]: audit 2024-09-13T22:14:30.165949+0000 mon.a (mon.0) 956 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]: dispatch 2024-09-13T22:14:31.175 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:31 smithi031 bash[22709]: debug 2024-09-13T22:14:31.170+0000 7fe22a9b5640 -1 mon.a@0(leader).osd e46 definitely_dead 0 2024-09-13T22:14:31.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:30 smithi096 bash[23620]: cephadm 2024-09-13T22:14:29.747888+0000 mgr.a (mgr.14150) 375 : cephadm [INF] Detected new or changed devices on smithi138 2024-09-13T22:14:31.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:30 smithi096 bash[23620]: audit 2024-09-13T22:14:29.756474+0000 mon.a (mon.0) 943 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:31.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:30 smithi096 bash[23620]: audit 2024-09-13T22:14:29.764327+0000 mon.a (mon.0) 944 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:31.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:30 smithi096 bash[23620]: audit 2024-09-13T22:14:29.765937+0000 mon.a (mon.0) 945 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:14:31.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:30 smithi096 bash[23620]: audit 2024-09-13T22:14:29.767828+0000 mon.a (mon.0) 946 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:14:31.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:30 smithi096 bash[23620]: cephadm 2024-09-13T22:14:29.770122+0000 mgr.a (mgr.14150) 376 : cephadm [INF] Updating smithi031:/etc/ceph/ceph.conf 2024-09-13T22:14:31.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:30 smithi096 bash[23620]: cephadm 2024-09-13T22:14:29.771013+0000 mgr.a (mgr.14150) 377 : cephadm [INF] Updating smithi096:/etc/ceph/ceph.conf 2024-09-13T22:14:31.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:30 smithi096 bash[23620]: cephadm 2024-09-13T22:14:29.772515+0000 mgr.a (mgr.14150) 378 : cephadm [INF] Removing smithi138:/var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T22:14:31.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:30 smithi096 bash[23620]: audit 2024-09-13T22:14:29.934986+0000 mon.a (mon.0) 947 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:31.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:30 smithi096 bash[23620]: audit 2024-09-13T22:14:29.940605+0000 mon.a (mon.0) 948 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:31.188 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:30 smithi096 bash[23620]: audit 2024-09-13T22:14:30.117170+0000 mon.a (mon.0) 949 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:31.188 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:30 smithi096 bash[23620]: audit 2024-09-13T22:14:30.122161+0000 mon.a (mon.0) 950 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:31.188 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:30 smithi096 bash[23620]: audit 2024-09-13T22:14:30.153671+0000 mon.a (mon.0) 951 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:31.188 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:30 smithi096 bash[23620]: audit 2024-09-13T22:14:30.159503+0000 mon.a (mon.0) 952 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:31.188 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:30 smithi096 bash[23620]: audit 2024-09-13T22:14:30.161948+0000 mon.a (mon.0) 953 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-13T22:14:31.188 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:30 smithi096 bash[23620]: audit 2024-09-13T22:14:30.163395+0000 mon.a (mon.0) 954 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-13T22:14:31.188 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:30 smithi096 bash[23620]: audit 2024-09-13T22:14:30.164675+0000 mon.a (mon.0) 955 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-13T22:14:31.188 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:30 smithi096 bash[23620]: audit 2024-09-13T22:14:30.165949+0000 mon.a (mon.0) 956 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]: dispatch 2024-09-13T22:14:31.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:31 smithi031 bash[22709]: cephadm 2024-09-13T22:14:29.837277+0000 mgr.a (mgr.14150) 379 : cephadm [INF] Removing smithi138:/etc/ceph/ceph.client.admin.keyring 2024-09-13T22:14:31.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:31 smithi031 bash[22709]: cephadm 2024-09-13T22:14:29.892711+0000 mgr.a (mgr.14150) 380 : cephadm [INF] Removing smithi138:/var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-13T22:14:31.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:31 smithi031 bash[22709]: cluster 2024-09-13T22:14:29.909073+0000 mgr.a (mgr.14150) 381 : cluster [DBG] pgmap v312: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:14:31.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:31 smithi031 bash[22709]: cephadm 2024-09-13T22:14:29.991740+0000 mgr.a (mgr.14150) 382 : cephadm [INF] Updating smithi031:/var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T22:14:31.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:31 smithi031 bash[22709]: cephadm 2024-09-13T22:14:30.011184+0000 mgr.a (mgr.14150) 383 : cephadm [INF] Updating smithi096:/var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T22:14:31.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:31 smithi031 bash[22709]: audit 2024-09-13T22:14:30.162133+0000 mgr.a (mgr.14150) 384 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-13T22:14:31.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:31 smithi031 bash[22709]: audit 2024-09-13T22:14:30.163533+0000 mgr.a (mgr.14150) 385 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-13T22:14:31.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:31 smithi031 bash[22709]: audit 2024-09-13T22:14:30.164858+0000 mgr.a (mgr.14150) 386 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-13T22:14:31.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:31 smithi031 bash[22709]: audit 2024-09-13T22:14:31.161719+0000 mon.a (mon.0) 957 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-09-13T22:14:31.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:31 smithi031 bash[22709]: cluster 2024-09-13T22:14:31.168521+0000 mon.a (mon.0) 958 : cluster [DBG] osdmap e46: 6 total, 6 up, 6 in 2024-09-13T22:14:31.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:31 smithi031 bash[22709]: audit 2024-09-13T22:14:31.170468+0000 mon.a (mon.0) 959 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-13T22:14:31.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:31 smithi031 bash[22709]: audit 2024-09-13T22:14:31.173172+0000 mon.a (mon.0) 960 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-13T22:14:31.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:31 smithi031 bash[22709]: audit 2024-09-13T22:14:31.175417+0000 mon.a (mon.0) 961 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["4"]}]: dispatch 2024-09-13T22:14:32.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:31 smithi096 bash[23620]: cephadm 2024-09-13T22:14:29.837277+0000 mgr.a (mgr.14150) 379 : cephadm [INF] Removing smithi138:/etc/ceph/ceph.client.admin.keyring 2024-09-13T22:14:32.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:31 smithi096 bash[23620]: cephadm 2024-09-13T22:14:29.892711+0000 mgr.a (mgr.14150) 380 : cephadm [INF] Removing smithi138:/var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-13T22:14:32.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:31 smithi096 bash[23620]: cluster 2024-09-13T22:14:29.909073+0000 mgr.a (mgr.14150) 381 : cluster [DBG] pgmap v312: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:14:32.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:31 smithi096 bash[23620]: cephadm 2024-09-13T22:14:29.991740+0000 mgr.a (mgr.14150) 382 : cephadm [INF] Updating smithi031:/var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T22:14:32.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:31 smithi096 bash[23620]: cephadm 2024-09-13T22:14:30.011184+0000 mgr.a (mgr.14150) 383 : cephadm [INF] Updating smithi096:/var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T22:14:32.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:31 smithi096 bash[23620]: audit 2024-09-13T22:14:30.162133+0000 mgr.a (mgr.14150) 384 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-13T22:14:32.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:31 smithi096 bash[23620]: audit 2024-09-13T22:14:30.163533+0000 mgr.a (mgr.14150) 385 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-13T22:14:32.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:31 smithi096 bash[23620]: audit 2024-09-13T22:14:30.164858+0000 mgr.a (mgr.14150) 386 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-13T22:14:32.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:31 smithi096 bash[23620]: audit 2024-09-13T22:14:31.161719+0000 mon.a (mon.0) 957 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-09-13T22:14:32.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:31 smithi096 bash[23620]: cluster 2024-09-13T22:14:31.168521+0000 mon.a (mon.0) 958 : cluster [DBG] osdmap e46: 6 total, 6 up, 6 in 2024-09-13T22:14:32.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:31 smithi096 bash[23620]: audit 2024-09-13T22:14:31.170468+0000 mon.a (mon.0) 959 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-13T22:14:32.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:31 smithi096 bash[23620]: audit 2024-09-13T22:14:31.173172+0000 mon.a (mon.0) 960 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-13T22:14:32.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:31 smithi096 bash[23620]: audit 2024-09-13T22:14:31.175417+0000 mon.a (mon.0) 961 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["4"]}]: dispatch 2024-09-13T22:14:33.075 INFO:journalctl@ceph.osd.4.smithi138.stdout:Sep 13 22:14:32 smithi138 systemd[1]: Stopping Ceph osd.4 for 89616338-721b-11ef-bceb-c7b262605968... 2024-09-13T22:14:33.075 INFO:journalctl@ceph.osd.4.smithi138.stdout:Sep 13 22:14:32 smithi138 bash[29483]: debug 2024-09-13T22:14:32.758+0000 7fa87f7b0640 -1 osd.4 47 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-13T22:14:33.075 INFO:journalctl@ceph.osd.4.smithi138.stdout:Sep 13 22:14:32 smithi138 bash[29483]: debug 2024-09-13T22:14:32.774+0000 7fa88499d640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-osd -n osd.4 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug (PID: 1) UID: 0 2024-09-13T22:14:33.075 INFO:journalctl@ceph.osd.4.smithi138.stdout:Sep 13 22:14:32 smithi138 bash[29483]: debug 2024-09-13T22:14:32.774+0000 7fa88499d640 -1 osd.4 47 *** Got signal Terminated *** 2024-09-13T22:14:33.075 INFO:journalctl@ceph.osd.4.smithi138.stdout:Sep 13 22:14:32 smithi138 bash[29483]: debug 2024-09-13T22:14:32.774+0000 7fa88499d640 -1 osd.4 47 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-13T22:14:33.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:32 smithi096 bash[23620]: cephadm 2024-09-13T22:14:31.169656+0000 mgr.a (mgr.14150) 387 : cephadm [INF] osd.5 weight is now 0.0 2024-09-13T22:14:33.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:32 smithi096 bash[23620]: audit 2024-09-13T22:14:31.170839+0000 mgr.a (mgr.14150) 388 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-13T22:14:33.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:32 smithi096 bash[23620]: audit 2024-09-13T22:14:31.173517+0000 mgr.a (mgr.14150) 389 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-13T22:14:33.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:32 smithi096 bash[23620]: cluster 2024-09-13T22:14:32.162073+0000 mon.a (mon.0) 962 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-13T22:14:33.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:32 smithi096 bash[23620]: audit 2024-09-13T22:14:32.164067+0000 mon.a (mon.0) 963 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-09-13T22:14:33.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:32 smithi096 bash[23620]: cluster 2024-09-13T22:14:32.167461+0000 mon.a (mon.0) 964 : cluster [DBG] osdmap e47: 6 total, 5 up, 6 in 2024-09-13T22:14:33.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:32 smithi096 bash[23620]: cluster 2024-09-13T22:14:32.265746+0000 mon.a (mon.0) 965 : cluster [INF] osd.4 marked itself dead as of e47 2024-09-13T22:14:33.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:32 smithi096 bash[23620]: cluster 2024-09-13T22:14:32.266515+0000 osd.4 (osd.4) 3 : cluster [WRN] Monitor daemon marked osd.4 down, but it is still running 2024-09-13T22:14:33.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:32 smithi096 bash[23620]: cluster 2024-09-13T22:14:32.266524+0000 osd.4 (osd.4) 4 : cluster [DBG] map e47 wrongly marked me down at e47 2024-09-13T22:14:33.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:32 smithi031 bash[22709]: cephadm 2024-09-13T22:14:31.169656+0000 mgr.a (mgr.14150) 387 : cephadm [INF] osd.5 weight is now 0.0 2024-09-13T22:14:33.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:32 smithi031 bash[22709]: audit 2024-09-13T22:14:31.170839+0000 mgr.a (mgr.14150) 388 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-13T22:14:33.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:32 smithi031 bash[22709]: audit 2024-09-13T22:14:31.173517+0000 mgr.a (mgr.14150) 389 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-13T22:14:33.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:32 smithi031 bash[22709]: cluster 2024-09-13T22:14:32.162073+0000 mon.a (mon.0) 962 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-13T22:14:33.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:32 smithi031 bash[22709]: audit 2024-09-13T22:14:32.164067+0000 mon.a (mon.0) 963 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-09-13T22:14:33.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:32 smithi031 bash[22709]: cluster 2024-09-13T22:14:32.167461+0000 mon.a (mon.0) 964 : cluster [DBG] osdmap e47: 6 total, 5 up, 6 in 2024-09-13T22:14:33.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:32 smithi031 bash[22709]: cluster 2024-09-13T22:14:32.265746+0000 mon.a (mon.0) 965 : cluster [INF] osd.4 marked itself dead as of e47 2024-09-13T22:14:33.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:32 smithi031 bash[22709]: cluster 2024-09-13T22:14:32.266515+0000 osd.4 (osd.4) 3 : cluster [WRN] Monitor daemon marked osd.4 down, but it is still running 2024-09-13T22:14:33.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:32 smithi031 bash[22709]: cluster 2024-09-13T22:14:32.266524+0000 osd.4 (osd.4) 4 : cluster [DBG] map e47 wrongly marked me down at e47 2024-09-13T22:14:34.074 INFO:journalctl@ceph.osd.4.smithi138.stdout:Sep 13 22:14:33 smithi138 bash[38172]: ceph-89616338-721b-11ef-bceb-c7b262605968-osd-4 2024-09-13T22:14:34.075 INFO:journalctl@ceph.osd.4.smithi138.stdout:Sep 13 22:14:34 smithi138 bash[38238]: Error response from daemon: No such container: ceph-89616338-721b-11ef-bceb-c7b262605968-osd-4 2024-09-13T22:14:34.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:33 smithi096 bash[23620]: cluster 2024-09-13T22:14:31.909629+0000 mgr.a (mgr.14150) 390 : cluster [DBG] pgmap v314: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:14:34.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:33 smithi096 bash[23620]: cephadm 2024-09-13T22:14:32.168686+0000 mgr.a (mgr.14150) 391 : cephadm [INF] osd.4 now down 2024-09-13T22:14:34.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:33 smithi096 bash[23620]: cephadm 2024-09-13T22:14:32.169066+0000 mgr.a (mgr.14150) 392 : cephadm [INF] Removing daemon osd.4 from smithi138 -- ports [] 2024-09-13T22:14:34.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:33 smithi096 bash[23620]: cluster 2024-09-13T22:14:33.164550+0000 mon.a (mon.0) 966 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-13T22:14:34.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:33 smithi096 bash[23620]: cluster 2024-09-13T22:14:33.164598+0000 mon.a (mon.0) 967 : cluster [INF] Cluster is now healthy 2024-09-13T22:14:34.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:33 smithi096 bash[23620]: cluster 2024-09-13T22:14:33.172165+0000 mon.a (mon.0) 968 : cluster [INF] osd.4 [v2:172.21.15.138:6800/2288005517,v1:172.21.15.138:6801/2288005517] boot 2024-09-13T22:14:34.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:33 smithi096 bash[23620]: cluster 2024-09-13T22:14:33.172253+0000 mon.a (mon.0) 969 : cluster [DBG] osdmap e48: 6 total, 6 up, 6 in 2024-09-13T22:14:34.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:33 smithi096 bash[23620]: audit 2024-09-13T22:14:33.172513+0000 mon.a (mon.0) 970 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-13T22:14:34.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:33 smithi096 bash[23620]: cluster 2024-09-13T22:14:33.319207+0000 mon.a (mon.0) 971 : cluster [DBG] osd.4 reported immediately failed by osd.5 2024-09-13T22:14:34.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:33 smithi096 bash[23620]: cluster 2024-09-13T22:14:33.319258+0000 mon.a (mon.0) 972 : cluster [INF] osd.4 failed (root=default,host=smithi138) (connection refused reported by osd.5) 2024-09-13T22:14:34.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:33 smithi096 bash[23620]: cluster 2024-09-13T22:14:33.319560+0000 mon.a (mon.0) 973 : cluster [DBG] osd.4 reported immediately failed by osd.5 2024-09-13T22:14:34.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:33 smithi096 bash[23620]: cluster 2024-09-13T22:14:33.319696+0000 mon.a (mon.0) 974 : cluster [DBG] osd.4 reported immediately failed by osd.3 2024-09-13T22:14:34.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:33 smithi096 bash[23620]: cluster 2024-09-13T22:14:33.319924+0000 mon.a (mon.0) 975 : cluster [DBG] osd.4 reported immediately failed by osd.2 2024-09-13T22:14:34.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:33 smithi096 bash[23620]: cluster 2024-09-13T22:14:33.320026+0000 mon.a (mon.0) 976 : cluster [DBG] osd.4 reported immediately failed by osd.3 2024-09-13T22:14:34.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:33 smithi096 bash[23620]: cluster 2024-09-13T22:14:33.320244+0000 mon.a (mon.0) 977 : cluster [DBG] osd.4 reported immediately failed by osd.2 2024-09-13T22:14:34.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:33 smithi096 bash[23620]: cluster 2024-09-13T22:14:33.363480+0000 mon.a (mon.0) 978 : cluster [DBG] osd.4 reported immediately failed by osd.0 2024-09-13T22:14:34.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:33 smithi096 bash[23620]: cluster 2024-09-13T22:14:33.363599+0000 mon.a (mon.0) 979 : cluster [DBG] osd.4 reported immediately failed by osd.0 2024-09-13T22:14:34.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:33 smithi096 bash[23620]: cluster 2024-09-13T22:14:33.521750+0000 mon.a (mon.0) 980 : cluster [DBG] osd.4 reported immediately failed by osd.3 2024-09-13T22:14:34.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:33 smithi096 bash[23620]: cluster 2024-09-13T22:14:33.521883+0000 mon.a (mon.0) 981 : cluster [DBG] osd.4 reported immediately failed by osd.3 2024-09-13T22:14:34.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:33 smithi096 bash[23620]: cluster 2024-09-13T22:14:33.522114+0000 mon.a (mon.0) 982 : cluster [DBG] osd.4 reported immediately failed by osd.2 2024-09-13T22:14:34.187 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:33 smithi096 bash[23620]: cluster 2024-09-13T22:14:33.522218+0000 mon.a (mon.0) 983 : cluster [DBG] osd.4 reported immediately failed by osd.5 2024-09-13T22:14:34.188 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:33 smithi096 bash[23620]: cluster 2024-09-13T22:14:33.522463+0000 mon.a (mon.0) 984 : cluster [DBG] osd.4 reported immediately failed by osd.2 2024-09-13T22:14:34.188 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:33 smithi096 bash[23620]: cluster 2024-09-13T22:14:33.522568+0000 mon.a (mon.0) 985 : cluster [DBG] osd.4 reported immediately failed by osd.5 2024-09-13T22:14:34.188 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:33 smithi096 bash[23620]: cluster 2024-09-13T22:14:33.566974+0000 mon.a (mon.0) 986 : cluster [DBG] osd.4 reported immediately failed by osd.0 2024-09-13T22:14:34.188 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:33 smithi096 bash[23620]: cluster 2024-09-13T22:14:33.567094+0000 mon.a (mon.0) 987 : cluster [DBG] osd.4 reported immediately failed by osd.0 2024-09-13T22:14:34.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:33 smithi031 bash[22709]: cluster 2024-09-13T22:14:31.909629+0000 mgr.a (mgr.14150) 390 : cluster [DBG] pgmap v314: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:14:34.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:33 smithi031 bash[22709]: cephadm 2024-09-13T22:14:32.168686+0000 mgr.a (mgr.14150) 391 : cephadm [INF] osd.4 now down 2024-09-13T22:14:34.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:33 smithi031 bash[22709]: cephadm 2024-09-13T22:14:32.169066+0000 mgr.a (mgr.14150) 392 : cephadm [INF] Removing daemon osd.4 from smithi138 -- ports [] 2024-09-13T22:14:34.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:33 smithi031 bash[22709]: cluster 2024-09-13T22:14:33.164550+0000 mon.a (mon.0) 966 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-13T22:14:34.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:33 smithi031 bash[22709]: cluster 2024-09-13T22:14:33.164598+0000 mon.a (mon.0) 967 : cluster [INF] Cluster is now healthy 2024-09-13T22:14:34.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:33 smithi031 bash[22709]: cluster 2024-09-13T22:14:33.172165+0000 mon.a (mon.0) 968 : cluster [INF] osd.4 [v2:172.21.15.138:6800/2288005517,v1:172.21.15.138:6801/2288005517] boot 2024-09-13T22:14:34.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:33 smithi031 bash[22709]: cluster 2024-09-13T22:14:33.172253+0000 mon.a (mon.0) 969 : cluster [DBG] osdmap e48: 6 total, 6 up, 6 in 2024-09-13T22:14:34.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:33 smithi031 bash[22709]: audit 2024-09-13T22:14:33.172513+0000 mon.a (mon.0) 970 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-13T22:14:34.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:33 smithi031 bash[22709]: cluster 2024-09-13T22:14:33.319207+0000 mon.a (mon.0) 971 : cluster [DBG] osd.4 reported immediately failed by osd.5 2024-09-13T22:14:34.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:33 smithi031 bash[22709]: cluster 2024-09-13T22:14:33.319258+0000 mon.a (mon.0) 972 : cluster [INF] osd.4 failed (root=default,host=smithi138) (connection refused reported by osd.5) 2024-09-13T22:14:34.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:33 smithi031 bash[22709]: cluster 2024-09-13T22:14:33.319560+0000 mon.a (mon.0) 973 : cluster [DBG] osd.4 reported immediately failed by osd.5 2024-09-13T22:14:34.221 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:33 smithi031 bash[22709]: cluster 2024-09-13T22:14:33.319696+0000 mon.a (mon.0) 974 : cluster [DBG] osd.4 reported immediately failed by osd.3 2024-09-13T22:14:34.222 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:33 smithi031 bash[22709]: cluster 2024-09-13T22:14:33.319924+0000 mon.a (mon.0) 975 : cluster [DBG] osd.4 reported immediately failed by osd.2 2024-09-13T22:14:34.222 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:33 smithi031 bash[22709]: cluster 2024-09-13T22:14:33.320026+0000 mon.a (mon.0) 976 : cluster [DBG] osd.4 reported immediately failed by osd.3 2024-09-13T22:14:34.222 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:33 smithi031 bash[22709]: cluster 2024-09-13T22:14:33.320244+0000 mon.a (mon.0) 977 : cluster [DBG] osd.4 reported immediately failed by osd.2 2024-09-13T22:14:34.222 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:33 smithi031 bash[22709]: cluster 2024-09-13T22:14:33.363480+0000 mon.a (mon.0) 978 : cluster [DBG] osd.4 reported immediately failed by osd.0 2024-09-13T22:14:34.222 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:33 smithi031 bash[22709]: cluster 2024-09-13T22:14:33.363599+0000 mon.a (mon.0) 979 : cluster [DBG] osd.4 reported immediately failed by osd.0 2024-09-13T22:14:34.222 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:33 smithi031 bash[22709]: cluster 2024-09-13T22:14:33.521750+0000 mon.a (mon.0) 980 : cluster [DBG] osd.4 reported immediately failed by osd.3 2024-09-13T22:14:34.222 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:33 smithi031 bash[22709]: cluster 2024-09-13T22:14:33.521883+0000 mon.a (mon.0) 981 : cluster [DBG] osd.4 reported immediately failed by osd.3 2024-09-13T22:14:34.222 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:33 smithi031 bash[22709]: cluster 2024-09-13T22:14:33.522114+0000 mon.a (mon.0) 982 : cluster [DBG] osd.4 reported immediately failed by osd.2 2024-09-13T22:14:34.222 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:33 smithi031 bash[22709]: cluster 2024-09-13T22:14:33.522218+0000 mon.a (mon.0) 983 : cluster [DBG] osd.4 reported immediately failed by osd.5 2024-09-13T22:14:34.222 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:33 smithi031 bash[22709]: cluster 2024-09-13T22:14:33.522463+0000 mon.a (mon.0) 984 : cluster [DBG] osd.4 reported immediately failed by osd.2 2024-09-13T22:14:34.222 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:33 smithi031 bash[22709]: cluster 2024-09-13T22:14:33.522568+0000 mon.a (mon.0) 985 : cluster [DBG] osd.4 reported immediately failed by osd.5 2024-09-13T22:14:34.222 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:33 smithi031 bash[22709]: cluster 2024-09-13T22:14:33.566974+0000 mon.a (mon.0) 986 : cluster [DBG] osd.4 reported immediately failed by osd.0 2024-09-13T22:14:34.222 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:33 smithi031 bash[22709]: cluster 2024-09-13T22:14:33.567094+0000 mon.a (mon.0) 987 : cluster [DBG] osd.4 reported immediately failed by osd.0 2024-09-13T22:14:35.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:34 smithi096 bash[23620]: cluster 2024-09-13T22:14:33.925766+0000 mon.a (mon.0) 988 : cluster [DBG] osd.4 reported immediately failed by osd.2 2024-09-13T22:14:35.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:34 smithi096 bash[23620]: cluster 2024-09-13T22:14:33.926172+0000 mon.a (mon.0) 989 : cluster [DBG] osd.4 reported immediately failed by osd.3 2024-09-13T22:14:35.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:34 smithi096 bash[23620]: cluster 2024-09-13T22:14:33.926409+0000 mon.a (mon.0) 990 : cluster [DBG] osd.4 reported immediately failed by osd.2 2024-09-13T22:14:35.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:34 smithi096 bash[23620]: cluster 2024-09-13T22:14:33.926868+0000 mon.a (mon.0) 991 : cluster [DBG] osd.4 reported immediately failed by osd.5 2024-09-13T22:14:35.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:34 smithi096 bash[23620]: cluster 2024-09-13T22:14:33.927068+0000 mon.a (mon.0) 992 : cluster [DBG] osd.4 reported immediately failed by osd.3 2024-09-13T22:14:35.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:34 smithi096 bash[23620]: cluster 2024-09-13T22:14:33.927559+0000 mon.a (mon.0) 993 : cluster [DBG] osd.4 reported immediately failed by osd.5 2024-09-13T22:14:35.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:34 smithi096 bash[23620]: cluster 2024-09-13T22:14:33.971051+0000 mon.a (mon.0) 994 : cluster [DBG] osd.4 reported immediately failed by osd.0 2024-09-13T22:14:35.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:34 smithi096 bash[23620]: cluster 2024-09-13T22:14:33.971275+0000 mon.a (mon.0) 995 : cluster [DBG] osd.4 reported immediately failed by osd.0 2024-09-13T22:14:35.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:34 smithi096 bash[23620]: cluster 2024-09-13T22:14:34.167205+0000 mon.a (mon.0) 996 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-13T22:14:35.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:34 smithi096 bash[23620]: cluster 2024-09-13T22:14:34.174233+0000 mon.a (mon.0) 997 : cluster [DBG] osdmap e49: 6 total, 5 up, 6 in 2024-09-13T22:14:35.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:34 smithi031 bash[22709]: cluster 2024-09-13T22:14:33.925766+0000 mon.a (mon.0) 988 : cluster [DBG] osd.4 reported immediately failed by osd.2 2024-09-13T22:14:35.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:34 smithi031 bash[22709]: cluster 2024-09-13T22:14:33.926172+0000 mon.a (mon.0) 989 : cluster [DBG] osd.4 reported immediately failed by osd.3 2024-09-13T22:14:35.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:34 smithi031 bash[22709]: cluster 2024-09-13T22:14:33.926409+0000 mon.a (mon.0) 990 : cluster [DBG] osd.4 reported immediately failed by osd.2 2024-09-13T22:14:35.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:34 smithi031 bash[22709]: cluster 2024-09-13T22:14:33.926868+0000 mon.a (mon.0) 991 : cluster [DBG] osd.4 reported immediately failed by osd.5 2024-09-13T22:14:35.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:34 smithi031 bash[22709]: cluster 2024-09-13T22:14:33.927068+0000 mon.a (mon.0) 992 : cluster [DBG] osd.4 reported immediately failed by osd.3 2024-09-13T22:14:35.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:34 smithi031 bash[22709]: cluster 2024-09-13T22:14:33.927559+0000 mon.a (mon.0) 993 : cluster [DBG] osd.4 reported immediately failed by osd.5 2024-09-13T22:14:35.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:34 smithi031 bash[22709]: cluster 2024-09-13T22:14:33.971051+0000 mon.a (mon.0) 994 : cluster [DBG] osd.4 reported immediately failed by osd.0 2024-09-13T22:14:35.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:34 smithi031 bash[22709]: cluster 2024-09-13T22:14:33.971275+0000 mon.a (mon.0) 995 : cluster [DBG] osd.4 reported immediately failed by osd.0 2024-09-13T22:14:35.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:34 smithi031 bash[22709]: cluster 2024-09-13T22:14:34.167205+0000 mon.a (mon.0) 996 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-13T22:14:35.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:34 smithi031 bash[22709]: cluster 2024-09-13T22:14:34.174233+0000 mon.a (mon.0) 997 : cluster [DBG] osdmap e49: 6 total, 5 up, 6 in 2024-09-13T22:14:36.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:35 smithi096 bash[23620]: cluster 2024-09-13T22:14:33.910218+0000 mgr.a (mgr.14150) 393 : cluster [DBG] pgmap v317: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:14:36.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:35 smithi096 bash[23620]: cluster 2024-09-13T22:14:35.179653+0000 mon.a (mon.0) 998 : cluster [DBG] osdmap e50: 6 total, 5 up, 6 in 2024-09-13T22:14:36.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:35 smithi031 bash[22709]: cluster 2024-09-13T22:14:33.910218+0000 mgr.a (mgr.14150) 393 : cluster [DBG] pgmap v317: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:14:36.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:35 smithi031 bash[22709]: cluster 2024-09-13T22:14:35.179653+0000 mon.a (mon.0) 998 : cluster [DBG] osdmap e50: 6 total, 5 up, 6 in 2024-09-13T22:14:36.687 INFO:journalctl@ceph.osd.5.smithi138.stdout:Sep 13 22:14:36 smithi138 systemd[1]: /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-13T22:14:36.687 INFO:journalctl@ceph.osd.4.smithi138.stdout:Sep 13 22:14:36 smithi138 systemd[1]: ceph-89616338-721b-11ef-bceb-c7b262605968@osd.4.service: Deactivated successfully. 2024-09-13T22:14:36.687 INFO:journalctl@ceph.osd.4.smithi138.stdout:Sep 13 22:14:36 smithi138 systemd[1]: Stopped Ceph osd.4 for 89616338-721b-11ef-bceb-c7b262605968. 2024-09-13T22:14:36.687 INFO:journalctl@ceph.osd.4.smithi138.stdout:Sep 13 22:14:36 smithi138 systemd[1]: /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-13T22:14:37.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:36 smithi096 bash[23620]: audit 2024-09-13T22:14:36.741462+0000 mon.a (mon.0) 999 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.4"}]: dispatch 2024-09-13T22:14:37.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:36 smithi096 bash[23620]: audit 2024-09-13T22:14:36.744678+0000 mon.a (mon.0) 1000 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-09-13T22:14:37.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:36 smithi096 bash[23620]: audit 2024-09-13T22:14:36.750715+0000 mon.a (mon.0) 1001 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]: dispatch 2024-09-13T22:14:37.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:36 smithi096 bash[23620]: cluster 2024-09-13T22:14:36.752203+0000 mon.a (mon.0) 1002 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-13T22:14:37.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:36 smithi096 bash[23620]: cluster 2024-09-13T22:14:36.752266+0000 mon.a (mon.0) 1003 : cluster [INF] Cluster is now healthy 2024-09-13T22:14:37.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:36 smithi096 bash[23620]: audit 2024-09-13T22:14:36.755686+0000 mon.a (mon.0) 1004 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-09-13T22:14:37.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:36 smithi096 bash[23620]: cluster 2024-09-13T22:14:36.762855+0000 mon.a (mon.0) 1005 : cluster [DBG] osdmap e51: 5 total, 5 up, 5 in 2024-09-13T22:14:37.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:36 smithi031 bash[22709]: audit 2024-09-13T22:14:36.741462+0000 mon.a (mon.0) 999 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.4"}]: dispatch 2024-09-13T22:14:37.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:36 smithi031 bash[22709]: audit 2024-09-13T22:14:36.744678+0000 mon.a (mon.0) 1000 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-09-13T22:14:37.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:36 smithi031 bash[22709]: audit 2024-09-13T22:14:36.750715+0000 mon.a (mon.0) 1001 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]: dispatch 2024-09-13T22:14:37.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:36 smithi031 bash[22709]: cluster 2024-09-13T22:14:36.752203+0000 mon.a (mon.0) 1002 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-13T22:14:37.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:36 smithi031 bash[22709]: cluster 2024-09-13T22:14:36.752266+0000 mon.a (mon.0) 1003 : cluster [INF] Cluster is now healthy 2024-09-13T22:14:37.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:36 smithi031 bash[22709]: audit 2024-09-13T22:14:36.755686+0000 mon.a (mon.0) 1004 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-09-13T22:14:37.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:36 smithi031 bash[22709]: cluster 2024-09-13T22:14:36.762855+0000 mon.a (mon.0) 1005 : cluster [DBG] osdmap e51: 5 total, 5 up, 5 in 2024-09-13T22:14:38.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:37 smithi096 bash[23620]: cluster 2024-09-13T22:14:35.910949+0000 mgr.a (mgr.14150) 394 : cluster [DBG] pgmap v320: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:14:38.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:37 smithi096 bash[23620]: cephadm 2024-09-13T22:14:36.740714+0000 mgr.a (mgr.14150) 395 : cephadm [INF] Removing key for osd.4 2024-09-13T22:14:38.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:37 smithi096 bash[23620]: cephadm 2024-09-13T22:14:36.749977+0000 mgr.a (mgr.14150) 396 : cephadm [INF] Successfully removed osd.4 on smithi138 2024-09-13T22:14:38.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:37 smithi096 bash[23620]: cephadm 2024-09-13T22:14:36.764292+0000 mgr.a (mgr.14150) 397 : cephadm [INF] Successfully purged osd.4 on smithi138 2024-09-13T22:14:38.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:37 smithi096 bash[23620]: cephadm 2024-09-13T22:14:36.764463+0000 mgr.a (mgr.14150) 398 : cephadm [INF] Zapping devices for osd.4 on smithi138 2024-09-13T22:14:38.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:37 smithi096 bash[23620]: cluster 2024-09-13T22:14:37.765147+0000 mon.a (mon.0) 1006 : cluster [DBG] osdmap e52: 5 total, 5 up, 5 in 2024-09-13T22:14:38.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:37 smithi031 bash[22709]: cluster 2024-09-13T22:14:35.910949+0000 mgr.a (mgr.14150) 394 : cluster [DBG] pgmap v320: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-13T22:14:38.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:37 smithi031 bash[22709]: cephadm 2024-09-13T22:14:36.740714+0000 mgr.a (mgr.14150) 395 : cephadm [INF] Removing key for osd.4 2024-09-13T22:14:38.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:37 smithi031 bash[22709]: cephadm 2024-09-13T22:14:36.749977+0000 mgr.a (mgr.14150) 396 : cephadm [INF] Successfully removed osd.4 on smithi138 2024-09-13T22:14:38.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:37 smithi031 bash[22709]: cephadm 2024-09-13T22:14:36.764292+0000 mgr.a (mgr.14150) 397 : cephadm [INF] Successfully purged osd.4 on smithi138 2024-09-13T22:14:38.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:37 smithi031 bash[22709]: cephadm 2024-09-13T22:14:36.764463+0000 mgr.a (mgr.14150) 398 : cephadm [INF] Zapping devices for osd.4 on smithi138 2024-09-13T22:14:38.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:37 smithi031 bash[22709]: cluster 2024-09-13T22:14:37.765147+0000 mon.a (mon.0) 1006 : cluster [DBG] osdmap e52: 5 total, 5 up, 5 in 2024-09-13T22:14:40.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:39 smithi096 bash[23620]: cluster 2024-09-13T22:14:37.911634+0000 mgr.a (mgr.14150) 399 : cluster [DBG] pgmap v323: 1 pgs: 1 active+clean+remapped; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-13T22:14:40.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:39 smithi096 bash[23620]: cluster 2024-09-13T22:14:38.765083+0000 mon.a (mon.0) 1007 : cluster [DBG] osdmap e53: 5 total, 5 up, 5 in 2024-09-13T22:14:40.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:39 smithi031 bash[22709]: cluster 2024-09-13T22:14:37.911634+0000 mgr.a (mgr.14150) 399 : cluster [DBG] pgmap v323: 1 pgs: 1 active+clean+remapped; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-13T22:14:40.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:39 smithi031 bash[22709]: cluster 2024-09-13T22:14:38.765083+0000 mon.a (mon.0) 1007 : cluster [DBG] osdmap e53: 5 total, 5 up, 5 in 2024-09-13T22:14:41.073 INFO:teuthology.orchestra.run.smithi031.stderr:++ ceph orch ps --hostname smithi138 2024-09-13T22:14:41.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:40 smithi096 bash[23620]: cluster 2024-09-13T22:14:39.814488+0000 mon.a (mon.0) 1008 : cluster [DBG] osdmap e54: 5 total, 5 up, 5 in 2024-09-13T22:14:41.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:40 smithi031 bash[22709]: cluster 2024-09-13T22:14:39.814488+0000 mon.a (mon.0) 1008 : cluster [DBG] osdmap e54: 5 total, 5 up, 5 in 2024-09-13T22:14:41.393 INFO:teuthology.orchestra.run.smithi031.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-13T22:14:41.393 INFO:teuthology.orchestra.run.smithi031.stderr:agent.smithi138 smithi138 running 18s ago 8m - - 2024-09-13T22:14:41.394 INFO:teuthology.orchestra.run.smithi031.stderr:osd.5 smithi138 running (2m) 18s ago 2m 37.2M 9.93G 19.1.1-324-gecab7be5 0652ff2b5d78 b0e4e642d297 ' 2024-09-13T22:14:41.394 INFO:teuthology.orchestra.run.smithi031.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-13T22:14:41.394 INFO:teuthology.orchestra.run.smithi031.stderr:agent.smithi138 smithi138 running 18s ago 8m - - 2024-09-13T22:14:41.394 INFO:teuthology.orchestra.run.smithi031.stderr:osd.5 smithi138 running (2m) 18s ago 2m 37.2M 9.93G 19.1.1-324-gecab7be5 0652ff2b5d78 b0e4e642d297 ' '!=' 'No daemons reported' ']' 2024-09-13T22:14:41.394 INFO:teuthology.orchestra.run.smithi031.stderr:+ sleep 15 2024-09-13T22:14:42.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:41 smithi096 bash[23620]: cluster 2024-09-13T22:14:39.912312+0000 mgr.a (mgr.14150) 400 : cluster [DBG] pgmap v326: 1 pgs: 1 active+clean+remapped; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-13T22:14:42.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:41 smithi096 bash[23620]: cluster 2024-09-13T22:14:40.823460+0000 mon.a (mon.0) 1009 : cluster [DBG] osdmap e55: 5 total, 5 up, 5 in 2024-09-13T22:14:42.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:41 smithi031 bash[22709]: cluster 2024-09-13T22:14:39.912312+0000 mgr.a (mgr.14150) 400 : cluster [DBG] pgmap v326: 1 pgs: 1 active+clean+remapped; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-13T22:14:42.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:41 smithi031 bash[22709]: cluster 2024-09-13T22:14:40.823460+0000 mon.a (mon.0) 1009 : cluster [DBG] osdmap e55: 5 total, 5 up, 5 in 2024-09-13T22:14:43.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:42 smithi096 bash[23620]: audit 2024-09-13T22:14:41.376038+0000 mgr.a (mgr.14150) 401 : audit [DBG] from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi138", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:14:43.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:42 smithi096 bash[23620]: audit 2024-09-13T22:14:41.904612+0000 mon.a (mon.0) 1010 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:43.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:42 smithi096 bash[23620]: audit 2024-09-13T22:14:41.912293+0000 mon.a (mon.0) 1011 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:43.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:42 smithi096 bash[23620]: audit 2024-09-13T22:14:41.920871+0000 mon.a (mon.0) 1012 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:43.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:42 smithi031 bash[22709]: audit 2024-09-13T22:14:41.376038+0000 mgr.a (mgr.14150) 401 : audit [DBG] from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi138", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:14:43.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:42 smithi031 bash[22709]: audit 2024-09-13T22:14:41.904612+0000 mon.a (mon.0) 1010 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:43.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:42 smithi031 bash[22709]: audit 2024-09-13T22:14:41.912293+0000 mon.a (mon.0) 1011 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:43.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:42 smithi031 bash[22709]: audit 2024-09-13T22:14:41.920871+0000 mon.a (mon.0) 1012 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:43.935 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:43 smithi096 bash[23620]: cluster 2024-09-13T22:14:41.912967+0000 mgr.a (mgr.14150) 402 : cluster [DBG] pgmap v328: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 139 KiB/s, 0 objects/s recovering 2024-09-13T22:14:43.935 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:43 smithi096 bash[23620]: audit 2024-09-13T22:14:43.251210+0000 mon.a (mon.0) 1013 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:43.935 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:43 smithi096 bash[23620]: audit 2024-09-13T22:14:43.258600+0000 mon.a (mon.0) 1014 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:43.935 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:43 smithi096 bash[23620]: audit 2024-09-13T22:14:43.267670+0000 mon.a (mon.0) 1015 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:44.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:43 smithi031 bash[22709]: cluster 2024-09-13T22:14:41.912967+0000 mgr.a (mgr.14150) 402 : cluster [DBG] pgmap v328: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 139 KiB/s, 0 objects/s recovering 2024-09-13T22:14:44.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:43 smithi031 bash[22709]: audit 2024-09-13T22:14:43.251210+0000 mon.a (mon.0) 1013 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:44.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:43 smithi031 bash[22709]: audit 2024-09-13T22:14:43.258600+0000 mon.a (mon.0) 1014 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:44.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:43 smithi031 bash[22709]: audit 2024-09-13T22:14:43.267670+0000 mon.a (mon.0) 1015 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:45.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:45 smithi096 bash[23620]: cluster 2024-09-13T22:14:43.913557+0000 mgr.a (mgr.14150) 403 : cluster [DBG] pgmap v329: 1 pgs: 1 active+clean; 577 KiB data, 145 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-13T22:14:45.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:45 smithi096 bash[23620]: audit 2024-09-13T22:14:44.119758+0000 mon.a (mon.0) 1016 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:45.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:45 smithi096 bash[23620]: audit 2024-09-13T22:14:44.129409+0000 mon.a (mon.0) 1017 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:45.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:45 smithi096 bash[23620]: audit 2024-09-13T22:14:44.138994+0000 mon.a (mon.0) 1018 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:45.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:45 smithi031 bash[22709]: cluster 2024-09-13T22:14:43.913557+0000 mgr.a (mgr.14150) 403 : cluster [DBG] pgmap v329: 1 pgs: 1 active+clean; 577 KiB data, 145 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-13T22:14:45.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:45 smithi031 bash[22709]: audit 2024-09-13T22:14:44.119758+0000 mon.a (mon.0) 1016 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:45.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:45 smithi031 bash[22709]: audit 2024-09-13T22:14:44.129409+0000 mon.a (mon.0) 1017 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:45.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:45 smithi031 bash[22709]: audit 2024-09-13T22:14:44.138994+0000 mon.a (mon.0) 1018 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:45.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:45 smithi031 bash[22709]: debug 2024-09-13T22:14:45.262+0000 7fe22a9b5640 -1 mon.a@0(leader).osd e55 definitely_dead 0 2024-09-13T22:14:46.435 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:46 smithi096 bash[23620]: cephadm 2024-09-13T22:14:45.261266+0000 mgr.a (mgr.14150) 404 : cephadm [INF] Successfully zapped devices for osd.4 on smithi138 2024-09-13T22:14:46.435 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:46 smithi096 bash[23620]: audit 2024-09-13T22:14:45.262037+0000 mon.a (mon.0) 1019 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-13T22:14:46.435 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:46 smithi096 bash[23620]: audit 2024-09-13T22:14:45.262510+0000 mgr.a (mgr.14150) 405 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-13T22:14:46.435 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:46 smithi096 bash[23620]: audit 2024-09-13T22:14:45.265103+0000 mon.a (mon.0) 1020 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-13T22:14:46.435 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:46 smithi096 bash[23620]: audit 2024-09-13T22:14:45.265455+0000 mgr.a (mgr.14150) 406 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-13T22:14:46.435 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:46 smithi096 bash[23620]: audit 2024-09-13T22:14:45.267632+0000 mon.a (mon.0) 1021 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["5"]}]: dispatch 2024-09-13T22:14:46.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:46 smithi031 bash[22709]: cephadm 2024-09-13T22:14:45.261266+0000 mgr.a (mgr.14150) 404 : cephadm [INF] Successfully zapped devices for osd.4 on smithi138 2024-09-13T22:14:46.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:46 smithi031 bash[22709]: audit 2024-09-13T22:14:45.262037+0000 mon.a (mon.0) 1019 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-13T22:14:46.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:46 smithi031 bash[22709]: audit 2024-09-13T22:14:45.262510+0000 mgr.a (mgr.14150) 405 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-13T22:14:46.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:46 smithi031 bash[22709]: audit 2024-09-13T22:14:45.265103+0000 mon.a (mon.0) 1020 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-13T22:14:46.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:46 smithi031 bash[22709]: audit 2024-09-13T22:14:45.265455+0000 mgr.a (mgr.14150) 406 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-13T22:14:46.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:46 smithi031 bash[22709]: audit 2024-09-13T22:14:45.267632+0000 mon.a (mon.0) 1021 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["5"]}]: dispatch 2024-09-13T22:14:47.074 INFO:journalctl@ceph.osd.5.smithi138.stdout:Sep 13 22:14:46 smithi138 systemd[1]: Stopping Ceph osd.5 for 89616338-721b-11ef-bceb-c7b262605968... 2024-09-13T22:14:47.074 INFO:journalctl@ceph.osd.5.smithi138.stdout:Sep 13 22:14:46 smithi138 bash[33288]: debug 2024-09-13T22:14:46.762+0000 7f5c7008e640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-osd -n osd.5 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug (PID: 1) UID: 0 2024-09-13T22:14:47.074 INFO:journalctl@ceph.osd.5.smithi138.stdout:Sep 13 22:14:46 smithi138 bash[33288]: debug 2024-09-13T22:14:46.762+0000 7f5c7008e640 -1 osd.5 55 *** Got signal Terminated *** 2024-09-13T22:14:47.074 INFO:journalctl@ceph.osd.5.smithi138.stdout:Sep 13 22:14:46 smithi138 bash[33288]: debug 2024-09-13T22:14:46.762+0000 7f5c7008e640 -1 osd.5 55 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-13T22:14:47.435 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:47 smithi096 bash[23620]: cluster 2024-09-13T22:14:45.914180+0000 mgr.a (mgr.14150) 407 : cluster [DBG] pgmap v330: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 81 KiB/s, 0 objects/s recovering 2024-09-13T22:14:47.435 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:47 smithi096 bash[23620]: cluster 2024-09-13T22:14:46.117050+0000 mon.a (mon.0) 1022 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-13T22:14:47.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:47 smithi096 bash[23620]: cluster 2024-09-13T22:14:46.117110+0000 mon.a (mon.0) 1023 : cluster [WRN] Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-09-13T22:14:47.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:47 smithi096 bash[23620]: audit 2024-09-13T22:14:46.125614+0000 mon.a (mon.0) 1024 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-09-13T22:14:47.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:47 smithi096 bash[23620]: cluster 2024-09-13T22:14:46.131855+0000 mon.a (mon.0) 1025 : cluster [DBG] osdmap e56: 5 total, 4 up, 5 in 2024-09-13T22:14:47.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:47 smithi096 bash[23620]: cephadm 2024-09-13T22:14:46.133153+0000 mgr.a (mgr.14150) 408 : cephadm [INF] osd.5 now down 2024-09-13T22:14:47.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:47 smithi096 bash[23620]: cephadm 2024-09-13T22:14:46.133688+0000 mgr.a (mgr.14150) 409 : cephadm [INF] Removing daemon osd.5 from smithi138 -- ports [] 2024-09-13T22:14:47.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:47 smithi096 bash[23620]: audit 2024-09-13T22:14:47.115804+0000 mon.a (mon.0) 1026 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:47.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:47 smithi096 bash[23620]: audit 2024-09-13T22:14:47.122963+0000 mon.a (mon.0) 1027 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:47.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:47 smithi031 bash[22709]: cluster 2024-09-13T22:14:45.914180+0000 mgr.a (mgr.14150) 407 : cluster [DBG] pgmap v330: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 81 KiB/s, 0 objects/s recovering 2024-09-13T22:14:47.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:47 smithi031 bash[22709]: cluster 2024-09-13T22:14:46.117050+0000 mon.a (mon.0) 1022 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-13T22:14:47.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:47 smithi031 bash[22709]: cluster 2024-09-13T22:14:46.117110+0000 mon.a (mon.0) 1023 : cluster [WRN] Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-09-13T22:14:47.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:47 smithi031 bash[22709]: audit 2024-09-13T22:14:46.125614+0000 mon.a (mon.0) 1024 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-09-13T22:14:47.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:47 smithi031 bash[22709]: cluster 2024-09-13T22:14:46.131855+0000 mon.a (mon.0) 1025 : cluster [DBG] osdmap e56: 5 total, 4 up, 5 in 2024-09-13T22:14:47.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:47 smithi031 bash[22709]: cephadm 2024-09-13T22:14:46.133153+0000 mgr.a (mgr.14150) 408 : cephadm [INF] osd.5 now down 2024-09-13T22:14:47.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:47 smithi031 bash[22709]: cephadm 2024-09-13T22:14:46.133688+0000 mgr.a (mgr.14150) 409 : cephadm [INF] Removing daemon osd.5 from smithi138 -- ports [] 2024-09-13T22:14:47.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:47 smithi031 bash[22709]: audit 2024-09-13T22:14:47.115804+0000 mon.a (mon.0) 1026 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:47.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:47 smithi031 bash[22709]: audit 2024-09-13T22:14:47.122963+0000 mon.a (mon.0) 1027 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:47.824 INFO:journalctl@ceph.osd.5.smithi138.stdout:Sep 13 22:14:47 smithi138 bash[38856]: ceph-89616338-721b-11ef-bceb-c7b262605968-osd-5 2024-09-13T22:14:48.324 INFO:journalctl@ceph.osd.5.smithi138.stdout:Sep 13 22:14:47 smithi138 bash[39020]: Error response from daemon: No such container: ceph-89616338-721b-11ef-bceb-c7b262605968-osd-5 2024-09-13T22:14:48.435 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:48 smithi096 bash[23620]: cluster 2024-09-13T22:14:47.124106+0000 mgr.a (mgr.14150) 410 : cluster [DBG] pgmap v332: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 80 KiB/s, 0 objects/s recovering 2024-09-13T22:14:48.435 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:48 smithi096 bash[23620]: audit 2024-09-13T22:14:47.137765+0000 mon.a (mon.0) 1028 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:48.435 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:48 smithi096 bash[23620]: cluster 2024-09-13T22:14:48.119614+0000 mon.a (mon.0) 1029 : cluster [WRN] Health check failed: 1 failed cephadm daemon(s) (CEPHADM_FAILED_DAEMON) 2024-09-13T22:14:48.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:48 smithi031 bash[22709]: cluster 2024-09-13T22:14:47.124106+0000 mgr.a (mgr.14150) 410 : cluster [DBG] pgmap v332: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 80 KiB/s, 0 objects/s recovering 2024-09-13T22:14:48.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:48 smithi031 bash[22709]: audit 2024-09-13T22:14:47.137765+0000 mon.a (mon.0) 1028 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:48.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:48 smithi031 bash[22709]: cluster 2024-09-13T22:14:48.119614+0000 mon.a (mon.0) 1029 : cluster [WRN] Health check failed: 1 failed cephadm daemon(s) (CEPHADM_FAILED_DAEMON) 2024-09-13T22:14:49.824 INFO:journalctl@ceph.osd.5.smithi138.stdout:Sep 13 22:14:49 smithi138 systemd[1]: ceph-89616338-721b-11ef-bceb-c7b262605968@osd.5.service: Deactivated successfully. 2024-09-13T22:14:49.824 INFO:journalctl@ceph.osd.5.smithi138.stdout:Sep 13 22:14:49 smithi138 systemd[1]: Stopped Ceph osd.5 for 89616338-721b-11ef-bceb-c7b262605968. 2024-09-13T22:14:49.824 INFO:journalctl@ceph.osd.5.smithi138.stdout:Sep 13 22:14:49 smithi138 systemd[1]: /etc/systemd/system/ceph-89616338-721b-11ef-bceb-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-13T22:14:50.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:50 smithi031 bash[22709]: cluster 2024-09-13T22:14:49.124797+0000 mgr.a (mgr.14150) 411 : cluster [DBG] pgmap v333: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 69 KiB/s, 0 objects/s recovering 2024-09-13T22:14:50.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:50 smithi031 bash[22709]: audit 2024-09-13T22:14:49.890512+0000 mon.a (mon.0) 1030 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.5"}]: dispatch 2024-09-13T22:14:50.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:50 smithi031 bash[22709]: audit 2024-09-13T22:14:49.893394+0000 mon.a (mon.0) 1031 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-09-13T22:14:50.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:50 smithi031 bash[22709]: audit 2024-09-13T22:14:49.899321+0000 mon.a (mon.0) 1032 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]: dispatch 2024-09-13T22:14:50.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:50 smithi031 bash[22709]: cluster 2024-09-13T22:14:49.900464+0000 mon.a (mon.0) 1033 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-13T22:14:50.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:50 smithi031 bash[22709]: cluster 2024-09-13T22:14:49.900504+0000 mon.a (mon.0) 1034 : cluster [INF] Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-09-13T22:14:50.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:50 smithi031 bash[22709]: audit 2024-09-13T22:14:49.902645+0000 mon.a (mon.0) 1035 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-09-13T22:14:50.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:50 smithi031 bash[22709]: cluster 2024-09-13T22:14:49.908118+0000 mon.a (mon.0) 1036 : cluster [DBG] osdmap e57: 4 total, 4 up, 4 in 2024-09-13T22:14:50.435 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:50 smithi096 bash[23620]: cluster 2024-09-13T22:14:49.124797+0000 mgr.a (mgr.14150) 411 : cluster [DBG] pgmap v333: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 69 KiB/s, 0 objects/s recovering 2024-09-13T22:14:50.445 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:50 smithi096 bash[23620]: audit 2024-09-13T22:14:49.890512+0000 mon.a (mon.0) 1030 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.5"}]: dispatch 2024-09-13T22:14:50.445 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:50 smithi096 bash[23620]: audit 2024-09-13T22:14:49.893394+0000 mon.a (mon.0) 1031 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-09-13T22:14:50.445 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:50 smithi096 bash[23620]: audit 2024-09-13T22:14:49.899321+0000 mon.a (mon.0) 1032 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]: dispatch 2024-09-13T22:14:50.445 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:50 smithi096 bash[23620]: cluster 2024-09-13T22:14:49.900464+0000 mon.a (mon.0) 1033 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-13T22:14:50.445 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:50 smithi096 bash[23620]: cluster 2024-09-13T22:14:49.900504+0000 mon.a (mon.0) 1034 : cluster [INF] Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-09-13T22:14:50.445 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:50 smithi096 bash[23620]: audit 2024-09-13T22:14:49.902645+0000 mon.a (mon.0) 1035 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-09-13T22:14:50.445 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:50 smithi096 bash[23620]: cluster 2024-09-13T22:14:49.908118+0000 mon.a (mon.0) 1036 : cluster [DBG] osdmap e57: 4 total, 4 up, 4 in 2024-09-13T22:14:51.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:51 smithi031 bash[22709]: cephadm 2024-09-13T22:14:49.889854+0000 mgr.a (mgr.14150) 412 : cephadm [INF] Removing key for osd.5 2024-09-13T22:14:51.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:51 smithi031 bash[22709]: cephadm 2024-09-13T22:14:49.898680+0000 mgr.a (mgr.14150) 413 : cephadm [INF] Successfully removed osd.5 on smithi138 2024-09-13T22:14:51.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:51 smithi031 bash[22709]: cephadm 2024-09-13T22:14:49.909044+0000 mgr.a (mgr.14150) 414 : cephadm [INF] Successfully purged osd.5 on smithi138 2024-09-13T22:14:51.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:51 smithi031 bash[22709]: cephadm 2024-09-13T22:14:49.909211+0000 mgr.a (mgr.14150) 415 : cephadm [INF] Zapping devices for osd.5 on smithi138 2024-09-13T22:14:51.435 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:51 smithi096 bash[23620]: cephadm 2024-09-13T22:14:49.889854+0000 mgr.a (mgr.14150) 412 : cephadm [INF] Removing key for osd.5 2024-09-13T22:14:51.435 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:51 smithi096 bash[23620]: cephadm 2024-09-13T22:14:49.898680+0000 mgr.a (mgr.14150) 413 : cephadm [INF] Successfully removed osd.5 on smithi138 2024-09-13T22:14:51.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:51 smithi096 bash[23620]: cephadm 2024-09-13T22:14:49.909044+0000 mgr.a (mgr.14150) 414 : cephadm [INF] Successfully purged osd.5 on smithi138 2024-09-13T22:14:51.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:51 smithi096 bash[23620]: cephadm 2024-09-13T22:14:49.909211+0000 mgr.a (mgr.14150) 415 : cephadm [INF] Zapping devices for osd.5 on smithi138 2024-09-13T22:14:52.435 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:52 smithi096 bash[23620]: cluster 2024-09-13T22:14:51.125364+0000 mgr.a (mgr.14150) 416 : cluster [DBG] pgmap v335: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:14:52.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:52 smithi031 bash[22709]: cluster 2024-09-13T22:14:51.125364+0000 mgr.a (mgr.14150) 416 : cluster [DBG] pgmap v335: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:14:54.435 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:54 smithi096 bash[23620]: cluster 2024-09-13T22:14:53.125928+0000 mgr.a (mgr.14150) 417 : cluster [DBG] pgmap v336: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:14:54.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:54 smithi031 bash[22709]: cluster 2024-09-13T22:14:53.125928+0000 mgr.a (mgr.14150) 417 : cluster [DBG] pgmap v336: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:14:56.395 INFO:teuthology.orchestra.run.smithi031.stderr:++ ceph orch ps --hostname smithi138 2024-09-13T22:14:56.435 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:56 smithi096 bash[23620]: cluster 2024-09-13T22:14:55.126475+0000 mgr.a (mgr.14150) 418 : cluster [DBG] pgmap v337: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:14:56.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:56 smithi031 bash[22709]: cluster 2024-09-13T22:14:55.126475+0000 mgr.a (mgr.14150) 418 : cluster [DBG] pgmap v337: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:14:56.715 INFO:teuthology.orchestra.run.smithi031.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID 2024-09-13T22:14:56.715 INFO:teuthology.orchestra.run.smithi031.stderr:agent.smithi138 smithi138 running 9s ago 8m - - ' 2024-09-13T22:14:56.715 INFO:teuthology.orchestra.run.smithi031.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID 2024-09-13T22:14:56.715 INFO:teuthology.orchestra.run.smithi031.stderr:agent.smithi138 smithi138 running 9s ago 8m - - ' '!=' 'No daemons reported' ']' 2024-09-13T22:14:56.715 INFO:teuthology.orchestra.run.smithi031.stderr:+ sleep 15 2024-09-13T22:14:57.685 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:57 smithi096 bash[23620]: cephadm 2024-09-13T22:14:56.299296+0000 mgr.a (mgr.14150) 419 : cephadm [INF] Successfully zapped devices for osd.5 on smithi138 2024-09-13T22:14:57.685 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:57 smithi096 bash[23620]: audit 2024-09-13T22:14:56.306514+0000 mon.a (mon.0) 1037 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:57.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:57 smithi096 bash[23620]: cephadm 2024-09-13T22:14:56.309863+0000 mgr.a (mgr.14150) 420 : cephadm [INF] Removing daemon agent.smithi138 from smithi138 -- ports [] 2024-09-13T22:14:57.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:57 smithi096 bash[23620]: audit 2024-09-13T22:14:56.699301+0000 mgr.a (mgr.14150) 421 : audit [DBG] from='client.14506 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi138", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:14:57.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:57 smithi096 bash[23620]: audit 2024-09-13T22:14:57.063711+0000 mon.a (mon.0) 1038 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "client.agent.smithi138"}]: dispatch 2024-09-13T22:14:57.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:57 smithi096 bash[23620]: audit 2024-09-13T22:14:57.066400+0000 mon.a (mon.0) 1039 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "client.agent.smithi138"}]': finished 2024-09-13T22:14:57.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:57 smithi096 bash[23620]: audit 2024-09-13T22:14:57.079747+0000 mon.a (mon.0) 1040 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:57.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:57 smithi096 bash[23620]: audit 2024-09-13T22:14:57.088163+0000 mon.a (mon.0) 1041 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:57.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:57 smithi096 bash[23620]: audit 2024-09-13T22:14:57.177041+0000 mon.a (mon.0) 1042 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:14:57.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:57 smithi031 bash[22709]: cephadm 2024-09-13T22:14:56.299296+0000 mgr.a (mgr.14150) 419 : cephadm [INF] Successfully zapped devices for osd.5 on smithi138 2024-09-13T22:14:57.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:57 smithi031 bash[22709]: audit 2024-09-13T22:14:56.306514+0000 mon.a (mon.0) 1037 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:57.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:57 smithi031 bash[22709]: cephadm 2024-09-13T22:14:56.309863+0000 mgr.a (mgr.14150) 420 : cephadm [INF] Removing daemon agent.smithi138 from smithi138 -- ports [] 2024-09-13T22:14:57.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:57 smithi031 bash[22709]: audit 2024-09-13T22:14:56.699301+0000 mgr.a (mgr.14150) 421 : audit [DBG] from='client.14506 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi138", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:14:57.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:57 smithi031 bash[22709]: audit 2024-09-13T22:14:57.063711+0000 mon.a (mon.0) 1038 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "client.agent.smithi138"}]: dispatch 2024-09-13T22:14:57.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:57 smithi031 bash[22709]: audit 2024-09-13T22:14:57.066400+0000 mon.a (mon.0) 1039 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "client.agent.smithi138"}]': finished 2024-09-13T22:14:57.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:57 smithi031 bash[22709]: audit 2024-09-13T22:14:57.079747+0000 mon.a (mon.0) 1040 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:57.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:57 smithi031 bash[22709]: audit 2024-09-13T22:14:57.088163+0000 mon.a (mon.0) 1041 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:57.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:57 smithi031 bash[22709]: audit 2024-09-13T22:14:57.177041+0000 mon.a (mon.0) 1042 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:14:58.685 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:58 smithi096 bash[23620]: cephadm 2024-09-13T22:14:57.063107+0000 mgr.a (mgr.14150) 422 : cephadm [INF] Removing key for client.agent.smithi138 2024-09-13T22:14:58.685 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:58 smithi096 bash[23620]: cluster 2024-09-13T22:14:57.127028+0000 mgr.a (mgr.14150) 423 : cluster [DBG] pgmap v338: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:14:58.685 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:58 smithi096 bash[23620]: audit 2024-09-13T22:14:57.992803+0000 mon.a (mon.0) 1043 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:14:58.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:58 smithi031 bash[22709]: cephadm 2024-09-13T22:14:57.063107+0000 mgr.a (mgr.14150) 422 : cephadm [INF] Removing key for client.agent.smithi138 2024-09-13T22:14:58.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:58 smithi031 bash[22709]: cluster 2024-09-13T22:14:57.127028+0000 mgr.a (mgr.14150) 423 : cluster [DBG] pgmap v338: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:14:58.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:58 smithi031 bash[22709]: audit 2024-09-13T22:14:57.992803+0000 mon.a (mon.0) 1043 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:00.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:59 smithi096 bash[23620]: audit 2024-09-13T22:14:58.750038+0000 mon.a (mon.0) 1044 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:00.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:14:59 smithi096 bash[23620]: audit 2024-09-13T22:14:58.756708+0000 mon.a (mon.0) 1045 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:00.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:59 smithi031 bash[22709]: audit 2024-09-13T22:14:58.750038+0000 mon.a (mon.0) 1044 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:00.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:14:59 smithi031 bash[22709]: audit 2024-09-13T22:14:58.756708+0000 mon.a (mon.0) 1045 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:01.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:00 smithi096 bash[23620]: cluster 2024-09-13T22:14:59.127565+0000 mgr.a (mgr.14150) 424 : cluster [DBG] pgmap v339: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:01.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:00 smithi031 bash[22709]: cluster 2024-09-13T22:14:59.127565+0000 mgr.a (mgr.14150) 424 : cluster [DBG] pgmap v339: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:03.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:02 smithi096 bash[23620]: cluster 2024-09-13T22:15:01.128093+0000 mgr.a (mgr.14150) 425 : cluster [DBG] pgmap v340: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:03.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:02 smithi096 bash[23620]: audit 2024-09-13T22:15:02.079811+0000 mon.a (mon.0) 1046 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:03.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:02 smithi096 bash[23620]: audit 2024-09-13T22:15:02.087379+0000 mon.a (mon.0) 1047 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:03.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:02 smithi096 bash[23620]: audit 2024-09-13T22:15:02.097636+0000 mon.a (mon.0) 1048 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:03.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:02 smithi031 bash[22709]: cluster 2024-09-13T22:15:01.128093+0000 mgr.a (mgr.14150) 425 : cluster [DBG] pgmap v340: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:03.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:02 smithi031 bash[22709]: audit 2024-09-13T22:15:02.079811+0000 mon.a (mon.0) 1046 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:03.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:02 smithi031 bash[22709]: audit 2024-09-13T22:15:02.087379+0000 mon.a (mon.0) 1047 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:03.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:02 smithi031 bash[22709]: audit 2024-09-13T22:15:02.097636+0000 mon.a (mon.0) 1048 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:04.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:03 smithi096 bash[23620]: cluster 2024-09-13T22:15:02.088619+0000 mgr.a (mgr.14150) 426 : cluster [DBG] pgmap v341: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:04.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:03 smithi096 bash[23620]: cluster 2024-09-13T22:15:03.083938+0000 mon.a (mon.0) 1049 : cluster [INF] Health check cleared: CEPHADM_FAILED_DAEMON (was: 1 failed cephadm daemon(s)) 2024-09-13T22:15:04.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:03 smithi096 bash[23620]: cluster 2024-09-13T22:15:03.083982+0000 mon.a (mon.0) 1050 : cluster [INF] Cluster is now healthy 2024-09-13T22:15:04.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:03 smithi031 bash[22709]: cluster 2024-09-13T22:15:02.088619+0000 mgr.a (mgr.14150) 426 : cluster [DBG] pgmap v341: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:04.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:03 smithi031 bash[22709]: cluster 2024-09-13T22:15:03.083938+0000 mon.a (mon.0) 1049 : cluster [INF] Health check cleared: CEPHADM_FAILED_DAEMON (was: 1 failed cephadm daemon(s)) 2024-09-13T22:15:04.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:03 smithi031 bash[22709]: cluster 2024-09-13T22:15:03.083982+0000 mon.a (mon.0) 1050 : cluster [INF] Cluster is now healthy 2024-09-13T22:15:05.435 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:05 smithi096 bash[23620]: cluster 2024-09-13T22:15:04.089128+0000 mgr.a (mgr.14150) 427 : cluster [DBG] pgmap v342: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:05.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:05 smithi096 bash[23620]: cephadm 2024-09-13T22:15:04.143635+0000 mgr.a (mgr.14150) 428 : cephadm [INF] Detected new or changed devices on smithi138 2024-09-13T22:15:05.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:05 smithi096 bash[23620]: audit 2024-09-13T22:15:04.152842+0000 mon.a (mon.0) 1051 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:05.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:05 smithi096 bash[23620]: audit 2024-09-13T22:15:04.161036+0000 mon.a (mon.0) 1052 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:05.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:05 smithi096 bash[23620]: audit 2024-09-13T22:15:04.162575+0000 mon.a (mon.0) 1053 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:15:05.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:05 smithi096 bash[23620]: audit 2024-09-13T22:15:04.164563+0000 mon.a (mon.0) 1054 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:15:05.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:05 smithi096 bash[23620]: audit 2024-09-13T22:15:04.176039+0000 mon.a (mon.0) 1055 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:05.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:05 smithi096 bash[23620]: cephadm 2024-09-13T22:15:04.266737+0000 mgr.a (mgr.14150) 429 : cephadm [INF] Reconfiguring mon.a (monmap changed)... 2024-09-13T22:15:05.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:05 smithi096 bash[23620]: audit 2024-09-13T22:15:04.267555+0000 mon.a (mon.0) 1056 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-13T22:15:05.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:05 smithi096 bash[23620]: audit 2024-09-13T22:15:04.269399+0000 mon.a (mon.0) 1057 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-13T22:15:05.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:05 smithi096 bash[23620]: audit 2024-09-13T22:15:04.271294+0000 mon.a (mon.0) 1058 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:15:05.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:05 smithi096 bash[23620]: cephadm 2024-09-13T22:15:04.273251+0000 mgr.a (mgr.14150) 430 : cephadm [INF] Reconfiguring daemon mon.a on smithi031 2024-09-13T22:15:05.437 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:05 smithi096 bash[23620]: audit 2024-09-13T22:15:04.368219+0000 mon.a (mon.0) 1059 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:05.437 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:05 smithi096 bash[23620]: audit 2024-09-13T22:15:04.374956+0000 mon.a (mon.0) 1060 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:05.437 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:05 smithi096 bash[23620]: audit 2024-09-13T22:15:04.383005+0000 mon.a (mon.0) 1061 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:05.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:05 smithi031 bash[22709]: cluster 2024-09-13T22:15:04.089128+0000 mgr.a (mgr.14150) 427 : cluster [DBG] pgmap v342: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:05.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:05 smithi031 bash[22709]: cephadm 2024-09-13T22:15:04.143635+0000 mgr.a (mgr.14150) 428 : cephadm [INF] Detected new or changed devices on smithi138 2024-09-13T22:15:05.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:05 smithi031 bash[22709]: audit 2024-09-13T22:15:04.152842+0000 mon.a (mon.0) 1051 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:05.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:05 smithi031 bash[22709]: audit 2024-09-13T22:15:04.161036+0000 mon.a (mon.0) 1052 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:05.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:05 smithi031 bash[22709]: audit 2024-09-13T22:15:04.162575+0000 mon.a (mon.0) 1053 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:15:05.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:05 smithi031 bash[22709]: audit 2024-09-13T22:15:04.164563+0000 mon.a (mon.0) 1054 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:15:05.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:05 smithi031 bash[22709]: audit 2024-09-13T22:15:04.176039+0000 mon.a (mon.0) 1055 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:05.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:05 smithi031 bash[22709]: cephadm 2024-09-13T22:15:04.266737+0000 mgr.a (mgr.14150) 429 : cephadm [INF] Reconfiguring mon.a (monmap changed)... 2024-09-13T22:15:05.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:05 smithi031 bash[22709]: audit 2024-09-13T22:15:04.267555+0000 mon.a (mon.0) 1056 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-13T22:15:05.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:05 smithi031 bash[22709]: audit 2024-09-13T22:15:04.269399+0000 mon.a (mon.0) 1057 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-13T22:15:05.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:05 smithi031 bash[22709]: audit 2024-09-13T22:15:04.271294+0000 mon.a (mon.0) 1058 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:15:05.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:05 smithi031 bash[22709]: cephadm 2024-09-13T22:15:04.273251+0000 mgr.a (mgr.14150) 430 : cephadm [INF] Reconfiguring daemon mon.a on smithi031 2024-09-13T22:15:05.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:05 smithi031 bash[22709]: audit 2024-09-13T22:15:04.368219+0000 mon.a (mon.0) 1059 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:05.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:05 smithi031 bash[22709]: audit 2024-09-13T22:15:04.374956+0000 mon.a (mon.0) 1060 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:05.471 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:05 smithi031 bash[22709]: audit 2024-09-13T22:15:04.383005+0000 mon.a (mon.0) 1061 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:07.933 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:07 smithi096 bash[23620]: cluster 2024-09-13T22:15:06.089779+0000 mgr.a (mgr.14150) 431 : cluster [DBG] pgmap v343: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:07.933 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:07 smithi096 bash[23620]: audit 2024-09-13T22:15:06.558996+0000 mon.a (mon.0) 1062 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:07.933 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:07 smithi096 bash[23620]: audit 2024-09-13T22:15:06.567783+0000 mon.a (mon.0) 1063 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:07.933 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:07 smithi096 bash[23620]: cephadm 2024-09-13T22:15:06.569240+0000 mgr.a (mgr.14150) 432 : cephadm [INF] Reconfiguring mgr.a (monmap changed)... 2024-09-13T22:15:07.933 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:07 smithi096 bash[23620]: audit 2024-09-13T22:15:06.569891+0000 mon.a (mon.0) 1064 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-13T22:15:07.933 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:07 smithi096 bash[23620]: audit 2024-09-13T22:15:06.571110+0000 mon.a (mon.0) 1065 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-13T22:15:07.933 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:07 smithi096 bash[23620]: audit 2024-09-13T22:15:06.572250+0000 mon.a (mon.0) 1066 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:15:07.933 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:07 smithi096 bash[23620]: cephadm 2024-09-13T22:15:06.573775+0000 mgr.a (mgr.14150) 433 : cephadm [INF] Reconfiguring daemon mgr.a on smithi031 2024-09-13T22:15:07.948 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:07 smithi031 bash[22709]: cluster 2024-09-13T22:15:06.089779+0000 mgr.a (mgr.14150) 431 : cluster [DBG] pgmap v343: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:07.948 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:07 smithi031 bash[22709]: audit 2024-09-13T22:15:06.558996+0000 mon.a (mon.0) 1062 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:07.948 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:07 smithi031 bash[22709]: audit 2024-09-13T22:15:06.567783+0000 mon.a (mon.0) 1063 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:07.948 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:07 smithi031 bash[22709]: cephadm 2024-09-13T22:15:06.569240+0000 mgr.a (mgr.14150) 432 : cephadm [INF] Reconfiguring mgr.a (monmap changed)... 2024-09-13T22:15:07.949 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:07 smithi031 bash[22709]: audit 2024-09-13T22:15:06.569891+0000 mon.a (mon.0) 1064 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-13T22:15:07.949 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:07 smithi031 bash[22709]: audit 2024-09-13T22:15:06.571110+0000 mon.a (mon.0) 1065 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-13T22:15:07.949 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:07 smithi031 bash[22709]: audit 2024-09-13T22:15:06.572250+0000 mon.a (mon.0) 1066 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:15:07.949 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:07 smithi031 bash[22709]: cephadm 2024-09-13T22:15:06.573775+0000 mgr.a (mgr.14150) 433 : cephadm [INF] Reconfiguring daemon mgr.a on smithi031 2024-09-13T22:15:09.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:09 smithi031 bash[22709]: cluster 2024-09-13T22:15:08.090286+0000 mgr.a (mgr.14150) 434 : cluster [DBG] pgmap v344: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:09.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:09 smithi031 bash[22709]: audit 2024-09-13T22:15:08.726837+0000 mon.a (mon.0) 1067 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:09.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:09 smithi031 bash[22709]: audit 2024-09-13T22:15:08.732515+0000 mon.a (mon.0) 1068 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:09.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:09 smithi031 bash[22709]: cephadm 2024-09-13T22:15:08.734182+0000 mgr.a (mgr.14150) 435 : cephadm [INF] Reconfiguring osd.0 (monmap changed)... 2024-09-13T22:15:09.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:09 smithi031 bash[22709]: audit 2024-09-13T22:15:08.734707+0000 mon.a (mon.0) 1069 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-13T22:15:09.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:09 smithi031 bash[22709]: audit 2024-09-13T22:15:08.736276+0000 mon.a (mon.0) 1070 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:15:09.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:09 smithi031 bash[22709]: cephadm 2024-09-13T22:15:08.738147+0000 mgr.a (mgr.14150) 436 : cephadm [INF] Reconfiguring daemon osd.0 on smithi031 2024-09-13T22:15:10.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:09 smithi096 bash[23620]: cluster 2024-09-13T22:15:08.090286+0000 mgr.a (mgr.14150) 434 : cluster [DBG] pgmap v344: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:10.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:09 smithi096 bash[23620]: audit 2024-09-13T22:15:08.726837+0000 mon.a (mon.0) 1067 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:10.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:09 smithi096 bash[23620]: audit 2024-09-13T22:15:08.732515+0000 mon.a (mon.0) 1068 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:10.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:09 smithi096 bash[23620]: cephadm 2024-09-13T22:15:08.734182+0000 mgr.a (mgr.14150) 435 : cephadm [INF] Reconfiguring osd.0 (monmap changed)... 2024-09-13T22:15:10.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:09 smithi096 bash[23620]: audit 2024-09-13T22:15:08.734707+0000 mon.a (mon.0) 1069 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-13T22:15:10.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:09 smithi096 bash[23620]: audit 2024-09-13T22:15:08.736276+0000 mon.a (mon.0) 1070 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:15:10.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:09 smithi096 bash[23620]: cephadm 2024-09-13T22:15:08.738147+0000 mgr.a (mgr.14150) 436 : cephadm [INF] Reconfiguring daemon osd.0 on smithi031 2024-09-13T22:15:11.717 INFO:teuthology.orchestra.run.smithi031.stderr:++ ceph orch ps --hostname smithi138 2024-09-13T22:15:11.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:11 smithi031 bash[22709]: cluster 2024-09-13T22:15:10.090787+0000 mgr.a (mgr.14150) 437 : cluster [DBG] pgmap v345: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:12.038 INFO:teuthology.orchestra.run.smithi031.stderr:+ HOST_C_DAEMONS='No daemons reported' 2024-09-13T22:15:12.038 INFO:teuthology.orchestra.run.smithi031.stderr:+ '[' 'No daemons reported' '!=' 'No daemons reported' ']' 2024-09-13T22:15:12.038 INFO:teuthology.orchestra.run.smithi031.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2024-09-13T22:15:12.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:11 smithi096 bash[23620]: cluster 2024-09-13T22:15:10.090787+0000 mgr.a (mgr.14150) 437 : cluster [DBG] pgmap v345: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:12.310 INFO:teuthology.orchestra.run.smithi031.stderr:17 2024-09-13T22:15:12.321 INFO:teuthology.orchestra.run.smithi031.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2024-09-13T22:15:12.334 INFO:teuthology.orchestra.run.smithi031.stderr:++ cat crushmap.txt 2024-09-13T22:15:12.334 INFO:teuthology.orchestra.run.smithi031.stderr:+ CRUSH_MAP='# begin crush map 2024-09-13T22:15:12.334 INFO:teuthology.orchestra.run.smithi031.stderr:tunable choose_local_tries 0 2024-09-13T22:15:12.335 INFO:teuthology.orchestra.run.smithi031.stderr:tunable choose_local_fallback_tries 0 2024-09-13T22:15:12.335 INFO:teuthology.orchestra.run.smithi031.stderr:tunable choose_total_tries 50 2024-09-13T22:15:12.335 INFO:teuthology.orchestra.run.smithi031.stderr:tunable chooseleaf_descend_once 1 2024-09-13T22:15:12.335 INFO:teuthology.orchestra.run.smithi031.stderr:tunable chooseleaf_vary_r 1 2024-09-13T22:15:12.335 INFO:teuthology.orchestra.run.smithi031.stderr:tunable chooseleaf_stable 1 2024-09-13T22:15:12.335 INFO:teuthology.orchestra.run.smithi031.stderr:tunable straw_calc_version 1 2024-09-13T22:15:12.335 INFO:teuthology.orchestra.run.smithi031.stderr:tunable allowed_bucket_algs 54 2024-09-13T22:15:12.335 INFO:teuthology.orchestra.run.smithi031.stderr: 2024-09-13T22:15:12.335 INFO:teuthology.orchestra.run.smithi031.stderr:# devices 2024-09-13T22:15:12.335 INFO:teuthology.orchestra.run.smithi031.stderr:device 0 osd.0 class ssd 2024-09-13T22:15:12.335 INFO:teuthology.orchestra.run.smithi031.stderr:device 1 osd.1 class ssd 2024-09-13T22:15:12.335 INFO:teuthology.orchestra.run.smithi031.stderr:device 2 osd.2 class ssd 2024-09-13T22:15:12.335 INFO:teuthology.orchestra.run.smithi031.stderr:device 3 osd.3 class ssd 2024-09-13T22:15:12.336 INFO:teuthology.orchestra.run.smithi031.stderr: 2024-09-13T22:15:12.336 INFO:teuthology.orchestra.run.smithi031.stderr:# types 2024-09-13T22:15:12.336 INFO:teuthology.orchestra.run.smithi031.stderr:type 0 osd 2024-09-13T22:15:12.336 INFO:teuthology.orchestra.run.smithi031.stderr:type 1 host 2024-09-13T22:15:12.336 INFO:teuthology.orchestra.run.smithi031.stderr:type 2 chassis 2024-09-13T22:15:12.336 INFO:teuthology.orchestra.run.smithi031.stderr:type 3 rack 2024-09-13T22:15:12.336 INFO:teuthology.orchestra.run.smithi031.stderr:type 4 row 2024-09-13T22:15:12.336 INFO:teuthology.orchestra.run.smithi031.stderr:type 5 pdu 2024-09-13T22:15:12.336 INFO:teuthology.orchestra.run.smithi031.stderr:type 6 pod 2024-09-13T22:15:12.336 INFO:teuthology.orchestra.run.smithi031.stderr:type 7 room 2024-09-13T22:15:12.336 INFO:teuthology.orchestra.run.smithi031.stderr:type 8 datacenter 2024-09-13T22:15:12.336 INFO:teuthology.orchestra.run.smithi031.stderr:type 9 zone 2024-09-13T22:15:12.337 INFO:teuthology.orchestra.run.smithi031.stderr:type 10 region 2024-09-13T22:15:12.337 INFO:teuthology.orchestra.run.smithi031.stderr:type 11 root 2024-09-13T22:15:12.337 INFO:teuthology.orchestra.run.smithi031.stderr: 2024-09-13T22:15:12.337 INFO:teuthology.orchestra.run.smithi031.stderr:# buckets 2024-09-13T22:15:12.337 INFO:teuthology.orchestra.run.smithi031.stderr:host smithi031 { 2024-09-13T22:15:12.337 INFO:teuthology.orchestra.run.smithi031.stderr: id -3 # do not change unnecessarily 2024-09-13T22:15:12.337 INFO:teuthology.orchestra.run.smithi031.stderr: id -4 class ssd # do not change unnecessarily 2024-09-13T22:15:12.337 INFO:teuthology.orchestra.run.smithi031.stderr: # weight 0.17459 2024-09-13T22:15:12.337 INFO:teuthology.orchestra.run.smithi031.stderr: alg straw2 2024-09-13T22:15:12.337 INFO:teuthology.orchestra.run.smithi031.stderr: hash 0 # rjenkins1 2024-09-13T22:15:12.337 INFO:teuthology.orchestra.run.smithi031.stderr: item osd.0 weight 0.08730 2024-09-13T22:15:12.338 INFO:teuthology.orchestra.run.smithi031.stderr: item osd.1 weight 0.08730 2024-09-13T22:15:12.338 INFO:teuthology.orchestra.run.smithi031.stderr:} 2024-09-13T22:15:12.338 INFO:teuthology.orchestra.run.smithi031.stderr:host smithi096 { 2024-09-13T22:15:12.338 INFO:teuthology.orchestra.run.smithi031.stderr: id -5 # do not change unnecessarily 2024-09-13T22:15:12.338 INFO:teuthology.orchestra.run.smithi031.stderr: id -6 class ssd # do not change unnecessarily 2024-09-13T22:15:12.338 INFO:teuthology.orchestra.run.smithi031.stderr: # weight 0.17459 2024-09-13T22:15:12.338 INFO:teuthology.orchestra.run.smithi031.stderr: alg straw2 2024-09-13T22:15:12.338 INFO:teuthology.orchestra.run.smithi031.stderr: hash 0 # rjenkins1 2024-09-13T22:15:12.338 INFO:teuthology.orchestra.run.smithi031.stderr: item osd.2 weight 0.08730 2024-09-13T22:15:12.338 INFO:teuthology.orchestra.run.smithi031.stderr: item osd.3 weight 0.08730 2024-09-13T22:15:12.338 INFO:teuthology.orchestra.run.smithi031.stderr:} 2024-09-13T22:15:12.338 INFO:teuthology.orchestra.run.smithi031.stderr:host smithi138 { 2024-09-13T22:15:12.339 INFO:teuthology.orchestra.run.smithi031.stderr: id -7 # do not change unnecessarily 2024-09-13T22:15:12.339 INFO:teuthology.orchestra.run.smithi031.stderr: id -8 class ssd # do not change unnecessarily 2024-09-13T22:15:12.339 INFO:teuthology.orchestra.run.smithi031.stderr: # weight 0.00000 2024-09-13T22:15:12.339 INFO:teuthology.orchestra.run.smithi031.stderr: alg straw2 2024-09-13T22:15:12.339 INFO:teuthology.orchestra.run.smithi031.stderr: hash 0 # rjenkins1 2024-09-13T22:15:12.339 INFO:teuthology.orchestra.run.smithi031.stderr:} 2024-09-13T22:15:12.339 INFO:teuthology.orchestra.run.smithi031.stderr:root default { 2024-09-13T22:15:12.339 INFO:teuthology.orchestra.run.smithi031.stderr: id -1 # do not change unnecessarily 2024-09-13T22:15:12.339 INFO:teuthology.orchestra.run.smithi031.stderr: id -2 class ssd # do not change unnecessarily 2024-09-13T22:15:12.339 INFO:teuthology.orchestra.run.smithi031.stderr: # weight 0.34918 2024-09-13T22:15:12.339 INFO:teuthology.orchestra.run.smithi031.stderr: alg straw2 2024-09-13T22:15:12.339 INFO:teuthology.orchestra.run.smithi031.stderr: hash 0 # rjenkins1 2024-09-13T22:15:12.339 INFO:teuthology.orchestra.run.smithi031.stderr: item smithi031 weight 0.17459 2024-09-13T22:15:12.339 INFO:teuthology.orchestra.run.smithi031.stderr: item smithi096 weight 0.17459 2024-09-13T22:15:12.340 INFO:teuthology.orchestra.run.smithi031.stderr: item smithi138 weight 0.00000 2024-09-13T22:15:12.340 INFO:teuthology.orchestra.run.smithi031.stderr:} 2024-09-13T22:15:12.340 INFO:teuthology.orchestra.run.smithi031.stderr: 2024-09-13T22:15:12.340 INFO:teuthology.orchestra.run.smithi031.stderr:# rules 2024-09-13T22:15:12.340 INFO:teuthology.orchestra.run.smithi031.stderr:rule replicated_rule { 2024-09-13T22:15:12.340 INFO:teuthology.orchestra.run.smithi031.stderr: id 0 2024-09-13T22:15:12.340 INFO:teuthology.orchestra.run.smithi031.stderr: type replicated 2024-09-13T22:15:12.340 INFO:teuthology.orchestra.run.smithi031.stderr: step take default 2024-09-13T22:15:12.340 INFO:teuthology.orchestra.run.smithi031.stderr: step choose firstn 0 type osd 2024-09-13T22:15:12.340 INFO:teuthology.orchestra.run.smithi031.stderr: step emit 2024-09-13T22:15:12.340 INFO:teuthology.orchestra.run.smithi031.stderr:} 2024-09-13T22:15:12.340 INFO:teuthology.orchestra.run.smithi031.stderr: 2024-09-13T22:15:12.340 INFO:teuthology.orchestra.run.smithi031.stderr:# end crush map' 2024-09-13T22:15:12.340 INFO:teuthology.orchestra.run.smithi031.stderr:+ grep -q smithi138 2024-09-13T22:15:12.341 INFO:teuthology.orchestra.run.smithi031.stderr:+ ceph orch host rm smithi138 --rm-crush-entry 2024-09-13T22:15:12.951 INFO:teuthology.orchestra.run.smithi031.stdout:Removed host 'smithi138' 2024-09-13T22:15:12.965 INFO:teuthology.orchestra.run.smithi031.stderr:+ sleep 30 2024-09-13T22:15:13.185 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:12 smithi096 bash[23620]: audit 2024-09-13T22:15:11.923205+0000 mon.a (mon.0) 1071 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:13.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:12 smithi096 bash[23620]: audit 2024-09-13T22:15:11.929302+0000 mon.a (mon.0) 1072 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:13.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:12 smithi096 bash[23620]: cephadm 2024-09-13T22:15:11.930104+0000 mgr.a (mgr.14150) 438 : cephadm [INF] Reconfiguring osd.1 (monmap changed)... 2024-09-13T22:15:13.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:12 smithi096 bash[23620]: audit 2024-09-13T22:15:11.930422+0000 mon.a (mon.0) 1073 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-13T22:15:13.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:12 smithi096 bash[23620]: audit 2024-09-13T22:15:11.931274+0000 mon.a (mon.0) 1074 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:15:13.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:12 smithi096 bash[23620]: cephadm 2024-09-13T22:15:11.932485+0000 mgr.a (mgr.14150) 439 : cephadm [INF] Reconfiguring daemon osd.1 on smithi031 2024-09-13T22:15:13.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:12 smithi096 bash[23620]: audit 2024-09-13T22:15:12.027799+0000 mgr.a (mgr.14150) 440 : audit [DBG] from='client.14510 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi138", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:15:13.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:12 smithi096 bash[23620]: cluster 2024-09-13T22:15:12.091274+0000 mgr.a (mgr.14150) 441 : cluster [DBG] pgmap v346: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:13.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:12 smithi096 bash[23620]: audit 2024-09-13T22:15:12.312780+0000 mon.a (mon.0) 1075 : audit [DBG] from='client.? 172.21.15.31:0/976521205' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-09-13T22:15:13.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:12 smithi096 bash[23620]: audit 2024-09-13T22:15:12.617363+0000 mgr.a (mgr.14150) 442 : audit [DBG] from='client.14518 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi138", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:15:13.186 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:12 smithi096 bash[23620]: audit 2024-09-13T22:15:12.618548+0000 mon.a (mon.0) 1076 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd crush remove", "name": "smithi138"}]: dispatch 2024-09-13T22:15:13.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:12 smithi031 bash[22709]: audit 2024-09-13T22:15:11.923205+0000 mon.a (mon.0) 1071 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:13.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:12 smithi031 bash[22709]: audit 2024-09-13T22:15:11.929302+0000 mon.a (mon.0) 1072 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:13.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:12 smithi031 bash[22709]: cephadm 2024-09-13T22:15:11.930104+0000 mgr.a (mgr.14150) 438 : cephadm [INF] Reconfiguring osd.1 (monmap changed)... 2024-09-13T22:15:13.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:12 smithi031 bash[22709]: audit 2024-09-13T22:15:11.930422+0000 mon.a (mon.0) 1073 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-13T22:15:13.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:12 smithi031 bash[22709]: audit 2024-09-13T22:15:11.931274+0000 mon.a (mon.0) 1074 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:15:13.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:12 smithi031 bash[22709]: cephadm 2024-09-13T22:15:11.932485+0000 mgr.a (mgr.14150) 439 : cephadm [INF] Reconfiguring daemon osd.1 on smithi031 2024-09-13T22:15:13.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:12 smithi031 bash[22709]: audit 2024-09-13T22:15:12.027799+0000 mgr.a (mgr.14150) 440 : audit [DBG] from='client.14510 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi138", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:15:13.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:12 smithi031 bash[22709]: cluster 2024-09-13T22:15:12.091274+0000 mgr.a (mgr.14150) 441 : cluster [DBG] pgmap v346: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:13.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:12 smithi031 bash[22709]: audit 2024-09-13T22:15:12.312780+0000 mon.a (mon.0) 1075 : audit [DBG] from='client.? 172.21.15.31:0/976521205' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-09-13T22:15:13.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:12 smithi031 bash[22709]: audit 2024-09-13T22:15:12.617363+0000 mgr.a (mgr.14150) 442 : audit [DBG] from='client.14518 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi138", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T22:15:13.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:12 smithi031 bash[22709]: audit 2024-09-13T22:15:12.618548+0000 mon.a (mon.0) 1076 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "osd crush remove", "name": "smithi138"}]: dispatch 2024-09-13T22:15:14.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:13 smithi031 bash[22709]: audit 2024-09-13T22:15:12.939110+0000 mon.a (mon.0) 1077 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi138"}]': finished 2024-09-13T22:15:14.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:13 smithi031 bash[22709]: cluster 2024-09-13T22:15:12.943225+0000 mon.a (mon.0) 1078 : cluster [DBG] osdmap e58: 4 total, 4 up, 4 in 2024-09-13T22:15:14.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:13 smithi031 bash[22709]: audit 2024-09-13T22:15:12.948660+0000 mon.a (mon.0) 1079 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:14.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:13 smithi031 bash[22709]: audit 2024-09-13T22:15:12.949445+0000 mon.a (mon.0) 1080 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi138"}]: dispatch 2024-09-13T22:15:14.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:13 smithi031 bash[22709]: audit 2024-09-13T22:15:12.952764+0000 mon.a (mon.0) 1081 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi138"}]': finished 2024-09-13T22:15:14.220 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:13 smithi031 bash[22709]: cephadm 2024-09-13T22:15:12.954751+0000 mgr.a (mgr.14150) 443 : cephadm [INF] Removed host smithi138 2024-09-13T22:15:14.435 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:13 smithi096 bash[23620]: audit 2024-09-13T22:15:12.939110+0000 mon.a (mon.0) 1077 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi138"}]': finished 2024-09-13T22:15:14.435 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:13 smithi096 bash[23620]: cluster 2024-09-13T22:15:12.943225+0000 mon.a (mon.0) 1078 : cluster [DBG] osdmap e58: 4 total, 4 up, 4 in 2024-09-13T22:15:14.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:13 smithi096 bash[23620]: audit 2024-09-13T22:15:12.948660+0000 mon.a (mon.0) 1079 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:14.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:13 smithi096 bash[23620]: audit 2024-09-13T22:15:12.949445+0000 mon.a (mon.0) 1080 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi138"}]: dispatch 2024-09-13T22:15:14.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:13 smithi096 bash[23620]: audit 2024-09-13T22:15:12.952764+0000 mon.a (mon.0) 1081 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi138"}]': finished 2024-09-13T22:15:14.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:13 smithi096 bash[23620]: cephadm 2024-09-13T22:15:12.954751+0000 mgr.a (mgr.14150) 443 : cephadm [INF] Removed host smithi138 2024-09-13T22:15:15.219 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:14 smithi031 bash[22709]: cluster 2024-09-13T22:15:14.091821+0000 mgr.a (mgr.14150) 444 : cluster [DBG] pgmap v348: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:15.435 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:14 smithi096 bash[23620]: cluster 2024-09-13T22:15:14.091821+0000 mgr.a (mgr.14150) 444 : cluster [DBG] pgmap v348: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:17.435 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:17 smithi096 bash[23620]: audit 2024-09-13T22:15:16.066777+0000 mon.a (mon.0) 1082 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:17.435 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:17 smithi096 bash[23620]: audit 2024-09-13T22:15:16.075059+0000 mon.a (mon.0) 1083 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:17.435 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:17 smithi096 bash[23620]: cephadm 2024-09-13T22:15:16.077064+0000 mgr.a (mgr.14150) 445 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-13T22:15:17.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:17 smithi096 bash[23620]: audit 2024-09-13T22:15:16.077598+0000 mon.a (mon.0) 1084 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-13T22:15:17.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:17 smithi096 bash[23620]: audit 2024-09-13T22:15:16.079028+0000 mon.a (mon.0) 1085 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-13T22:15:17.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:17 smithi096 bash[23620]: audit 2024-09-13T22:15:16.080400+0000 mon.a (mon.0) 1086 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:15:17.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:17 smithi096 bash[23620]: cephadm 2024-09-13T22:15:16.082035+0000 mgr.a (mgr.14150) 446 : cephadm [INF] Reconfiguring daemon mon.b on smithi096 2024-09-13T22:15:17.436 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:17 smithi096 bash[23620]: cluster 2024-09-13T22:15:16.092323+0000 mgr.a (mgr.14150) 447 : cluster [DBG] pgmap v349: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:17.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:17 smithi031 bash[22709]: audit 2024-09-13T22:15:16.066777+0000 mon.a (mon.0) 1082 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:17.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:17 smithi031 bash[22709]: audit 2024-09-13T22:15:16.075059+0000 mon.a (mon.0) 1083 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:17.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:17 smithi031 bash[22709]: cephadm 2024-09-13T22:15:16.077064+0000 mgr.a (mgr.14150) 445 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-13T22:15:17.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:17 smithi031 bash[22709]: audit 2024-09-13T22:15:16.077598+0000 mon.a (mon.0) 1084 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-13T22:15:17.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:17 smithi031 bash[22709]: audit 2024-09-13T22:15:16.079028+0000 mon.a (mon.0) 1085 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-13T22:15:17.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:17 smithi031 bash[22709]: audit 2024-09-13T22:15:16.080400+0000 mon.a (mon.0) 1086 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:15:17.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:17 smithi031 bash[22709]: cephadm 2024-09-13T22:15:16.082035+0000 mgr.a (mgr.14150) 446 : cephadm [INF] Reconfiguring daemon mon.b on smithi096 2024-09-13T22:15:17.470 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:17 smithi031 bash[22709]: cluster 2024-09-13T22:15:16.092323+0000 mgr.a (mgr.14150) 447 : cluster [DBG] pgmap v349: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:19.685 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:19 smithi096 bash[23620]: cluster 2024-09-13T22:15:18.092851+0000 mgr.a (mgr.14150) 448 : cluster [DBG] pgmap v350: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:19.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:19 smithi096 bash[23620]: audit 2024-09-13T22:15:18.421894+0000 mon.a (mon.0) 1087 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:19.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:19 smithi096 bash[23620]: audit 2024-09-13T22:15:18.429844+0000 mon.a (mon.0) 1088 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:19.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:19 smithi096 bash[23620]: cephadm 2024-09-13T22:15:18.431414+0000 mgr.a (mgr.14150) 449 : cephadm [INF] Reconfiguring mgr.b (monmap changed)... 2024-09-13T22:15:19.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:19 smithi096 bash[23620]: audit 2024-09-13T22:15:18.432054+0000 mon.a (mon.0) 1089 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-13T22:15:19.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:19 smithi096 bash[23620]: audit 2024-09-13T22:15:18.433860+0000 mon.a (mon.0) 1090 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-13T22:15:19.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:19 smithi096 bash[23620]: audit 2024-09-13T22:15:18.435486+0000 mon.a (mon.0) 1091 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:15:19.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:19 smithi096 bash[23620]: cephadm 2024-09-13T22:15:18.437303+0000 mgr.a (mgr.14150) 450 : cephadm [INF] Reconfiguring daemon mgr.b on smithi096 2024-09-13T22:15:19.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:19 smithi031 bash[22709]: cluster 2024-09-13T22:15:18.092851+0000 mgr.a (mgr.14150) 448 : cluster [DBG] pgmap v350: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:19.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:19 smithi031 bash[22709]: audit 2024-09-13T22:15:18.421894+0000 mon.a (mon.0) 1087 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:19.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:19 smithi031 bash[22709]: audit 2024-09-13T22:15:18.429844+0000 mon.a (mon.0) 1088 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:19.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:19 smithi031 bash[22709]: cephadm 2024-09-13T22:15:18.431414+0000 mgr.a (mgr.14150) 449 : cephadm [INF] Reconfiguring mgr.b (monmap changed)... 2024-09-13T22:15:19.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:19 smithi031 bash[22709]: audit 2024-09-13T22:15:18.432054+0000 mon.a (mon.0) 1089 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-13T22:15:19.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:19 smithi031 bash[22709]: audit 2024-09-13T22:15:18.433860+0000 mon.a (mon.0) 1090 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-13T22:15:19.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:19 smithi031 bash[22709]: audit 2024-09-13T22:15:18.435486+0000 mon.a (mon.0) 1091 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:15:19.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:19 smithi031 bash[22709]: cephadm 2024-09-13T22:15:18.437303+0000 mgr.a (mgr.14150) 450 : cephadm [INF] Reconfiguring daemon mgr.b on smithi096 2024-09-13T22:15:21.875 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:21 smithi096 bash[23620]: cluster 2024-09-13T22:15:20.093394+0000 mgr.a (mgr.14150) 451 : cluster [DBG] pgmap v351: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:21.875 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:21 smithi096 bash[23620]: audit 2024-09-13T22:15:20.535557+0000 mon.a (mon.0) 1092 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:21.875 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:21 smithi096 bash[23620]: audit 2024-09-13T22:15:20.543970+0000 mon.a (mon.0) 1093 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:21.875 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:21 smithi096 bash[23620]: cephadm 2024-09-13T22:15:20.545613+0000 mgr.a (mgr.14150) 452 : cephadm [INF] Reconfiguring osd.2 (monmap changed)... 2024-09-13T22:15:21.875 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:21 smithi096 bash[23620]: audit 2024-09-13T22:15:20.546232+0000 mon.a (mon.0) 1094 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-13T22:15:21.875 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:21 smithi096 bash[23620]: audit 2024-09-13T22:15:20.547950+0000 mon.a (mon.0) 1095 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:15:21.875 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:21 smithi096 bash[23620]: cephadm 2024-09-13T22:15:20.550605+0000 mgr.a (mgr.14150) 453 : cephadm [INF] Reconfiguring daemon osd.2 on smithi096 2024-09-13T22:15:21.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:21 smithi031 bash[22709]: cluster 2024-09-13T22:15:20.093394+0000 mgr.a (mgr.14150) 451 : cluster [DBG] pgmap v351: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:21.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:21 smithi031 bash[22709]: audit 2024-09-13T22:15:20.535557+0000 mon.a (mon.0) 1092 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:21.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:21 smithi031 bash[22709]: audit 2024-09-13T22:15:20.543970+0000 mon.a (mon.0) 1093 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:21.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:21 smithi031 bash[22709]: cephadm 2024-09-13T22:15:20.545613+0000 mgr.a (mgr.14150) 452 : cephadm [INF] Reconfiguring osd.2 (monmap changed)... 2024-09-13T22:15:21.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:21 smithi031 bash[22709]: audit 2024-09-13T22:15:20.546232+0000 mon.a (mon.0) 1094 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-13T22:15:21.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:21 smithi031 bash[22709]: audit 2024-09-13T22:15:20.547950+0000 mon.a (mon.0) 1095 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:15:21.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:21 smithi031 bash[22709]: cephadm 2024-09-13T22:15:20.550605+0000 mgr.a (mgr.14150) 453 : cephadm [INF] Reconfiguring daemon osd.2 on smithi096 2024-09-13T22:15:23.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:23 smithi096 bash[23620]: cluster 2024-09-13T22:15:22.094079+0000 mgr.a (mgr.14150) 454 : cluster [DBG] pgmap v352: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:23.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:23 smithi096 bash[23620]: audit 2024-09-13T22:15:22.298391+0000 mon.a (mon.0) 1096 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:23.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:23 smithi096 bash[23620]: audit 2024-09-13T22:15:22.306195+0000 mon.a (mon.0) 1097 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:23.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:23 smithi096 bash[23620]: audit 2024-09-13T22:15:22.315947+0000 mon.a (mon.0) 1098 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:23.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:23 smithi096 bash[23620]: audit 2024-09-13T22:15:22.681643+0000 mon.a (mon.0) 1099 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:23.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:23 smithi096 bash[23620]: audit 2024-09-13T22:15:22.689972+0000 mon.a (mon.0) 1100 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:23.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:23 smithi096 bash[23620]: cephadm 2024-09-13T22:15:22.691744+0000 mgr.a (mgr.14150) 455 : cephadm [INF] Reconfiguring osd.3 (monmap changed)... 2024-09-13T22:15:23.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:23 smithi096 bash[23620]: audit 2024-09-13T22:15:22.692311+0000 mon.a (mon.0) 1101 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-13T22:15:23.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:23 smithi096 bash[23620]: audit 2024-09-13T22:15:22.693887+0000 mon.a (mon.0) 1102 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:15:23.686 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:23 smithi096 bash[23620]: cephadm 2024-09-13T22:15:22.696532+0000 mgr.a (mgr.14150) 456 : cephadm [INF] Reconfiguring daemon osd.3 on smithi096 2024-09-13T22:15:23.719 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:23 smithi031 bash[22709]: cluster 2024-09-13T22:15:22.094079+0000 mgr.a (mgr.14150) 454 : cluster [DBG] pgmap v352: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:23.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:23 smithi031 bash[22709]: audit 2024-09-13T22:15:22.298391+0000 mon.a (mon.0) 1096 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:23.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:23 smithi031 bash[22709]: audit 2024-09-13T22:15:22.306195+0000 mon.a (mon.0) 1097 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:23.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:23 smithi031 bash[22709]: audit 2024-09-13T22:15:22.315947+0000 mon.a (mon.0) 1098 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:23.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:23 smithi031 bash[22709]: audit 2024-09-13T22:15:22.681643+0000 mon.a (mon.0) 1099 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:23.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:23 smithi031 bash[22709]: audit 2024-09-13T22:15:22.689972+0000 mon.a (mon.0) 1100 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:23.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:23 smithi031 bash[22709]: cephadm 2024-09-13T22:15:22.691744+0000 mgr.a (mgr.14150) 455 : cephadm [INF] Reconfiguring osd.3 (monmap changed)... 2024-09-13T22:15:23.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:23 smithi031 bash[22709]: audit 2024-09-13T22:15:22.692311+0000 mon.a (mon.0) 1101 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-13T22:15:23.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:23 smithi031 bash[22709]: audit 2024-09-13T22:15:22.693887+0000 mon.a (mon.0) 1102 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:15:23.720 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:23 smithi031 bash[22709]: cephadm 2024-09-13T22:15:22.696532+0000 mgr.a (mgr.14150) 456 : cephadm [INF] Reconfiguring daemon osd.3 on smithi096 2024-09-13T22:15:25.935 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:25 smithi096 bash[23620]: cluster 2024-09-13T22:15:24.094750+0000 mgr.a (mgr.14150) 457 : cluster [DBG] pgmap v353: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:25.935 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:25 smithi096 bash[23620]: audit 2024-09-13T22:15:24.566031+0000 mon.a (mon.0) 1103 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:25.936 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:25 smithi096 bash[23620]: audit 2024-09-13T22:15:24.574113+0000 mon.a (mon.0) 1104 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:25.936 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:25 smithi096 bash[23620]: audit 2024-09-13T22:15:24.584668+0000 mon.a (mon.0) 1105 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:25.936 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:25 smithi096 bash[23620]: audit 2024-09-13T22:15:24.885133+0000 mon.a (mon.0) 1106 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:25.936 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:25 smithi096 bash[23620]: audit 2024-09-13T22:15:24.894880+0000 mon.a (mon.0) 1107 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:25.936 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:25 smithi096 bash[23620]: audit 2024-09-13T22:15:24.897740+0000 mon.a (mon.0) 1108 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:15:25.936 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:25 smithi096 bash[23620]: audit 2024-09-13T22:15:25.485835+0000 mon.a (mon.0) 1109 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:25.936 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:25 smithi096 bash[23620]: audit 2024-09-13T22:15:25.491377+0000 mon.a (mon.0) 1110 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:25.936 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:25 smithi096 bash[23620]: audit 2024-09-13T22:15:25.492553+0000 mon.a (mon.0) 1111 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:15:25.936 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:25 smithi096 bash[23620]: audit 2024-09-13T22:15:25.493379+0000 mon.a (mon.0) 1112 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:15:25.936 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:25 smithi096 bash[23620]: audit 2024-09-13T22:15:25.498574+0000 mon.a (mon.0) 1113 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:25.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:25 smithi031 bash[22709]: cluster 2024-09-13T22:15:24.094750+0000 mgr.a (mgr.14150) 457 : cluster [DBG] pgmap v353: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:25.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:25 smithi031 bash[22709]: audit 2024-09-13T22:15:24.566031+0000 mon.a (mon.0) 1103 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:25.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:25 smithi031 bash[22709]: audit 2024-09-13T22:15:24.574113+0000 mon.a (mon.0) 1104 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:25.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:25 smithi031 bash[22709]: audit 2024-09-13T22:15:24.584668+0000 mon.a (mon.0) 1105 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:25.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:25 smithi031 bash[22709]: audit 2024-09-13T22:15:24.885133+0000 mon.a (mon.0) 1106 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:25.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:25 smithi031 bash[22709]: audit 2024-09-13T22:15:24.894880+0000 mon.a (mon.0) 1107 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:25.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:25 smithi031 bash[22709]: audit 2024-09-13T22:15:24.897740+0000 mon.a (mon.0) 1108 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-13T22:15:25.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:25 smithi031 bash[22709]: audit 2024-09-13T22:15:25.485835+0000 mon.a (mon.0) 1109 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:25.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:25 smithi031 bash[22709]: audit 2024-09-13T22:15:25.491377+0000 mon.a (mon.0) 1110 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:25.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:25 smithi031 bash[22709]: audit 2024-09-13T22:15:25.492553+0000 mon.a (mon.0) 1111 : audit [DBG] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-13T22:15:25.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:25 smithi031 bash[22709]: audit 2024-09-13T22:15:25.493379+0000 mon.a (mon.0) 1112 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-13T22:15:25.971 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:25 smithi031 bash[22709]: audit 2024-09-13T22:15:25.498574+0000 mon.a (mon.0) 1113 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:27.685 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:27 smithi096 bash[23620]: cluster 2024-09-13T22:15:26.095427+0000 mgr.a (mgr.14150) 458 : cluster [DBG] pgmap v354: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:27.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:27 smithi031 bash[22709]: cluster 2024-09-13T22:15:26.095427+0000 mgr.a (mgr.14150) 458 : cluster [DBG] pgmap v354: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:29.935 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:29 smithi096 bash[23620]: cluster 2024-09-13T22:15:28.096104+0000 mgr.a (mgr.14150) 459 : cluster [DBG] pgmap v355: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:29.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:29 smithi031 bash[22709]: cluster 2024-09-13T22:15:28.096104+0000 mgr.a (mgr.14150) 459 : cluster [DBG] pgmap v355: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:31.935 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:31 smithi096 bash[23620]: cluster 2024-09-13T22:15:30.096789+0000 mgr.a (mgr.14150) 460 : cluster [DBG] pgmap v356: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:31.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:31 smithi031 bash[22709]: cluster 2024-09-13T22:15:30.096789+0000 mgr.a (mgr.14150) 460 : cluster [DBG] pgmap v356: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:33.935 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:33 smithi096 bash[23620]: cluster 2024-09-13T22:15:32.097385+0000 mgr.a (mgr.14150) 461 : cluster [DBG] pgmap v357: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:33.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:33 smithi031 bash[22709]: cluster 2024-09-13T22:15:32.097385+0000 mgr.a (mgr.14150) 461 : cluster [DBG] pgmap v357: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:35.935 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:35 smithi096 bash[23620]: cluster 2024-09-13T22:15:34.097941+0000 mgr.a (mgr.14150) 462 : cluster [DBG] pgmap v358: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:35.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:35 smithi031 bash[22709]: cluster 2024-09-13T22:15:34.097941+0000 mgr.a (mgr.14150) 462 : cluster [DBG] pgmap v358: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:37.935 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:37 smithi096 bash[23620]: cluster 2024-09-13T22:15:36.098494+0000 mgr.a (mgr.14150) 463 : cluster [DBG] pgmap v359: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:37.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:37 smithi031 bash[22709]: cluster 2024-09-13T22:15:36.098494+0000 mgr.a (mgr.14150) 463 : cluster [DBG] pgmap v359: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:39.935 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:39 smithi096 bash[23620]: cluster 2024-09-13T22:15:38.099141+0000 mgr.a (mgr.14150) 464 : cluster [DBG] pgmap v360: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:39.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:39 smithi031 bash[22709]: cluster 2024-09-13T22:15:38.099141+0000 mgr.a (mgr.14150) 464 : cluster [DBG] pgmap v360: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:41.935 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:41 smithi096 bash[23620]: cluster 2024-09-13T22:15:40.099712+0000 mgr.a (mgr.14150) 465 : cluster [DBG] pgmap v361: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:41.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:41 smithi031 bash[22709]: cluster 2024-09-13T22:15:40.099712+0000 mgr.a (mgr.14150) 465 : cluster [DBG] pgmap v361: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:42.967 INFO:teuthology.orchestra.run.smithi031.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2024-09-13T22:15:43.261 INFO:teuthology.orchestra.run.smithi031.stderr:18 2024-09-13T22:15:43.274 INFO:teuthology.orchestra.run.smithi031.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2024-09-13T22:15:43.290 INFO:teuthology.orchestra.run.smithi031.stderr:++ cat crushmap.txt 2024-09-13T22:15:43.291 INFO:teuthology.orchestra.run.smithi031.stderr:+ CRUSH_MAP='# begin crush map 2024-09-13T22:15:43.291 INFO:teuthology.orchestra.run.smithi031.stderr:tunable choose_local_tries 0 2024-09-13T22:15:43.291 INFO:teuthology.orchestra.run.smithi031.stderr:tunable choose_local_fallback_tries 0 2024-09-13T22:15:43.292 INFO:teuthology.orchestra.run.smithi031.stderr:tunable choose_total_tries 50 2024-09-13T22:15:43.292 INFO:teuthology.orchestra.run.smithi031.stderr:tunable chooseleaf_descend_once 1 2024-09-13T22:15:43.292 INFO:teuthology.orchestra.run.smithi031.stderr:tunable chooseleaf_vary_r 1 2024-09-13T22:15:43.292 INFO:teuthology.orchestra.run.smithi031.stderr:tunable chooseleaf_stable 1 2024-09-13T22:15:43.292 INFO:teuthology.orchestra.run.smithi031.stderr:tunable straw_calc_version 1 2024-09-13T22:15:43.292 INFO:teuthology.orchestra.run.smithi031.stderr:tunable allowed_bucket_algs 54 2024-09-13T22:15:43.292 INFO:teuthology.orchestra.run.smithi031.stderr: 2024-09-13T22:15:43.292 INFO:teuthology.orchestra.run.smithi031.stderr:# devices 2024-09-13T22:15:43.292 INFO:teuthology.orchestra.run.smithi031.stderr:device 0 osd.0 class ssd 2024-09-13T22:15:43.292 INFO:teuthology.orchestra.run.smithi031.stderr:device 1 osd.1 class ssd 2024-09-13T22:15:43.292 INFO:teuthology.orchestra.run.smithi031.stderr:device 2 osd.2 class ssd 2024-09-13T22:15:43.292 INFO:teuthology.orchestra.run.smithi031.stderr:device 3 osd.3 class ssd 2024-09-13T22:15:43.293 INFO:teuthology.orchestra.run.smithi031.stderr: 2024-09-13T22:15:43.293 INFO:teuthology.orchestra.run.smithi031.stderr:# types 2024-09-13T22:15:43.293 INFO:teuthology.orchestra.run.smithi031.stderr:type 0 osd 2024-09-13T22:15:43.293 INFO:teuthology.orchestra.run.smithi031.stderr:type 1 host 2024-09-13T22:15:43.293 INFO:teuthology.orchestra.run.smithi031.stderr:type 2 chassis 2024-09-13T22:15:43.293 INFO:teuthology.orchestra.run.smithi031.stderr:type 3 rack 2024-09-13T22:15:43.293 INFO:teuthology.orchestra.run.smithi031.stderr:type 4 row 2024-09-13T22:15:43.293 INFO:teuthology.orchestra.run.smithi031.stderr:type 5 pdu 2024-09-13T22:15:43.293 INFO:teuthology.orchestra.run.smithi031.stderr:type 6 pod 2024-09-13T22:15:43.293 INFO:teuthology.orchestra.run.smithi031.stderr:type 7 room 2024-09-13T22:15:43.293 INFO:teuthology.orchestra.run.smithi031.stderr:type 8 datacenter 2024-09-13T22:15:43.293 INFO:teuthology.orchestra.run.smithi031.stderr:type 9 zone 2024-09-13T22:15:43.293 INFO:teuthology.orchestra.run.smithi031.stderr:type 10 region 2024-09-13T22:15:43.293 INFO:teuthology.orchestra.run.smithi031.stderr:type 11 root 2024-09-13T22:15:43.294 INFO:teuthology.orchestra.run.smithi031.stderr: 2024-09-13T22:15:43.294 INFO:teuthology.orchestra.run.smithi031.stderr:# buckets 2024-09-13T22:15:43.294 INFO:teuthology.orchestra.run.smithi031.stderr:host smithi031 { 2024-09-13T22:15:43.294 INFO:teuthology.orchestra.run.smithi031.stderr: id -3 # do not change unnecessarily 2024-09-13T22:15:43.294 INFO:teuthology.orchestra.run.smithi031.stderr: id -4 class ssd # do not change unnecessarily 2024-09-13T22:15:43.294 INFO:teuthology.orchestra.run.smithi031.stderr: # weight 0.17459 2024-09-13T22:15:43.294 INFO:teuthology.orchestra.run.smithi031.stderr: alg straw2 2024-09-13T22:15:43.294 INFO:teuthology.orchestra.run.smithi031.stderr: hash 0 # rjenkins1 2024-09-13T22:15:43.294 INFO:teuthology.orchestra.run.smithi031.stderr: item osd.0 weight 0.08730 2024-09-13T22:15:43.294 INFO:teuthology.orchestra.run.smithi031.stderr: item osd.1 weight 0.08730 2024-09-13T22:15:43.294 INFO:teuthology.orchestra.run.smithi031.stderr:} 2024-09-13T22:15:43.294 INFO:teuthology.orchestra.run.smithi031.stderr:host smithi096 { 2024-09-13T22:15:43.294 INFO:teuthology.orchestra.run.smithi031.stderr: id -5 # do not change unnecessarily 2024-09-13T22:15:43.295 INFO:teuthology.orchestra.run.smithi031.stderr: id -6 class ssd # do not change unnecessarily 2024-09-13T22:15:43.295 INFO:teuthology.orchestra.run.smithi031.stderr: # weight 0.17459 2024-09-13T22:15:43.295 INFO:teuthology.orchestra.run.smithi031.stderr: alg straw2 2024-09-13T22:15:43.295 INFO:teuthology.orchestra.run.smithi031.stderr: hash 0 # rjenkins1 2024-09-13T22:15:43.295 INFO:teuthology.orchestra.run.smithi031.stderr: item osd.2 weight 0.08730 2024-09-13T22:15:43.295 INFO:teuthology.orchestra.run.smithi031.stderr: item osd.3 weight 0.08730 2024-09-13T22:15:43.295 INFO:teuthology.orchestra.run.smithi031.stderr:} 2024-09-13T22:15:43.295 INFO:teuthology.orchestra.run.smithi031.stderr:root default { 2024-09-13T22:15:43.295 INFO:teuthology.orchestra.run.smithi031.stderr: id -1 # do not change unnecessarily 2024-09-13T22:15:43.295 INFO:teuthology.orchestra.run.smithi031.stderr: id -2 class ssd # do not change unnecessarily 2024-09-13T22:15:43.295 INFO:teuthology.orchestra.run.smithi031.stderr: # weight 0.34918 2024-09-13T22:15:43.295 INFO:teuthology.orchestra.run.smithi031.stderr: alg straw2 2024-09-13T22:15:43.295 INFO:teuthology.orchestra.run.smithi031.stderr: hash 0 # rjenkins1 2024-09-13T22:15:43.296 INFO:teuthology.orchestra.run.smithi031.stderr: item smithi031 weight 0.17459 2024-09-13T22:15:43.296 INFO:teuthology.orchestra.run.smithi031.stderr: item smithi096 weight 0.17459 2024-09-13T22:15:43.296 INFO:teuthology.orchestra.run.smithi031.stderr:} 2024-09-13T22:15:43.296 INFO:teuthology.orchestra.run.smithi031.stderr: 2024-09-13T22:15:43.296 INFO:teuthology.orchestra.run.smithi031.stderr:# rules 2024-09-13T22:15:43.296 INFO:teuthology.orchestra.run.smithi031.stderr:rule replicated_rule { 2024-09-13T22:15:43.296 INFO:teuthology.orchestra.run.smithi031.stderr: id 0 2024-09-13T22:15:43.296 INFO:teuthology.orchestra.run.smithi031.stderr: type replicated 2024-09-13T22:15:43.296 INFO:teuthology.orchestra.run.smithi031.stderr: step take default 2024-09-13T22:15:43.296 INFO:teuthology.orchestra.run.smithi031.stderr: step choose firstn 0 type osd 2024-09-13T22:15:43.296 INFO:teuthology.orchestra.run.smithi031.stderr: step emit 2024-09-13T22:15:43.296 INFO:teuthology.orchestra.run.smithi031.stderr:} 2024-09-13T22:15:43.296 INFO:teuthology.orchestra.run.smithi031.stderr: 2024-09-13T22:15:43.296 INFO:teuthology.orchestra.run.smithi031.stderr:# end crush map' 2024-09-13T22:15:43.296 INFO:teuthology.orchestra.run.smithi031.stderr:+ grep -q smithi138 2024-09-13T22:15:43.935 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:43 smithi096 bash[23620]: cluster 2024-09-13T22:15:42.100241+0000 mgr.a (mgr.14150) 466 : cluster [DBG] pgmap v362: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:43.936 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:43 smithi096 bash[23620]: audit 2024-09-13T22:15:42.522611+0000 mon.a (mon.0) 1114 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:43.936 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:43 smithi096 bash[23620]: audit 2024-09-13T22:15:42.531222+0000 mon.a (mon.0) 1115 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:43.936 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:43 smithi096 bash[23620]: audit 2024-09-13T22:15:42.540800+0000 mon.a (mon.0) 1116 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:43.936 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:43 smithi096 bash[23620]: audit 2024-09-13T22:15:43.263787+0000 mon.a (mon.0) 1117 : audit [DBG] from='client.? 172.21.15.31:0/2316405606' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-09-13T22:15:43.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:43 smithi031 bash[22709]: cluster 2024-09-13T22:15:42.100241+0000 mgr.a (mgr.14150) 466 : cluster [DBG] pgmap v362: 1 pgs: 1 active+clean; 577 KiB data, 118 MiB used, 357 GiB / 358 GiB avail 2024-09-13T22:15:43.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:43 smithi031 bash[22709]: audit 2024-09-13T22:15:42.522611+0000 mon.a (mon.0) 1114 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:43.969 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:43 smithi031 bash[22709]: audit 2024-09-13T22:15:42.531222+0000 mon.a (mon.0) 1115 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:43.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:43 smithi031 bash[22709]: audit 2024-09-13T22:15:42.540800+0000 mon.a (mon.0) 1116 : audit [INF] from='mgr.14150 172.21.15.31:0/201303100' entity='mgr.a' 2024-09-13T22:15:43.970 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:43 smithi031 bash[22709]: audit 2024-09-13T22:15:43.263787+0000 mon.a (mon.0) 1117 : audit [DBG] from='client.? 172.21.15.31:0/2316405606' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-09-13T22:15:43.984 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-09-13T22:15:43.994 INFO:tasks.cephadm:Teardown begin 2024-09-13T22:15:43.994 DEBUG:teuthology.orchestra.run.smithi031:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-13T22:15:44.008 DEBUG:teuthology.orchestra.run.smithi096:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-13T22:15:44.023 DEBUG:teuthology.orchestra.run.smithi138:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-13T22:15:44.038 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-09-13T22:15:44.038 DEBUG:teuthology.orchestra.run.smithi031:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-13T22:15:44.056 DEBUG:teuthology.orchestra.run.smithi096:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-13T22:15:44.070 DEBUG:teuthology.orchestra.run.smithi138:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-13T22:15:44.086 INFO:tasks.cephadm:Stopping all daemons... 2024-09-13T22:15:44.087 INFO:tasks.cephadm.mon.a:Stopping mon.a... 2024-09-13T22:15:44.087 DEBUG:teuthology.orchestra.run.smithi031:> sudo systemctl stop ceph-89616338-721b-11ef-bceb-c7b262605968@mon.a 2024-09-13T22:15:44.237 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:44 smithi031 systemd[1]: Stopping Ceph mon.a for 89616338-721b-11ef-bceb-c7b262605968... 2024-09-13T22:15:44.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:44 smithi031 bash[22709]: debug 2024-09-13T22:15:44.237+0000 7fe2301c0640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.a -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-stderr=true (PID: 1) UID: 0 2024-09-13T22:15:44.469 INFO:journalctl@ceph.mon.a.smithi031.stdout:Sep 13 22:15:44 smithi031 bash[22709]: debug 2024-09-13T22:15:44.237+0000 7fe2301c0640 -1 mon.a@0(leader) e4 *** Got Signal Terminated *** 2024-09-13T22:15:45.079 DEBUG:teuthology.orchestra.run.smithi031:> sudo pkill -f 'journalctl -f -n 0 -u ceph-89616338-721b-11ef-bceb-c7b262605968@mon.a.service' 2024-09-13T22:15:45.106 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-13T22:15:45.106 INFO:tasks.cephadm.mon.a:Stopped mon.a 2024-09-13T22:15:45.106 INFO:tasks.cephadm.mon.c:Stopping mon.b... 2024-09-13T22:15:45.106 DEBUG:teuthology.orchestra.run.smithi096:> sudo systemctl stop ceph-89616338-721b-11ef-bceb-c7b262605968@mon.b 2024-09-13T22:15:45.387 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:45 smithi096 systemd[1]: Stopping Ceph mon.b for 89616338-721b-11ef-bceb-c7b262605968... 2024-09-13T22:15:45.387 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:45 smithi096 bash[23620]: debug 2024-09-13T22:15:45.236+0000 7f7680fa1640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.b -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-stderr=true (PID: 1) UID: 0 2024-09-13T22:15:45.388 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:45 smithi096 bash[23620]: debug 2024-09-13T22:15:45.236+0000 7f7680fa1640 -1 mon.b@1(peon) e4 *** Got Signal Terminated *** 2024-09-13T22:15:46.435 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 13 22:15:46 smithi096 bash[37596]: ceph-89616338-721b-11ef-bceb-c7b262605968-mon-b 2024-09-13T22:15:46.466 DEBUG:teuthology.orchestra.run.smithi096:> sudo pkill -f 'journalctl -f -n 0 -u ceph-89616338-721b-11ef-bceb-c7b262605968@mon.b.service' 2024-09-13T22:15:46.543 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-13T22:15:46.543 INFO:tasks.cephadm.mon.c:Stopped mon.b 2024-09-13T22:15:46.543 INFO:tasks.cephadm.mon.c:Stopping mon.c... 2024-09-13T22:15:46.543 DEBUG:teuthology.orchestra.run.smithi138:> sudo systemctl stop ceph-89616338-721b-11ef-bceb-c7b262605968@mon.c 2024-09-13T22:15:46.576 DEBUG:teuthology.orchestra.run.smithi138:> sudo pkill -f 'journalctl -f -n 0 -u ceph-89616338-721b-11ef-bceb-c7b262605968@mon.c.service' 2024-09-13T22:15:46.662 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-13T22:15:46.662 INFO:tasks.cephadm.mon.c:Stopped mon.c 2024-09-13T22:15:46.663 INFO:tasks.cephadm.mgr.a:Stopping mgr.a... 2024-09-13T22:15:46.663 DEBUG:teuthology.orchestra.run.smithi031:> sudo systemctl stop ceph-89616338-721b-11ef-bceb-c7b262605968@mgr.a 2024-09-13T22:15:46.969 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:15:46 smithi031 systemd[1]: Stopping Ceph mgr.a for 89616338-721b-11ef-bceb-c7b262605968... 2024-09-13T22:15:46.969 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:15:46 smithi031 bash[22966]: debug 2024-09-13T22:15:46.813+0000 7fb1d0e3f640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mgr -n mgr.a -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug (PID: 1) UID: 0 2024-09-13T22:15:46.969 INFO:journalctl@ceph.mgr.a.smithi031.stdout:Sep 13 22:15:46 smithi031 bash[22966]: debug 2024-09-13T22:15:46.813+0000 7fb1d0e3f640 -1 mgr handle_mgr_signal *** Got signal Terminated *** 2024-09-13T22:15:47.589 DEBUG:teuthology.orchestra.run.smithi031:> sudo pkill -f 'journalctl -f -n 0 -u ceph-89616338-721b-11ef-bceb-c7b262605968@mgr.a.service' 2024-09-13T22:15:47.612 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-13T22:15:47.612 INFO:tasks.cephadm.mgr.a:Stopped mgr.a 2024-09-13T22:15:47.612 INFO:tasks.cephadm.mgr.b:Stopping mgr.b... 2024-09-13T22:15:47.613 DEBUG:teuthology.orchestra.run.smithi096:> sudo systemctl stop ceph-89616338-721b-11ef-bceb-c7b262605968@mgr.b 2024-09-13T22:15:47.875 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 13 22:15:47 smithi096 systemd[1]: Stopping Ceph mgr.b for 89616338-721b-11ef-bceb-c7b262605968... 2024-09-13T22:15:49.066 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 13 22:15:48 smithi096 bash[37782]: ceph-89616338-721b-11ef-bceb-c7b262605968-mgr-b 2024-09-13T22:15:49.081 DEBUG:teuthology.orchestra.run.smithi096:> sudo pkill -f 'journalctl -f -n 0 -u ceph-89616338-721b-11ef-bceb-c7b262605968@mgr.b.service' 2024-09-13T22:15:49.102 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-13T22:15:49.102 INFO:tasks.cephadm.mgr.b:Stopped mgr.b 2024-09-13T22:15:49.102 INFO:tasks.cephadm.osd.0:Stopping osd.0... 2024-09-13T22:15:49.102 DEBUG:teuthology.orchestra.run.smithi031:> sudo systemctl stop ceph-89616338-721b-11ef-bceb-c7b262605968@osd.0 2024-09-13T22:15:49.469 INFO:journalctl@ceph.osd.0.smithi031.stdout:Sep 13 22:15:49 smithi031 systemd[1]: Stopping Ceph osd.0 for 89616338-721b-11ef-bceb-c7b262605968... 2024-09-13T22:15:49.470 INFO:journalctl@ceph.osd.0.smithi031.stdout:Sep 13 22:15:49 smithi031 bash[32014]: debug 2024-09-13T22:15:49.249+0000 7f8cdc615640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-osd -n osd.0 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug (PID: 1) UID: 0 2024-09-13T22:15:49.470 INFO:journalctl@ceph.osd.0.smithi031.stdout:Sep 13 22:15:49 smithi031 bash[32014]: debug 2024-09-13T22:15:49.249+0000 7f8cdc615640 -1 osd.0 58 *** Got signal Terminated *** 2024-09-13T22:15:49.470 INFO:journalctl@ceph.osd.0.smithi031.stdout:Sep 13 22:15:49 smithi031 bash[32014]: debug 2024-09-13T22:15:49.249+0000 7f8cdc615640 -1 osd.0 58 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-13T22:15:55.275 INFO:journalctl@ceph.osd.0.smithi031.stdout:Sep 13 22:15:54 smithi031 bash[45179]: ceph-89616338-721b-11ef-bceb-c7b262605968-osd-0 2024-09-13T22:15:55.275 INFO:journalctl@ceph.osd.0.smithi031.stdout:Sep 13 22:15:55 smithi031 bash[45415]: Error response from daemon: No such container: ceph-89616338-721b-11ef-bceb-c7b262605968-osd-0 2024-09-13T22:15:56.976 DEBUG:teuthology.orchestra.run.smithi031:> sudo pkill -f 'journalctl -f -n 0 -u ceph-89616338-721b-11ef-bceb-c7b262605968@osd.0.service' 2024-09-13T22:15:57.004 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-13T22:15:57.028 INFO:tasks.cephadm.osd.0:Stopped osd.0 2024-09-13T22:15:57.029 INFO:tasks.cephadm.osd.1:Stopping osd.1... 2024-09-13T22:15:57.029 DEBUG:teuthology.orchestra.run.smithi031:> sudo systemctl stop ceph-89616338-721b-11ef-bceb-c7b262605968@osd.1 2024-09-13T22:15:57.469 INFO:journalctl@ceph.osd.1.smithi031.stdout:Sep 13 22:15:57 smithi031 systemd[1]: Stopping Ceph osd.1 for 89616338-721b-11ef-bceb-c7b262605968... 2024-09-13T22:15:57.469 INFO:journalctl@ceph.osd.1.smithi031.stdout:Sep 13 22:15:57 smithi031 bash[35546]: debug 2024-09-13T22:15:57.173+0000 7f0f380d8640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-osd -n osd.1 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug (PID: 1) UID: 0 2024-09-13T22:15:57.470 INFO:journalctl@ceph.osd.1.smithi031.stdout:Sep 13 22:15:57 smithi031 bash[35546]: debug 2024-09-13T22:15:57.173+0000 7f0f380d8640 -1 osd.1 58 *** Got signal Terminated *** 2024-09-13T22:15:57.470 INFO:journalctl@ceph.osd.1.smithi031.stdout:Sep 13 22:15:57 smithi031 bash[35546]: debug 2024-09-13T22:15:57.173+0000 7f0f380d8640 -1 osd.1 58 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-13T22:16:03.391 INFO:journalctl@ceph.osd.1.smithi031.stdout:Sep 13 22:16:03 smithi031 bash[45544]: ceph-89616338-721b-11ef-bceb-c7b262605968-osd-1 2024-09-13T22:16:03.391 INFO:journalctl@ceph.osd.1.smithi031.stdout:Sep 13 22:16:03 smithi031 bash[45681]: Error response from daemon: No such container: ceph-89616338-721b-11ef-bceb-c7b262605968-osd-1 2024-09-13T22:16:05.041 DEBUG:teuthology.orchestra.run.smithi031:> sudo pkill -f 'journalctl -f -n 0 -u ceph-89616338-721b-11ef-bceb-c7b262605968@osd.1.service' 2024-09-13T22:16:05.080 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-13T22:16:05.080 INFO:tasks.cephadm.osd.1:Stopped osd.1 2024-09-13T22:16:05.081 INFO:tasks.cephadm.osd.2:Stopping osd.2... 2024-09-13T22:16:05.081 DEBUG:teuthology.orchestra.run.smithi096:> sudo systemctl stop ceph-89616338-721b-11ef-bceb-c7b262605968@osd.2 2024-09-13T22:16:05.436 INFO:journalctl@ceph.osd.2.smithi096.stdout:Sep 13 22:16:05 smithi096 systemd[1]: Stopping Ceph osd.2 for 89616338-721b-11ef-bceb-c7b262605968... 2024-09-13T22:16:05.436 INFO:journalctl@ceph.osd.2.smithi096.stdout:Sep 13 22:16:05 smithi096 bash[29136]: debug 2024-09-13T22:16:05.224+0000 7f476aeec640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-osd -n osd.2 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug (PID: 1) UID: 0 2024-09-13T22:16:05.436 INFO:journalctl@ceph.osd.2.smithi096.stdout:Sep 13 22:16:05 smithi096 bash[29136]: debug 2024-09-13T22:16:05.224+0000 7f476aeec640 -1 osd.2 58 *** Got signal Terminated *** 2024-09-13T22:16:05.436 INFO:journalctl@ceph.osd.2.smithi096.stdout:Sep 13 22:16:05 smithi096 bash[29136]: debug 2024-09-13T22:16:05.224+0000 7f476aeec640 -1 osd.2 58 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-13T22:16:11.401 INFO:journalctl@ceph.osd.2.smithi096.stdout:Sep 13 22:16:11 smithi096 bash[38236]: ceph-89616338-721b-11ef-bceb-c7b262605968-osd-2 2024-09-13T22:16:11.401 INFO:journalctl@ceph.osd.2.smithi096.stdout:Sep 13 22:16:11 smithi096 bash[38493]: Error response from daemon: No such container: ceph-89616338-721b-11ef-bceb-c7b262605968-osd-2 2024-09-13T22:16:13.159 DEBUG:teuthology.orchestra.run.smithi096:> sudo pkill -f 'journalctl -f -n 0 -u ceph-89616338-721b-11ef-bceb-c7b262605968@osd.2.service' 2024-09-13T22:16:13.184 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-13T22:16:13.184 INFO:tasks.cephadm.osd.2:Stopped osd.2 2024-09-13T22:16:13.185 INFO:tasks.cephadm.osd.3:Stopping osd.3... 2024-09-13T22:16:13.185 DEBUG:teuthology.orchestra.run.smithi096:> sudo systemctl stop ceph-89616338-721b-11ef-bceb-c7b262605968@osd.3 2024-09-13T22:16:13.436 INFO:journalctl@ceph.osd.3.smithi096.stdout:Sep 13 22:16:13 smithi096 systemd[1]: Stopping Ceph osd.3 for 89616338-721b-11ef-bceb-c7b262605968... 2024-09-13T22:16:13.436 INFO:journalctl@ceph.osd.3.smithi096.stdout:Sep 13 22:16:13 smithi096 bash[32757]: debug 2024-09-13T22:16:13.336+0000 7f0fc8c79640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-osd -n osd.3 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug (PID: 1) UID: 0 2024-09-13T22:16:13.436 INFO:journalctl@ceph.osd.3.smithi096.stdout:Sep 13 22:16:13 smithi096 bash[32757]: debug 2024-09-13T22:16:13.336+0000 7f0fc8c79640 -1 osd.3 58 *** Got signal Terminated *** 2024-09-13T22:16:13.436 INFO:journalctl@ceph.osd.3.smithi096.stdout:Sep 13 22:16:13 smithi096 bash[32757]: debug 2024-09-13T22:16:13.336+0000 7f0fc8c79640 -1 osd.3 58 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-13T22:16:16.436 INFO:journalctl@ceph.osd.3.smithi096.stdout:Sep 13 22:16:16 smithi096 bash[32757]: debug 2024-09-13T22:16:16.116+0000 7f0fc1287640 -1 osd.3 58 heartbeat_check: no reply from 172.21.15.31:6806 osd.0 since back 2024-09-13T22:15:52.774468+0000 front 2024-09-13T22:15:52.774355+0000 (oldest deadline 2024-09-13T22:16:15.674084+0000) 2024-09-13T22:16:17.435 INFO:journalctl@ceph.osd.3.smithi096.stdout:Sep 13 22:16:17 smithi096 bash[32757]: debug 2024-09-13T22:16:17.136+0000 7f0fc1287640 -1 osd.3 58 heartbeat_check: no reply from 172.21.15.31:6806 osd.0 since back 2024-09-13T22:15:52.774468+0000 front 2024-09-13T22:15:52.774355+0000 (oldest deadline 2024-09-13T22:16:15.674084+0000) 2024-09-13T22:16:18.435 INFO:journalctl@ceph.osd.3.smithi096.stdout:Sep 13 22:16:18 smithi096 bash[32757]: debug 2024-09-13T22:16:18.156+0000 7f0fc1287640 -1 osd.3 58 heartbeat_check: no reply from 172.21.15.31:6806 osd.0 since back 2024-09-13T22:15:52.774468+0000 front 2024-09-13T22:15:52.774355+0000 (oldest deadline 2024-09-13T22:16:15.674084+0000) 2024-09-13T22:16:19.571 INFO:journalctl@ceph.osd.3.smithi096.stdout:Sep 13 22:16:19 smithi096 bash[38666]: ceph-89616338-721b-11ef-bceb-c7b262605968-osd-3 2024-09-13T22:16:19.571 INFO:journalctl@ceph.osd.3.smithi096.stdout:Sep 13 22:16:19 smithi096 bash[38972]: ceph-89616338-721b-11ef-bceb-c7b262605968-osd-3 2024-09-13T22:16:21.140 DEBUG:teuthology.orchestra.run.smithi096:> sudo pkill -f 'journalctl -f -n 0 -u ceph-89616338-721b-11ef-bceb-c7b262605968@osd.3.service' 2024-09-13T22:16:21.175 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-13T22:16:21.175 INFO:tasks.cephadm.osd.3:Stopped osd.3 2024-09-13T22:16:21.175 INFO:tasks.cephadm.osd.4:Stopping osd.4... 2024-09-13T22:16:21.175 DEBUG:teuthology.orchestra.run.smithi138:> sudo systemctl stop ceph-89616338-721b-11ef-bceb-c7b262605968@osd.4 2024-09-13T22:16:21.209 DEBUG:teuthology.orchestra.run.smithi138:> sudo pkill -f 'journalctl -f -n 0 -u ceph-89616338-721b-11ef-bceb-c7b262605968@osd.4.service' 2024-09-13T22:16:21.279 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-13T22:16:21.279 INFO:tasks.cephadm.osd.4:Stopped osd.4 2024-09-13T22:16:21.279 INFO:tasks.cephadm.osd.5:Stopping osd.5... 2024-09-13T22:16:21.279 DEBUG:teuthology.orchestra.run.smithi138:> sudo systemctl stop ceph-89616338-721b-11ef-bceb-c7b262605968@osd.5 2024-09-13T22:16:21.358 DEBUG:teuthology.orchestra.run.smithi138:> sudo pkill -f 'journalctl -f -n 0 -u ceph-89616338-721b-11ef-bceb-c7b262605968@osd.5.service' 2024-09-13T22:16:21.435 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-13T22:16:21.435 INFO:tasks.cephadm.osd.5:Stopped osd.5 2024-09-13T22:16:21.435 DEBUG:teuthology.orchestra.run.smithi031:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 89616338-721b-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-13T22:16:21.625 INFO:teuthology.orchestra.run.smithi031.stdout:Deleting cluster with fsid: 89616338-721b-11ef-bceb-c7b262605968 2024-09-13T22:16:24.366 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 89616338-721b-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-13T22:16:24.549 INFO:teuthology.orchestra.run.smithi096.stdout:Deleting cluster with fsid: 89616338-721b-11ef-bceb-c7b262605968 2024-09-13T22:16:27.253 DEBUG:teuthology.orchestra.run.smithi138:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 89616338-721b-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-13T22:16:27.432 INFO:teuthology.orchestra.run.smithi138.stdout:Deleting cluster with fsid: 89616338-721b-11ef-bceb-c7b262605968 2024-09-13T22:16:28.927 DEBUG:teuthology.orchestra.run.smithi031:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-13T22:16:28.942 DEBUG:teuthology.orchestra.run.smithi096:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-13T22:16:28.956 DEBUG:teuthology.orchestra.run.smithi138:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-13T22:16:28.968 INFO:tasks.cephadm:Archiving crash dumps... 2024-09-13T22:16:28.970 DEBUG:teuthology.misc:Transferring archived files from smithi031:/var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-09-13_21:08:03-orch-squid-distro-default-smithi/7904244/remote/smithi031/crash 2024-09-13T22:16:28.970 DEBUG:teuthology.orchestra.run.smithi031:> sudo tar c -f - -C /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/crash -- . 2024-09-13T22:16:28.994 INFO:teuthology.orchestra.run.smithi031.stderr:tar: /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-13T22:16:28.994 INFO:teuthology.orchestra.run.smithi031.stderr:tar: Error is not recoverable: exiting now 2024-09-13T22:16:28.996 DEBUG:teuthology.misc:Transferring archived files from smithi096:/var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-09-13_21:08:03-orch-squid-distro-default-smithi/7904244/remote/smithi096/crash 2024-09-13T22:16:28.997 DEBUG:teuthology.orchestra.run.smithi096:> sudo tar c -f - -C /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/crash -- . 2024-09-13T22:16:29.010 INFO:teuthology.orchestra.run.smithi096.stderr:tar: /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-13T22:16:29.010 INFO:teuthology.orchestra.run.smithi096.stderr:tar: Error is not recoverable: exiting now 2024-09-13T22:16:29.012 DEBUG:teuthology.misc:Transferring archived files from smithi138:/var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-09-13_21:08:03-orch-squid-distro-default-smithi/7904244/remote/smithi138/crash 2024-09-13T22:16:29.012 DEBUG:teuthology.orchestra.run.smithi138:> sudo tar c -f - -C /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/crash -- . 2024-09-13T22:16:29.023 INFO:teuthology.orchestra.run.smithi138.stderr:tar: /var/lib/ceph/89616338-721b-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-13T22:16:29.023 INFO:teuthology.orchestra.run.smithi138.stderr:tar: Error is not recoverable: exiting now 2024-09-13T22:16:29.024 INFO:tasks.cephadm:Checking cluster log for badness... 2024-09-13T22:16:29.024 DEBUG:teuthology.orchestra.run.smithi031:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph.log | egrep CEPHADM_ | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v MON_DOWN | egrep -v 'mons down' | egrep -v 'mon down' | egrep -v 'out of quorum' | egrep -v CEPHADM_STRAY_HOST | egrep -v CEPHADM_STRAY_DAEMON | egrep -v CEPHADM_FAILED_DAEMON | head -n 1 2024-09-13T22:16:29.059 INFO:tasks.cephadm:Compressing logs... 2024-09-13T22:16:29.060 DEBUG:teuthology.orchestra.run.smithi031:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-09-13T22:16:29.104 DEBUG:teuthology.orchestra.run.smithi096:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-09-13T22:16:29.107 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-09-13T22:16:29.113 INFO:teuthology.orchestra.run.smithi031.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-09-13T22:16:29.118 INFO:teuthology.orchestra.run.smithi096.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-09-13T22:16:29.119 INFO:teuthology.orchestra.run.smithi031.stderr:gzip -5 --verbose -- /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph-osd.0.log 2024-09-13T22:16:29.119 INFO:teuthology.orchestra.run.smithi138.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-09-13T22:16:29.120 INFO:teuthology.orchestra.run.smithi031.stderr:gzip -5 --verbose -- /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph-mon.a.log 2024-09-13T22:16:29.120 INFO:teuthology.orchestra.run.smithi031.stderr:/var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph-osd.0.log: gzip -5 --verbose -- /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph.cephadm.log 2024-09-13T22:16:29.120 INFO:teuthology.orchestra.run.smithi031.stderr:gzip -5 --verbose -- /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph-osd.1.log 2024-09-13T22:16:29.120 INFO:teuthology.orchestra.run.smithi031.stderr:/var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph-mon.a.log: /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph.log 2024-09-13T22:16:29.121 INFO:teuthology.orchestra.run.smithi031.stderr:/var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph-osd.1.log: 82.7% -- replaced with /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph.cephadm.log.gz 2024-09-13T22:16:29.121 INFO:teuthology.orchestra.run.smithi031.stderr:gzip -5 --verbose -- /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph-volume.log 2024-09-13T22:16:29.122 INFO:teuthology.orchestra.run.smithi031.stderr:gzip -5 --verbose -- /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph.audit.log 2024-09-13T22:16:29.122 INFO:teuthology.orchestra.run.smithi031.stderr:/var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph.log: /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph-mgr.a.log 2024-09-13T22:16:29.122 INFO:teuthology.orchestra.run.smithi031.stderr:/var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-13T22:16:29.123 INFO:teuthology.orchestra.run.smithi031.stderr:/var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph-mgr.a.log: /var/log/ceph/cephadm.log: 86.7% -- replaced with /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph.log.gz 2024-09-13T22:16:29.124 INFO:teuthology.orchestra.run.smithi096.stderr:gzip -5 --verbose -- /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph-osd.2.log 2024-09-13T22:16:29.125 INFO:teuthology.orchestra.run.smithi031.stderr: 90.4% -- replaced with /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph.audit.log.gz 2024-09-13T22:16:29.125 INFO:teuthology.orchestra.run.smithi096.stderr:gzip -5 --verbose -- /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph.cephadm.log 2024-09-13T22:16:29.125 INFO:teuthology.orchestra.run.smithi096.stderr:/var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph-osd.2.log: gzip -5 --verbose -- /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph-osd.3.log 2024-09-13T22:16:29.125 INFO:teuthology.orchestra.run.smithi096.stderr:gzip -5 --verbose -- /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph.log 2024-09-13T22:16:29.126 INFO:teuthology.orchestra.run.smithi096.stderr:/var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph.cephadm.log: /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph-osd.3.log: gzip -5 --verbose -- /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph-volume.log 2024-09-13T22:16:29.127 INFO:teuthology.orchestra.run.smithi096.stderr: 82.3% -- replaced with /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph.cephadm.log.gz 2024-09-13T22:16:29.127 INFO:teuthology.orchestra.run.smithi096.stderr:/var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph.log: gzip -5 --verbose -- /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph-mgr.b.log 2024-09-13T22:16:29.127 INFO:teuthology.orchestra.run.smithi031.stderr: 88.0% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-13T22:16:29.128 INFO:teuthology.orchestra.run.smithi096.stderr:gzip -5/var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph-volume.log: --verbose -- /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph.audit.log 2024-09-13T22:16:29.128 INFO:teuthology.orchestra.run.smithi096.stderr:/var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph-mgr.b.log: gzip -5 --verbose -- /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph-mon.b.log 2024-09-13T22:16:29.128 INFO:teuthology.orchestra.run.smithi096.stderr: 86.6% -- replaced with /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph.log.gz 2024-09-13T22:16:29.128 INFO:teuthology.orchestra.run.smithi096.stderr:/var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-13T22:16:29.130 INFO:teuthology.orchestra.run.smithi096.stderr:/var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph-mon.b.log: /var/log/ceph/cephadm.log: 90.6% -- replaced with /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph.audit.log.gz 2024-09-13T22:16:29.130 INFO:teuthology.orchestra.run.smithi138.stderr:gzip -5 --verbose -- /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph.cephadm.log 2024-09-13T22:16:29.130 INFO:teuthology.orchestra.run.smithi138.stderr:gzip -5 --verbose -- /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph-osd.5.log 2024-09-13T22:16:29.131 INFO:teuthology.orchestra.run.smithi096.stderr: 86.5% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-13T22:16:29.132 INFO:teuthology.orchestra.run.smithi138.stderr:/var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph.cephadm.log: 80.3% -- replaced with /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph.cephadm.log.gz 2024-09-13T22:16:29.132 INFO:teuthology.orchestra.run.smithi138.stderr:gzip -5 --verbose -- /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph.log 2024-09-13T22:16:29.132 INFO:teuthology.orchestra.run.smithi138.stderr:gzip -5 --verbose -- /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph-volume.log 2024-09-13T22:16:29.132 INFO:teuthology.orchestra.run.smithi138.stderr:/var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph-osd.5.log: /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph.log: gzip -5 --verbose -- /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph-mon.c.log 2024-09-13T22:16:29.134 INFO:teuthology.orchestra.run.smithi138.stderr:/var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph.audit.log 2024-09-13T22:16:29.135 INFO:teuthology.orchestra.run.smithi138.stderr:/var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph-mon.c.log: 86.9% -- replaced with /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph.log.gz 2024-09-13T22:16:29.135 INFO:teuthology.orchestra.run.smithi138.stderr:gzip -5 --verbose -- /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph-osd.4.log 2024-09-13T22:16:29.135 INFO:teuthology.orchestra.run.smithi138.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-13T22:16:29.135 INFO:teuthology.orchestra.run.smithi096.stderr: 91.5% -- replaced with /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph-mgr.b.log.gz 2024-09-13T22:16:29.136 INFO:teuthology.orchestra.run.smithi138.stderr:/var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph-osd.4.log: /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph.audit.log: /var/log/ceph/cephadm.log: 90.6% -- replaced with /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph.audit.log.gz 2024-09-13T22:16:29.137 INFO:teuthology.orchestra.run.smithi138.stderr: 85.2% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-13T22:16:29.144 INFO:teuthology.orchestra.run.smithi031.stderr: 91.6% -- replaced with /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph-volume.log.gz 2024-09-13T22:16:29.151 INFO:teuthology.orchestra.run.smithi138.stderr: 91.7% -- replaced with /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph-volume.log.gz 2024-09-13T22:16:29.161 INFO:teuthology.orchestra.run.smithi096.stderr: 91.7% -- replaced with /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph-volume.log.gz 2024-09-13T22:16:29.166 INFO:teuthology.orchestra.run.smithi138.stderr: 92.7% -- replaced with /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph-osd.4.log.gz 2024-09-13T22:16:29.167 INFO:teuthology.orchestra.run.smithi138.stderr: 92.6% -- replaced with /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph-osd.5.log.gz 2024-09-13T22:16:29.184 INFO:teuthology.orchestra.run.smithi031.stderr: 93.1% -- replaced with /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph-osd.0.log.gz 2024-09-13T22:16:29.189 INFO:teuthology.orchestra.run.smithi096.stderr: 92.8% -- replaced with /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph-osd.3.log.gz 2024-09-13T22:16:29.201 INFO:teuthology.orchestra.run.smithi031.stderr: 93.2% -- replaced with /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph-osd.1.log.gz 2024-09-13T22:16:29.227 INFO:teuthology.orchestra.run.smithi096.stderr: 93.3% -- replaced with /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph-osd.2.log.gz 2024-09-13T22:16:29.232 INFO:teuthology.orchestra.run.smithi138.stderr: 93.1% -- replaced with /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph-mon.c.log.gz 2024-09-13T22:16:29.234 INFO:teuthology.orchestra.run.smithi138.stderr: 2024-09-13T22:16:29.234 INFO:teuthology.orchestra.run.smithi138.stderr:real 0m0.123s 2024-09-13T22:16:29.234 INFO:teuthology.orchestra.run.smithi138.stderr:user 0m0.199s 2024-09-13T22:16:29.234 INFO:teuthology.orchestra.run.smithi138.stderr:sys 0m0.020s 2024-09-13T22:16:29.257 INFO:teuthology.orchestra.run.smithi096.stderr: 92.8% -- replaced with /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph-mon.b.log.gz 2024-09-13T22:16:29.258 INFO:teuthology.orchestra.run.smithi096.stderr: 2024-09-13T22:16:29.258 INFO:teuthology.orchestra.run.smithi096.stderr:real 0m0.150s 2024-09-13T22:16:29.259 INFO:teuthology.orchestra.run.smithi096.stderr:user 0m0.353s 2024-09-13T22:16:29.259 INFO:teuthology.orchestra.run.smithi096.stderr:sys 0m0.018s 2024-09-13T22:16:29.260 INFO:teuthology.orchestra.run.smithi031.stderr: 88.1% -- replaced with /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph-mgr.a.log.gz 2024-09-13T22:16:29.498 INFO:teuthology.orchestra.run.smithi031.stderr: 91.3% -- replaced with /var/log/ceph/89616338-721b-11ef-bceb-c7b262605968/ceph-mon.a.log.gz 2024-09-13T22:16:29.499 INFO:teuthology.orchestra.run.smithi031.stderr: 2024-09-13T22:16:29.499 INFO:teuthology.orchestra.run.smithi031.stderr:real 0m0.393s 2024-09-13T22:16:29.499 INFO:teuthology.orchestra.run.smithi031.stderr:user 0m0.692s 2024-09-13T22:16:29.499 INFO:teuthology.orchestra.run.smithi031.stderr:sys 0m0.025s 2024-09-13T22:16:29.500 INFO:tasks.cephadm:Archiving logs... 2024-09-13T22:16:29.500 DEBUG:teuthology.misc:Transferring archived files from smithi031:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-09-13_21:08:03-orch-squid-distro-default-smithi/7904244/remote/smithi031/log 2024-09-13T22:16:29.502 DEBUG:teuthology.orchestra.run.smithi031:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-13T22:16:29.676 DEBUG:teuthology.misc:Transferring archived files from smithi096:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-09-13_21:08:03-orch-squid-distro-default-smithi/7904244/remote/smithi096/log 2024-09-13T22:16:29.677 DEBUG:teuthology.orchestra.run.smithi096:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-13T22:16:29.740 DEBUG:teuthology.misc:Transferring archived files from smithi138:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-09-13_21:08:03-orch-squid-distro-default-smithi/7904244/remote/smithi138/log 2024-09-13T22:16:29.740 DEBUG:teuthology.orchestra.run.smithi138:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-13T22:16:29.783 INFO:tasks.cephadm:Removing cluster... 2024-09-13T22:16:29.784 DEBUG:teuthology.orchestra.run.smithi031:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 89616338-721b-11ef-bceb-c7b262605968 --force 2024-09-13T22:16:29.975 INFO:teuthology.orchestra.run.smithi031.stdout:Deleting cluster with fsid: 89616338-721b-11ef-bceb-c7b262605968 2024-09-13T22:16:31.313 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 89616338-721b-11ef-bceb-c7b262605968 --force 2024-09-13T22:16:31.497 INFO:teuthology.orchestra.run.smithi096.stdout:Deleting cluster with fsid: 89616338-721b-11ef-bceb-c7b262605968 2024-09-13T22:16:32.847 DEBUG:teuthology.orchestra.run.smithi138:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 89616338-721b-11ef-bceb-c7b262605968 --force 2024-09-13T22:16:33.032 INFO:teuthology.orchestra.run.smithi138.stdout:Deleting cluster with fsid: 89616338-721b-11ef-bceb-c7b262605968 2024-09-13T22:16:34.370 INFO:tasks.cephadm:Removing cephadm ... 2024-09-13T22:16:34.370 DEBUG:teuthology.orchestra.run.smithi031:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-13T22:16:34.377 DEBUG:teuthology.orchestra.run.smithi096:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-13T22:16:34.383 DEBUG:teuthology.orchestra.run.smithi138:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-13T22:16:34.389 INFO:tasks.cephadm:Teardown complete 2024-09-13T22:16:34.389 DEBUG:teuthology.run_tasks:Unwinding manager install 2024-09-13T22:16:34.398 INFO:teuthology.task.install.util:Removing shipped files: /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer... 2024-09-13T22:16:34.398 DEBUG:teuthology.orchestra.run.smithi031:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-13T22:16:34.420 DEBUG:teuthology.orchestra.run.smithi096:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-13T22:16:34.428 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-09-13T22:16:34.541 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-09-13T22:16:34.549 INFO:teuthology.task.clock:Checking final clock skew... 2024-09-13T22:16:34.550 DEBUG:teuthology.orchestra.run.smithi031:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-13T22:16:34.552 DEBUG:teuthology.orchestra.run.smithi096:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-13T22:16:34.555 DEBUG:teuthology.orchestra.run.smithi138:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-13T22:16:34.563 INFO:teuthology.orchestra.run.smithi031.stdout: remote refid st t when poll reach delay offset jitter 2024-09-13T22:16:34.563 INFO:teuthology.orchestra.run.smithi031.stdout:============================================================================== 2024-09-13T22:16:34.563 INFO:teuthology.orchestra.run.smithi031.stdout:*hv01.front.sepi 67.205.162.81 3 u 48 64 377 0.080 -3.056 0.779 2024-09-13T22:16:34.563 INFO:teuthology.orchestra.run.smithi031.stdout:+hv02.front.sepi 96.245.170.99 3 u 58 64 377 0.084 -4.236 1.114 2024-09-13T22:16:34.564 INFO:teuthology.orchestra.run.smithi031.stdout:+hv03.front.sepi 74.6.168.72 3 u 49 64 377 0.067 -2.551 0.834 2024-09-13T22:16:34.564 INFO:teuthology.orchestra.run.smithi031.stdout: hv04.front.sepi .INIT. 16 u - 512 0 0.000 +0.000 0.000 2024-09-13T22:16:34.565 INFO:teuthology.orchestra.run.smithi096.stdout: remote refid st t when poll reach delay offset jitter 2024-09-13T22:16:34.565 INFO:teuthology.orchestra.run.smithi096.stdout:============================================================================== 2024-09-13T22:16:34.566 INFO:teuthology.orchestra.run.smithi096.stdout:*hv01.front.sepi 67.205.162.81 3 u 53 64 377 0.096 -5.969 1.711 2024-09-13T22:16:34.566 INFO:teuthology.orchestra.run.smithi096.stdout:+hv02.front.sepi 96.245.170.99 3 u 45 64 377 0.100 -5.852 1.129 2024-09-13T22:16:34.566 INFO:teuthology.orchestra.run.smithi096.stdout:+hv03.front.sepi 74.6.168.72 3 u 48 64 377 0.086 -5.975 1.656 2024-09-13T22:16:34.566 INFO:teuthology.orchestra.run.smithi096.stdout: hv04.front.sepi .INIT. 16 u - 512 0 0.000 +0.000 0.000 2024-09-13T22:16:34.568 INFO:teuthology.orchestra.run.smithi138.stdout: remote refid st t when poll reach delay offset jitter 2024-09-13T22:16:34.569 INFO:teuthology.orchestra.run.smithi138.stdout:============================================================================== 2024-09-13T22:16:34.569 INFO:teuthology.orchestra.run.smithi138.stdout:*hv01.front.sepi 67.205.162.81 3 u 54 64 377 0.072 -4.402 1.000 2024-09-13T22:16:34.569 INFO:teuthology.orchestra.run.smithi138.stdout:+hv02.front.sepi 96.245.170.99 3 u 55 64 377 0.108 -5.091 0.983 2024-09-13T22:16:34.569 INFO:teuthology.orchestra.run.smithi138.stdout:+hv03.front.sepi 74.6.168.72 3 u 44 64 377 0.086 -3.812 0.683 2024-09-13T22:16:34.569 INFO:teuthology.orchestra.run.smithi138.stdout: hv04.front.sepi .INIT. 16 u - 512 0 0.000 +0.000 0.000 2024-09-13T22:16:34.569 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-09-13T22:16:34.591 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-09-13T22:16:34.591 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-09-13T22:16:34.600 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-09-13T22:16:34.609 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-09-13T22:16:34.618 INFO:teuthology.task.internal:Duration was 1565.384034 seconds 2024-09-13T22:16:34.618 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-09-13T22:16:34.627 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-09-13T22:16:34.627 DEBUG:teuthology.orchestra.run.smithi031:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-13T22:16:34.630 DEBUG:teuthology.orchestra.run.smithi096:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-13T22:16:34.632 DEBUG:teuthology.orchestra.run.smithi138:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-13T22:16:34.668 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-09-13T22:16:34.668 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi031.front.sepia.ceph.com 2024-09-13T22:16:34.668 DEBUG:teuthology.orchestra.run.smithi031:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-09-13T22:16:34.720 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi096.front.sepia.ceph.com 2024-09-13T22:16:34.721 DEBUG:teuthology.orchestra.run.smithi096:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-09-13T22:16:34.731 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi138.front.sepia.ceph.com 2024-09-13T22:16:34.732 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-09-13T22:16:34.742 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-09-13T22:16:34.742 DEBUG:teuthology.orchestra.run.smithi031:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-13T22:16:34.764 DEBUG:teuthology.orchestra.run.smithi096:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-13T22:16:34.775 DEBUG:teuthology.orchestra.run.smithi138:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-13T22:16:34.821 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-09-13T22:16:34.821 DEBUG:teuthology.orchestra.run.smithi031:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-13T22:16:34.852 DEBUG:teuthology.orchestra.run.smithi096:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-13T22:16:34.855 DEBUG:teuthology.orchestra.run.smithi138:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-13T22:16:34.947 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-09-13T22:16:34.956 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-09-13T22:16:34.956 DEBUG:teuthology.orchestra.run.smithi031:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-13T22:16:34.970 DEBUG:teuthology.orchestra.run.smithi096:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-13T22:16:34.980 DEBUG:teuthology.orchestra.run.smithi138:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-13T22:16:34.993 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-09-13T22:16:35.002 DEBUG:teuthology.orchestra.run.smithi031:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-09-13T22:16:35.012 DEBUG:teuthology.orchestra.run.smithi096:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-09-13T22:16:35.025 INFO:teuthology.orchestra.run.smithi031.stdout:kernel.core_pattern = core 2024-09-13T22:16:35.027 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-09-13T22:16:35.034 INFO:teuthology.orchestra.run.smithi096.stdout:kernel.core_pattern = core 2024-09-13T22:16:35.044 INFO:teuthology.orchestra.run.smithi138.stdout:kernel.core_pattern = core 2024-09-13T22:16:35.076 DEBUG:teuthology.orchestra.run.smithi031:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-13T22:16:35.090 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-13T22:16:35.090 DEBUG:teuthology.orchestra.run.smithi096:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-13T22:16:35.101 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-13T22:16:35.101 DEBUG:teuthology.orchestra.run.smithi138:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-13T22:16:35.126 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-13T22:16:35.126 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-09-13T22:16:35.135 INFO:teuthology.task.internal:Transferring archived files... 2024-09-13T22:16:35.136 DEBUG:teuthology.misc:Transferring archived files from smithi031:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-09-13_21:08:03-orch-squid-distro-default-smithi/7904244/remote/smithi031 2024-09-13T22:16:35.136 DEBUG:teuthology.orchestra.run.smithi031:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-13T22:16:35.160 DEBUG:teuthology.misc:Transferring archived files from smithi096:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-09-13_21:08:03-orch-squid-distro-default-smithi/7904244/remote/smithi096 2024-09-13T22:16:35.161 DEBUG:teuthology.orchestra.run.smithi096:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-13T22:16:35.185 DEBUG:teuthology.misc:Transferring archived files from smithi138:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-09-13_21:08:03-orch-squid-distro-default-smithi/7904244/remote/smithi138 2024-09-13T22:16:35.185 DEBUG:teuthology.orchestra.run.smithi138:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-13T22:16:35.209 INFO:teuthology.task.internal:Removing archive directory... 2024-09-13T22:16:35.209 DEBUG:teuthology.orchestra.run.smithi031:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-13T22:16:35.212 DEBUG:teuthology.orchestra.run.smithi096:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-13T22:16:35.223 DEBUG:teuthology.orchestra.run.smithi138:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-13T22:16:35.250 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-09-13T22:16:35.261 INFO:teuthology.task.internal:Not uploading archives. 2024-09-13T22:16:35.261 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-09-13T22:16:35.270 INFO:teuthology.task.internal:Tidying up after the test... 2024-09-13T22:16:35.271 DEBUG:teuthology.orchestra.run.smithi031:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-13T22:16:35.273 DEBUG:teuthology.orchestra.run.smithi096:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-13T22:16:35.275 DEBUG:teuthology.orchestra.run.smithi138:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-13T22:16:35.277 INFO:teuthology.orchestra.run.smithi031.stdout: 658625 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 13 22:16 /home/ubuntu/cephtest 2024-09-13T22:16:35.279 INFO:teuthology.orchestra.run.smithi096.stdout: 658466 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 13 22:16 /home/ubuntu/cephtest 2024-09-13T22:16:35.299 INFO:teuthology.orchestra.run.smithi138.stdout: 658640 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 13 22:16 /home/ubuntu/cephtest 2024-09-13T22:16:35.300 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-09-13T22:16:35.309 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-09-13T22:16:35.330 INFO:teuthology.run:Summary data: description: orch/cephadm/workunits/{0-distro/ubuntu_22.04 agent/on mon_election/connectivity task/test_host_drain} duration: 1565.3840339183807 flavor: default owner: scheduled_teuthology@teuthology success: true 2024-09-13T22:16:35.331 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-13T22:16:35.424 INFO:teuthology.run:pass